/* ========================
   CSS RESET AND 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 {
  line-height: 1.5;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  background: #181E25;
  color: #F4F7FA;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after { box-sizing: inherit; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { vertical-align: middle; max-width: 100%; border: 0; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: none; }

/* =========================
   BRAND COLORS & VARIABLES
   ========================= */
:root {
  --color-primary: #234066;
  --color-primary-darker: #192C44;
  --color-secondary: #1F8B4C;
  --color-accent: #F4F7FA;
  --color-bg: #181E25;
  --color-card: #232B38;
  --color-neon: #2EF8A0;
  --color-neon2: #17B8FA;
  --color-text-main: #F4F7FA;
  --color-text-dark: #161A20;
  --color-btn-gradient1: #1F8B4C;
  --color-btn-gradient2: #24FAC2;
  --color-shadow-main: rgba(36,250,194,0.17);
  --color-footer-bg: #202632;
  --color-testimonial-bg: #F4F7FA;
  --color-testimonial-text: #222C33;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
}

/* =========
   LAYOUT
   ========= */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

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

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

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

/* ==========================
   HEADER & NAVIGATION BAR
   ========================== */
header {
  background: linear-gradient(90deg,#181E25 0%, #234066 80%);
  box-shadow: 0 4px 18px 0 rgba(36,250,194,0.035);
  padding: 0;
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
header img {
  height: 44px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  color: var(--color-text-main);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 17px;
  padding: 4px 0 2px 0;
  transition: color 0.2s;
  position: relative;
}
header nav a:not(.cta):hover,
header nav a:not(.cta):focus {
  color: var(--color-neon2);
}
header nav .cta.primary {
  background: linear-gradient(90deg, var(--color-btn-gradient1) 30%, var(--color-btn-gradient2) 90%);
  color: #fff;
  padding: 10px 26px;
  border-radius: 22px;
  font-weight: 700;
  margin-left: 10px;
  box-shadow: 0 4px 24px 0 var(--color-shadow-main);
  letter-spacing: 0.02em;
  border: 1px solid var(--color-neon);
  transition: all 0.16s;
}
header nav .cta.primary:hover,
header nav .cta.primary:focus {
  background: linear-gradient(90deg, #17B8FA 40%, #1F8B4C 90%);
  box-shadow: 0 6px 38px 0 var(--color-neon2);
  color: #fff;
}

/* Hide hamburger on desktop, show on mobile */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  color: var(--color-neon2);
  margin-left: 16px;
  z-index: 110;
  border-radius: 8px;
  padding: 2px 12px;
  transition: background 0.15s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #232B38;
  color: var(--color-neon);
}

@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ======================
   MOBILE MENU OVERLAY
   ====================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,30,37, 0.98);
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.7,.2,.37,1.01);
  box-shadow: 0 6px 48px 0 var(--color-shadow-main);
  overflow-y: auto;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 20px 4px 0;
  font-size: 2rem;
  color: var(--color-neon2);
  background: none;
  border: none;
  border-radius: 8px;
  padding: 2px 8px;
  cursor: pointer;
  transition: background 0.1s;
  z-index: 2010;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #232B38;
  color: var(--color-neon);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-neon2);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  padding: 10px 0;
  border-radius: 8px;
  width: 60vw;
  text-align: center;
  background: none;
  transition: background 0.14s, color 0.17s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #232B38;
  color: var(--color-neon);
}

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

/* =====================
   HERO / HEADINGS / COPY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-neon);
  letter-spacing: 0.01em;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 10px;
}
h1 { font-size: 2.8rem; color: var(--color-neon2); margin-bottom: 16px; }
h2 { font-size: 2rem; color: var(--color-neon); margin-bottom: 12px; }
h3 { font-size: 1.24rem; color: var(--color-primary); margin-bottom: 8px; }
h4, h5, h6 { font-size: 1rem; color: var(--color-primary-darker); }

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

p, li, address, label {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--color-accent);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 0;
}

strong, b {
  color: var(--color-neon2);
  font-weight: 700;
}

/* ==========
   BUTTONS
   ========== */
