/* ------------------- 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;
}
/** HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #181d26;
  color: #F3F7F9;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after { box-sizing: border-box; }
a {color: inherit; text-decoration: none; transition: color 0.2s;}
ul, ol {list-style: none;}
img { max-width: 100%; display: block; }

/*-------------- COLOR SCHEME (TECH FUTURISTIC) --------------*/
:root {
  --primary: #204564;
  --primary-dark: #162e4a;
  --secondary: #228C6E;
  --secondary-dark: #196452;
  --accent: #F3F7F9;
  --neon-cyan: #18e4ea;
  --neon-green: #59ffb7;
  --neon-blue: #7faaff;
  --background: #181d26;
  --surface: #232a36;
  --card: #21283a;
  --shadow: 0 4px 32px 0 rgba(24, 228, 234, 0.08), 0 1.5px 8px 0 rgba(32, 69, 100, 0.09);
  --white: #fff;
  --black: #000;
  --text-main: #F3F7F9;
  --text-light: #8ed0e6;
  --text-dark: #204564;
  --border-radius: 16px;
  --transition: 0.28s cubic-bezier(0.56, 0, 0.28, 1);
}

/* ------------------- TYPOGRAPHY ------------------- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: var(--neon-cyan);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {font-size: 2.8rem; line-height: 1.15; margin-bottom: 24px;}
h2 {font-size: 2.1rem; line-height: 1.22; margin-bottom: 20px;}
h3 {font-size: 1.35rem; line-height: 1.28; margin-bottom: 18px;}
h4, h5, h6 {font-size: 1.1rem;  font-weight: 600;}
p, ul, li, small {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 14px;
}
strong { color: var(--neon-green); }
small { color: var(--accent); font-size: 0.93rem; letter-spacing:0.1em; }

/* ------------------- CONTAINER & LAYOUTS ------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform .16s, box-shadow var(--transition);
  min-width: 260px;
  flex: 1 1 300px;
}
.card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 8px 40px 0 rgba(24, 228, 234, 0.13);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  min-width: 240px;
}

/* ------------------- HEADER & MAIN NAV ------------------- */
header {
  width: 100%;
  background: linear-gradient(90deg, #181d26 70%, #204564 100%);
  border-bottom: 1.5px solid var(--primary);
  position: relative;
  z-index: 100;
}
.logo-header img {
  height: 46px;
  aspect-ratio: auto 3/1;
  filter: drop-shadow(0px 0px 8px var(--neon-blue));
  display: block;
  margin: 10px 0 10px 0;
}
header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}
.main-nav {
  display: flex;
  gap: 22px;
  margin-left: 18px;
  align-items: center;
}
.main-nav a {
  color: var(--accent);
  font-weight: 500;
  font-size: 1.02rem;
  padding: 8px 17px 8px 17px;
  border-radius: 10px;
  background: none;
  position: relative;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
  background: var(--neon-cyan);
  box-shadow: 0 2px 20px 0 var(--neon-cyan);
  text-shadow: 0 1px 10px var(--neon-blue);
}
.header-cta {
  display: flex;
  align-items: center;
  background: var(--neon-green);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 700;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  box-shadow: 0 2px 14px #59ffb754;
  margin-left: auto;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.header-cta:hover, .cta-btn:hover {
  color: var(--neon-blue);
  background: var(--primary-dark);
  box-shadow: 0 1px 22px var(--neon-cyan);
  transform: scale(1.041);
}

/* ------------------- HERO / CTA AREAS ------------------- */
.hero, .cta-section, .thankyou-section {
  width: 100%;
  background: linear-gradient(90deg, #181d26 65%, #204564 100%);
  padding: 44px 0 52px 0;
  margin-bottom: 60px;
}
.hero h1, .thankyou-section h1 {
  color: var(--neon-green);
  text-shadow: 0 0 22px #59ffb7af;
  margin-bottom: 16px;
}
.hero p, .thankyou-section p {
  color: var(--text-light);
  margin-bottom: 21px;
  font-size: 1.12rem;
}
.hero .subheadline, .thankyou-section .subheadline {
  color: var(--neon-blue);
  font-size: 1.23rem;
  font-weight: 500;
  margin-bottom: 32px;
}
.cta-section h2 {
  color: var(--neon-blue);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--neon-cyan);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 14px 38px;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 13px #96f6ffd2;
  box-shadow: 0 2px 22px #18e4ea45;
  border: none;
  outline: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  margin: 24px 0 0 0;
  cursor: pointer;
}
.cta-btn:active { transform: scale(0.97); }

/* ------------------- CARD & FEATURE SECTIONS ------------------- */
.text-section > ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  padding: 10px 0;
}
.text-section ul li img {
  width: 28px; height: 28px;
  filter: drop-shadow(0 0 4px var(--neon-blue));
}
.feature-descriptions p {
  margin-bottom: 10px;
  font-size: 1.01rem;
}