.cta,
button,
input[type=submit] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  padding: 11px 28px;
  border-radius: 42px;
  border: none;
  background: linear-gradient(90deg, var(--color-btn-gradient1) 30%, var(--color-btn-gradient2) 90%);
  box-shadow: 0 3px 24px 0 rgba(36,250,194,0.09);
  color: #fff;
  margin: 0 8px 10px 0;
  cursor: pointer;
  outline: none;
  transition: background 0.22s, box-shadow 0.18s, color 0.11s;
  position: relative;
  z-index: 1;
}
.cta.primary {
  background: linear-gradient(90deg,var(--color-primary) 20%,var(--color-neon2) 80%);
  color: #fff;
  border: 1px solid var(--color-neon2);
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg,var(--color-neon2) 20%,var(--color-primary) 80%);
  color: var(--color-neon);
  box-shadow: 0 7px 34px 0 var(--color-neon2);
}
.cta.secondary {
  background: #181E25;
  color: var(--color-neon2);
  border: 1.5px solid var(--color-neon2);
  box-shadow: 0 3px 20px 0 var(--color-shadow-main);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-neon2);
  color: #181E25;
}
button:active, .cta:active { filter: brightness(0.92); }

/* ========================
   FLEXBOX CARD/SECTION PATTERNS
   ======================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  border-radius: 16px;
  box-shadow: 0 4px 15px 0 var(--color-shadow-main);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-testimonial-bg);
  color: var(--color-testimonial-text);
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(36,250,194,0.11);
  min-width: 280px;
  margin-bottom: 20px;
  font-size: 1rem;
  position:relative;
  border: 1.5px solid var(--color-neon2);
  transition: box-shadow 0.18s, transform 0.14s;
}
.testimonial-card strong {
  color: var(--color-primary);
  font-size: 1em;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 var(--color-neon2);
  transform: translateY(-3px) scale(1.015);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-card);
  border-radius: 14px;
  padding: 22px 20px 18px 20px;
  min-width:220px;
  flex: 1 1 220px;
  box-shadow: 0 2px 10px 0 var(--color-shadow-main);
  margin-bottom: 20px;
  border: 1.3px solid var(--color-neon);
  transition: box-shadow 0.17s, border 0.12s;
}
.feature-item img {
  height:42px; width:42px; filter: drop-shadow(0 2px 4px #2EF8A088);
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 7px 22px 0 var(--color-neon2);
  border-color: var(--color-neon2);
}

@media (max-width: 900px) {
  .card-container, .content-grid, .feature-grid, .course-cards, .testimonial-slider, .testimonial-list, .case-studies {
    flex-direction: column;
    gap: 18px;
  }
}

/* Extra: Feature grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}

/* =======================
   HOME PAGE HERO SECTION
   ======================= */
.section:first-of-type {
  background: linear-gradient(120deg, #234066 45%, #17B8FA 130%);
  box-shadow: 0 6px 48px 0 var(--color-shadow-main);
  color: #fff;
  border-radius: 0 0 48px 48px;
  margin-bottom: 55px;
  padding: 64px 20px 52px 20px;
}
.section:first-of-type h1, .section:first-of-type h2 {
  color: #fff;
  text-shadow: 0 4px 32px #17B8FA66, 0 1px 3px #23406699;
}
.section:first-of-type .cta.primary {
  margin-top: 12px;
}
@media (max-width:900px) {
  .section:first-of-type {
    border-radius: 0 0 24px 24px;
    padding: 42px 10px 28px 10px;
  }
}

/* =======================
   COURSE CARDS
   ======================= */
.course-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.course-card {
  background: var(--color-card);
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 var(--color-shadow-main);
  padding: 26px 20px 20px 20px;
  margin-bottom: 20px;
  min-width:220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid var(--color-neon2);
  transition: box-shadow 0.18s, border 0.15s;
  color: var(--color-accent);
}
.course-card h3 {
  font-size:1.08rem;
  color: var(--color-neon);
}
.course-card:hover, .course-card:focus-within {
  box-shadow: 0 8px 32px 0 var(--color-neon2);
  border-color: var(--color-neon);
}

/* Testimonials general layouts */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}

.rating-summary {
  display: flex;
  align-items: center;
  color: var(--color-neon2);
  background: var(--color-card);
  border-radius: 10px;
  margin-top: 22px;
  margin-bottom: 16px;
  padding: 10px 18px;
  font-size: 1.09rem;
  font-weight: 700;
  box-shadow: 0 1px 9px 0 var(--color-neon2);
}

.case-studies {
  display: flex;
  flex-direction: column;
  background: var(--color-card);
  border-radius: 12px;
  padding: 22px 20px;
  gap: 8px;
  margin-top: 30px;
  border: 1.3px solid var(--color-neon2);
}
.case-studies h2 {
  color: var(--color-neon2);
}

/* ===========================
   LISTS, ARTICLE & SUPPORT
   =========================== */
.latest-articles-list, .team-bios, .contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-info-list li, .team-bios li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.contact-info-list img, .team-bios img {
  height: 26px;
  width: 26px;
  margin-right: 2px;
}

/* =========================
   FAQ/DETAILS SECTION
   ========================= */
.faq {
  background: var(--color-card);
  border-radius: 16px;
  padding: 30px 22px 20px 22px;
  margin-top: 30px;
  box-shadow: 0 4px 18px 0 var(--color-shadow-main);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq h2 { color: var(--color-neon2); }
.faq details {
  background: var(--color-testimonial-bg);
  color: var(--color-testimonial-text);
  border-radius: 8px;
  padding: 13px 16px 13px 16px;
  margin-bottom:10px;
  border: 1.3px solid #1F8B4C22;
  font-size: 0.97rem;
  transition: box-shadow 0.15s;
}
.faq details[open] {
  box-shadow: 0 2px 14px 0 var(--color-neon2);
  border-color: var(--color-neon);
}
.faq summary {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-neon2);
  cursor: pointer;
}
.faq p {
  margin-top: 5px;
}

/* ================
   STEP BY STEP LIST
   ================ */
.step-by-step {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 18px 0 28px 0;
}
.step-by-step li {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--color-card);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--color-neon2);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  border-left: 4px solid var(--color-neon2);
  transition: background 0.12s;
}
.step-by-step li:hover {
  background: #222D38;
}
.step-by-step li span img { height:34px; width:34px; }

/* =============
   BLOG SEARCH
   ============= */
.search-section {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 10px 0;
}
.search-section label {
  color: var(--color-neon2);
  font-size: 1rem;
  font-weight: 500;
}
#blog-search {
  font-size: 1em;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid var(--color-neon2);
  outline: none;
  background: var(--color-card);
  color: var(--color-accent);
  transition: border 0.12s;
}
#blog-search:focus {
  border-color: var(--color-neon2);
  box-shadow: 0 2px 10px 0 var(--color-neon2);
}

/* ===========
   FOOTER
   =========== */
footer {
  background: var(--color-footer-bg);
  color: var(--color-accent);
  padding: 32px 0 8px 0;
  font-size: 1rem;
  border-top: 3px solid var(--color-neon2);
  margin-top: 68px;
  position: relative;
  z-index: 2;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 34px;
  width: 100%;
}
footer img {
  height: 38px;
  margin-bottom: 24px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: var(--color-accent);
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 2px 0;
  transition: color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-neon2);
}
footer address {
  font-style: normal;
  color: var(--color-accent);
  margin-bottom: 10px;
  font-size: 0.97em;
  line-height: 1.6;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.social-links a img {
  height: 32px; width: 32px;
  filter: drop-shadow(0 2px 7px #17B8FAa9);
  opacity: 0.8;
  transition: opacity 0.14s, transform 0.16s;
}
.social-links a:hover img {
  opacity: 1;
  transform: scale(1.1);
}
.copyright {
  margin-top: 24px;
  color: #a2daee;
  font-size: 0.99em;
  width: 100%;
}

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

/* =======================
   RESPONSIVE (MOBILE FIRST)
   ======================= */
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    padding: 0 0 8px 0;
    gap: 12px;
  }
  .card-container, .content-grid, .course-cards, .testimonial-slider, .testimonial-list, .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .testimonial-card, .course-card {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
    align-items: flex-start;
  }
  footer img { margin-bottom: 12px; }
}