.card { padding: 34px 24px; }
.card h2 { margin-bottom: 14px; }
.card strong { color: var(--neon-cyan); }

/* ------------------- TESTIMONIALS ------------------- */
.testimonials-section {
  padding: 40px 20px;
  background: var(--surface);
  border-radius: var(--border-radius);
  margin-bottom: 60px;
}
.testimonials-section h2 { color: var(--neon-green); }
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  color: #1f2e35;
  border-radius: 14px;
  box-shadow: 0 8px 40px 0 rgba(32, 140, 110,.13);
  margin-bottom: 22px;
  border-left: 4px solid var(--neon-green);
  font-size: 1.03rem;
  min-width: 220px;
  max-width: 600px;
}
.testimonial-card p { color: #1f2e35; font-size: 1.09rem; margin-bottom: 8px; }
.testimonial-card small {
  color: var(--primary-dark);
  opacity: 0.95;
  font-weight: 500;
}

/* ------------------- FOOTER ------------------- */
footer {
  width: 100%;
  background: #141924;
  padding: 30px 0 10px 0;
  color: var(--neon-cyan);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.footer-brand img {
  height: 44px;
  filter: drop-shadow(0 0 5px #59ffb7bb);
  margin-bottom: 18px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-nav {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.97rem;
  color: var(--neon-blue);
  transition: background var(--transition), color var(--transition);
}
.footer-nav a:hover {
  background: var(--neon-green);
  color: var(--primary-dark);
  box-shadow: 0 1px 12px var(--neon-green);
}
/* Footer bottom margin */
footer { margin-top: 40px; }

/* ------------------- FAQ & LEGAL SECTION ------------------- */
.faq-section, .legal-section {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.faq-section h1, .legal-section h1 {color: var(--neon-blue); margin-bottom: 14px;}
.faq-item { background: var(--card); border-radius: 12px; padding: 18px 20px; margin-bottom: 18px; box-shadow: var(--shadow); }
.faq-item h3 { color: var(--neon-cyan); margin-bottom: 8px; font-size: 1.08rem; }
.faq-item p { color: var(--text-main); margin-bottom: 0; }

/* ------------------- WORKSHOPS SECTION ------------------- */
.workshops-section {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.workshops-section h1 {
  color: var(--neon-green);
  margin-bottom: 18px;
}
.workshops-section ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.workshops-section ul li {
  background: var(--card);
  padding: 16px 18px;
  border-radius: 10px;
  box-shadow: 0 1px 8px #228c6e1e;
  color: var(--neon-cyan);
  font-size: 1.03rem;
}
.workshops-section ul span, .workshops-section ul strong {
  display: block;
  color: var(--neon-green);
  margin-top: 5px;
}

/* ------------------- SERVICES SECTION ------------------- */
.services-list {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.services-list h1 {
  color: var(--neon-cyan);
  margin-bottom: 20px;
}
.services-list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services-list ul li {
  background: var(--card);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 26px 18px;
  color: var(--accent);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services-list ul li h2 {
  color: var(--neon-blue);
  font-size: 1.18rem;
}
.services-list ul li strong { color: var(--neon-green); font-size: 1.02rem; }

/* --------------- VALUES SECTION (ABOUT) --------------- */
.values-section {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.values-section h2 { color: var(--neon-blue); }

/* -------- TRUST / ADVANTAGE SECTION (INDEX) --------- */
.trust-section {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.trust-section h2 { color: var(--neon-cyan); }

/* --------------- CONTACT SECTION ----------------- */
.contact-section {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.contact-section h1 { color: var(--neon-cyan); }
.contact-info p {
  color: var(--text-main);
  margin-bottom: 8px;
  font-size: 1rem;
}

/* ------------------- MOBILE NAVIGATION ------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 19px;
  font-size: 2.15rem;
  background: var(--neon-cyan);
  color: var(--primary-dark);
  border: none;
  border-radius: 61px;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px #18e4ea44;
  z-index: 2011;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.mobile-menu-toggle:active { background: var(--neon-blue); color: var(--white); }
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--surface);
  position: fixed;
  top: 0; right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2500;
  transform: translateX(100%);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: -16px 0 80px #59ffb763;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 26px;
  font-size: 2.1rem;
  color: var(--neon-green);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2550;
  padding: 12px;
  border-radius: 18px;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-close:hover { background: var(--neon-green); color: var(--primary-dark); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 82px 34px 0 34px;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  color: var(--neon-cyan);
  font-size: 1.19rem;
  font-weight: 700;
  border-radius: 18px;
  padding: 15px 10px 15px 18px;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover {
  background: var(--neon-green);
  color: var(--primary-dark);
  box-shadow: 0 2px 20px #18e4eaa0;
}
@media (max-width: 990px) {
  .main-nav, .header-cta {display: none;}
  .mobile-menu-toggle {display: flex;}
}
@media (min-width: 991px) {
  .mobile-menu {display: none !important;}
  .mobile-menu-toggle {display: none !important;}
}

/* --------------- RESPONSIVE STYLES ------------------- */
@media (max-width: 900px) {
  .container {max-width: 98vw;}
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 768px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .main-nav { display: none !important; }
  .section, .card, .card-container, .feature-item, .content-wrapper, .card-content, 
  .faq-section, .testimonials-section, .services-list, .workshops-section, .legal-section, .trust-section, .cta-section, .contact-section,
  .values-section {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 36px;
  }
  .content-wrapper, .text-section, .text-image-section {
    flex-direction: column !important;
    gap: 16px;
    align-items: stretch;
  }
  .card-container { flex-direction: column !important; gap: 16px; }
  .card { min-width: 0; }
  .feature-item { min-width: 0; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.21rem; }
  .card, .section, .testsimonial-card, .contact-section, .cta-section, .workshops-section, .services-list, .values-section, .legal-section, .faq-section {
    padding: 18px 4vw;
  }
}

/* ------------------- BUTTONS ------------------- */
button, .cta-btn, .header-cta {
  user-select: none;
  outline: none;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid var(--neon-blue);
  outline-offset: 3px;
}

/* ------------------- MICRO-INTERACTIONS ------------------- */
a, .cta-btn, button, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

/* --------------- Z-INDEX & OVERLAY SHADOWS --------------- */
.mobile-menu, .cookie-banner, .cookie-modal { z-index: 3100; }

/* ------------------- COOKIE BANNER & MODAL ------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--surface);
  color: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 16px 18px 16px;
  box-shadow: 0 -8px 48px #18e4eae7;
  gap: 16px;
  z-index: 3200;
  transition: transform var(--transition), opacity var(--transition);
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: var(--accent);
  margin-right: 14px;
  max-width: 600px;
}
.cookie-banner .cookie-btn {
  padding: 10px 21px;
  background: var(--neon-cyan);
  color: var(--primary-dark);
  border: none;
  border-radius: 18px;
  font-size: 1.03rem;
  font-weight: 700;
  margin-right: 8px;
  margin-left: 0;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.cookie-banner .cookie-btn.reject {
  background: var(--primary);
  color: var(--neon-cyan);
}
.cookie-banner .cookie-btn.settings {
  background: var(--neon-blue);
  color: var(--primary-dark);
}
.cookie-banner .cookie-btn:hover {
  box-shadow: 0 2px 24px #18e4ea33, 0 1px 8px #20456430;
  background: var(--neon-green);
  color: var(--primary-dark);
}
/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,29,38,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3500;
  transition: opacity var(--transition);
  opacity: 0;
}
.cookie-modal.active {
  display: flex;
  opacity: 1;
  transition: opacity var(--transition);
}
.cookie-modal .cookie-popup {
  background: var(--surface);
  color: var(--accent);
  min-width: 312px;
  max-width: 94vw;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 42px #7faaff28, 0 2px 10px #18e4ea21;
  padding: 33px 23px 19px 23px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
}
.cookie-modal .cookie-popup h2 {
  color: var(--neon-green);
  font-size: 1.21rem;
  margin-bottom: 4px;
}
.cookie-modal .cookie-popup label {
  font-size: 1.05rem;
  margin-left: 8px;
}
.cookie-modal .cookie-popup .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-modal .cookie-popup .cookie-toggle {
  accent-color: var(--neon-blue);
  width: 23px; height: 23px;
}
.cookie-modal .cookie-popup .cookie-buttons {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.cookie-modal .cookie-popup .close-modal {
  position: absolute;
  top: 19px; right: 19px;
  background: var(--neon-cyan);
  color: var(--primary-dark);
  border: none;
  border-radius: 16px;
  width: 26px; height: 26px;
  font-size: 1.12rem;
  cursor: pointer;
}
.cookie-modal .cookie-popup .close-modal:hover {
  background: var(--neon-green);
}
.cookie-modal .cookie-popup .cookie-category.disabled label,
.cookie-modal .cookie-popup .cookie-category input:disabled + label {
  color: #8cd2d4;
  opacity: 0.6;
}
@media (max-width: 520px) {
  .cookie-modal .cookie-popup {
    min-width: unset;
    padding: 18px 7vw 18px 7vw;
  }
  .cookie-banner { flex-direction: column; gap: 10px; }
}

/* ----------- TRANSITION UTILITIES --------------- */
.fade-in { animation: fadeIn 0.4s; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* -------------- UTILITY CLASSES -------------- */
.mt-3 { margin-top: 24px !important; }
.mb-3 { margin-bottom: 26px !important; }
.w-100 { width: 100%; }

/* --------- CRITICAL FLEXBOX SPACING PATTERNS --------- */
.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; }
section {
  padding: 10px 0;
}
/* Ensure no element overlaps - use good margins and padding on all major block/class elements */