/* ===================
   COOKIE BANNER
   =================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #161C20;
  color: var(--color-accent);
  box-shadow: 0 -3px 12px 0 var(--color-neon2);
  z-index: 3000;
  padding: 20px 16px 22px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 1.03rem;
  transition: transform 0.32s;
}
.cookie-banner.closed { transform: translateY(105%); }
.cookie-banner button {
  font-size: 1em;
  padding: 9px 22px;
  margin: 0 4px 0 0;
  border-radius: 20px;
  background: var(--color-neon2);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  box-shadow: 0 1px 9px 0 var(--color-neon2);
  transition: background 0.13s, color 0.12s;
}
.cookie-banner .cookie-reject {
  background: #EEE;
  color: var(--color-neon2);
  border: 1px solid var(--color-neon2);
}
.cookie-banner .cookie-reject:hover {
  background: #fff;
  color: #234066;
}
.cookie-banner .cookie-settings {
  background: #232B38;
  color: var(--color-neon2);
  border: 1px solid var(--color-neon2);
}
.cookie-banner .cookie-settings:hover {
  background: var(--color-neon);
  color: #232B38;
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; gap: 14px; padding: 14px 6px; }
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,30,37,0.92);
  z-index: 3100;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal.open {
  display: flex;
  animation: fadein-modal 0.2s;
}
@keyframes fadein-modal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: var(--color-card);
  border-radius: 24px;
  padding: 34px 28px 26px 28px;
  box-shadow: 0 6px 22px 0 var(--color-neon2);
  color: var(--color-accent);
  min-width: 280px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-content h2 {
  color: var(--color-neon2);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--color-accent);
}
.cookie-toggle {
  appearance: none;
  width: 46px;
  height: 26px;
  background: #222D38;
  border-radius: 15px;
  outline: none;
  transition: background 0.11s;
  position: relative;
  border: 1.5px solid var(--color-neon2);
  margin-right: 5px;
}
.cookie-toggle:checked {
  background: var(--color-neon2);
}
.cookie-toggle:before {
  content: "";
  display: block;
  position: absolute;
  left: 3.5px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-toggle:checked:before {
  transform: translateX(20px);
}
.cookie-modal-content .btn-row {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}

/* =========================
   MICRO-ANIMATIONS
   ========================= */
a, .cta, .feature-item, .testimonial-card, .course-card, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button {
  transition: all 0.17s cubic-bezier(.45,.66,.1,1.01);
}
.feature-item img, .testimonial-card img, .contact-info-list img {
  transition: filter 0.13s, transform 0.14s;
}
.feature-item:hover img, .testimonial-card:hover img, .contact-info-list:hover img {
  filter: brightness(1.07) drop-shadow(0 2px 5px var(--color-neon2));
  transform: scale(1.06);
}

/* Inputs and form elements (newsletter input from markup) */
input[type="text"],
input[type="email"] {
  background: var(--color-card);
  color: var(--color-accent);
  border: 1.3px solid var(--color-neon2);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 1rem;
  margin-right: 13px;
  margin-bottom: 10px;
  transition: border 0.14s;
}
input[type="text"]:focus,
input[type="email"]:focus {
  border-color: var(--color-neon2);
  outline: none;
}

/* ===================
   MISCELLANEOUS
   =================== */
::-webkit-scrollbar { width: 9px; background: var(--color-card); }
::-webkit-scrollbar-thumb {
  background: var(--color-neon2);
  border-radius: 5px;
}
@media (max-width: 530px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.10rem; }
  .cta, .cta.primary, .cta.secondary { font-size:0.97rem; padding:9px 12px; }
}

/* ===================
   FORMS (hidden, but fallback)
   =================== */
form {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 0;
}

/* ===============
   Z-INDEX GUIDE
   =============== */
header { z-index: 100; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 3100; }

/* Accessibility helpers */
:focus {
  outline: 2px solid var(--color-neon2);
}
