/* 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,
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  height: 100%;
}
*, *:before, *:after { box-sizing: inherit; }
body { height: 100%; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #1A2332;
  color: #EDEDED;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: #8fe3ff; transition: color 0.18s; }
a:hover, a:focus { color: #36f3bc; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-weight: 700; }
h1 { font-size: 2.5rem; line-height: 1.23; margin-bottom: 16px; color: #EDEDED; letter-spacing: 0.5px; }
h2 { font-size: 2rem; margin-bottom: 16px; color: #62dbff; letter-spacing: 0.5px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; color: #aae4ff; }
h4, h5, h6 { color: #95bad6; margin-bottom: 10px; font-size: 1rem; font-family: inherit; }
p, li, dl, dt, dd { font-size: 1rem; }
strong { color: #36f3bc; font-weight: 700; }

/* COLOR PALETTE & NEON ACCENTS */
:root {
  --color-primary: #23364A;
  --color-secondary: #6497B1;
  --color-accent: #EDEDED;
  --color-bg: #1A2332;
  --color-neon: #62dbff;
  --color-neon2: #36f3bc;
  --color-card: #222b3b;
  --color-blurcard: rgba(34, 43, 59, 0.85);
  --color-header: #182032;
  --shadow-main: 0 4px 32px 0 rgba(36,180,235,0.08),0 1.5px 8px 0 #3de2cf33;
  --shadow-neon: 0 0 8px #62dbff80,0 0 3px #36f3bc60;
  --shadow-btn: 0 2px 10px #36f3bc46;
  --radius-main: 16px;
  --radius-btn: 32px;
  --input-bg: #2e415c;
  --input-border: #62dbff;
  --color-error: #da3a5c;
}

/* LAYOUT STRUCTURE */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

/* ACCENT BACKGROUND & CARDS */
.accent-bg {
  background-color: var(--color-primary);
  box-shadow: var(--shadow-main);
  border-radius: var(--radius-main);
}
.card {
  background: var(--color-card);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 0 16px #62dbff,0 0 6px #36f3bc80;
  transform: translateY(-2px) scale(1.012);
  z-index: 2;
}
.card-container, .feature-grid, .usp-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card-container > *, .feature-grid > *, .usp-list > *, .service-list > * {
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 1fr;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.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;
}

/* SPACING (card/sections) */
section:not(:last-child), .section:not(:last-child) {
  margin-bottom: 60px;
}

/* HEADER/NAVIGATION */
header {
  background: var(--color-header);
  box-shadow: 0 4px 16px rgba(98,219,255,0.04);
  width: 100%;
  z-index: 102;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  min-height: 76px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #e2f4ff;
  position: relative;
  padding: 4px 0 2px;
  transition: color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-neon);
}
header nav a.active, header nav a[aria-current="page"] {
  color: var(--color-neon2);
}
header img { height: 38px; }

.cta.primary,
.cta.secondary {
  display: inline-block;
  min-width: 164px;
  text-align: center;
  padding: 12px 32px;
  border-radius: var(--radius-btn);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-btn);
  outline: none;
  border: none;
  transition: background 0.18s, color 0.18s, transform 0.16s, box-shadow 0.16s;
  cursor: pointer;
  margin-left: 14px;
}
.cta.primary {
  background-color: var(--color-neon);
  border: 2px solid var(--color-neon2);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-neon2);
  color: #192634;
  box-shadow: 0 0 12px #54ffe0,0 2px 12px #1ed6b4b6;
  transform: scale(1.045);
}
.cta.secondary {
  background-color: transparent;
  color: var(--color-neon);
  border: 2px solid var(--color-neon);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-neon);
  color: #192634;
  border-color: var(--color-neon2);
  box-shadow: 0 0 12px #62dbff,0 2px 12px #1ed6b487;
}

/* BURGER MENU (mobile) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-neon);
  padding: 6px 10px;
  border-radius: 40%;
  cursor: pointer;
  transition: background 0.2s, color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover { background: #32455a; color: var(--color-neon2); }

.mobile-menu {
  position: fixed;
  z-index: 1201;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #192634 65%, #222b3b 100%);
  box-shadow: 0 0 128px #36f3bc50;
  transition: transform 0.35s cubic-bezier(.47,1.64,.41,.8), opacity 0.2s;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  padding: 0 9vw 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: var(--color-neon2);
  margin: 18px 20px 0 0;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  z-index: 12;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #28496b;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 46px 0 0 30px;
  gap: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  padding: 8px 0;
  color: #eafdff;
  border-bottom: 1px solid transparent;
  width: 100%;
  transition: color 0.2s, border 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-neon);
  border-bottom: 1px solid var(--color-neon2);
}

/* HERO & SECTION STYLES */
.hero {
  background: linear-gradient(115deg, #23364A 88%, #62dbff 120%);
  box-shadow: 0 3px 60px 0 #54ffe02d;
  border-radius: 0 0 48px 48px;
  margin-bottom: 60px;
  padding-top: 72px;
  padding-bottom: 64px;
}
.hero .container { align-items: center; }
.hero h1 { color: var(--color-neon); text-shadow: 0 0 16px #54ffe0cf; }
.hero p {
  color: #e5f5ff;
  font-size: 1.13rem;
  line-height: 1.6;
  margin-bottom: 24px;
  margin-top: 0.25em;
}

/* FEATURES/USPS */
.features, .usp-list, .feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-top: 12px;
}
.features .content-wrapper, .usp-list, .feature-grid {
  width: 100%;
}
.usp-list > div, .feature-grid > div {
  background: var(--color-card);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 28px 20px;
  flex: 1 1 300px;
  min-width: 240px;
  transition: box-shadow 0.18s, transform 0.16s;
  margin-bottom: 20px;
  position: relative;
}
.usp-list > div:hover, .feature-grid > div:hover {
  box-shadow: 0 0 18px #62dbff,0 0 8px #36f3bc99;
  transform: translateY(-2px) scale(1.013);
}
.usp-list img, .feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 6px #54ffe077);
}

.service-list > div {
  background: var(--color-blurcard);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 18px 16px;
  min-width: 210px;
  margin-bottom: 20px;
  flex: 1 1 280px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.service-list > div span {
  display: inline-block;
  color: var(--color-neon2);
  margin-top: 12px;
  font-size: 1.09em;
  font-weight: 600;
}
.service-list > div:hover {
  box-shadow: 0 0 12px #54ffe0,0 2px 18px #1ed6b447;
  transform: translateY(-2px) scale(1.012);
}

/* ABOUT/LEGAL/TEXT BLOCKS */
.text-section, .legal .text-section {
  background: transparent;
  color: #e9f9ff;
  font-size: 1.06rem;
  padding: 0;
  border-radius: var(--radius-main);
  margin-bottom: 0;
  line-height: 1.88;
}
.text-section ul, .legal .text-section ul {
  padding-left: 16px;
  margin: 8px 0 10px 0;
  list-style: disc outside;
}
.text-section ul li { margin-bottom: 8px; color: #60f6e2; }
.text-section strong, .feature-grid strong { color: var(--color-neon2); }
.milestone-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: transparent;
  padding: 6px 0 0 10px;
  margin-bottom: 12px;
  color: #d6fff4;
}
.team-intro {
  border-left: 4px solid var(--color-neon);
  padding-left: 20px;
  margin-top: 22px;
  color: #b4ffeb;
}

/* DL/CONTACT DETAILS */
dl { margin: 12px 0 20px 0; }
dl dt { color: var(--color-neon); font-weight: 600; margin-top: 12px; }
dl dd { color: #fff; margin-bottom: 6px; margin-left: 0; font-weight: 400; }

/* TESTIMONIAL CARD */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 240px;
  background: #f8fcff;
  color: #14213d;
  padding: 20px;
  border-radius: var(--radius-main);
  margin-bottom: 20px;
  box-shadow: 0 2px 18px #36f3bc22, 0 0 2px #62dbff55;
  border: 1.5px solid #eafcff;
  position: relative;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-style: italic;
  color: #14213d;
  margin-bottom: 7px;
  margin-top: 0;
}
.testimonial-card cite {
  font-size: 0.94rem;
  font-weight: 500;
  color: #23364A;
  opacity: 0.92;
  align-self: flex-end;
}

/* CTA SECTIONS */
.cta {
  display: flex;
  background: linear-gradient(115deg, #192634 54%, #36f3bc 120%);
  border-radius: var(--radius-main);
  margin-top: 30px;
  margin-bottom: 50px;
  box-shadow: 0 1.5px 16px 0 #36f3bc28;
}
.cta h2 { color: #fff; }

/* FOOTER */
footer {
  margin-top: 48px;
  padding: 40px 0 24px;
  background: #192634;
  color: #d1e3ed;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
footer nav a {
  color: #8fe3ff;
  font-size: 1rem;
  margin-bottom: 4px;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus { color: var(--color-neon2); }
.contact-details { font-size: 1rem; color: #aac6d8; }
.legal-links {
  font-size: 0.94rem;
  color: #56deec;
  margin-top: 14px;
}
.legal-links a { color: #56deec; margin: 0 2px; }
.legal-links a:hover { color: var(--color-neon2); }

/* FORMS & INPUTS (if present) */
input, textarea, select, button {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--input-border);
  padding: 10px 16px;
  background: var(--input-bg);
  color: #eafcff;
  margin-bottom: 18px;
  transition: border 0.16s, box-shadow 0.17s;
  box-shadow: 0 0.5px 5px #36f3bc0c;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-neon2);
  box-shadow: 0 0 8px #62dbff9e;
}
button {
  cursor: pointer;
  background: var(--color-neon);
  border: none;
  color: #182032;
  font-weight: 700;
  min-width: 120px;
  transition: background 0.14s, color 0.14s, box-shadow 0.12s;
}
button:hover, button:focus {
  background: var(--color-neon2);
  color: #fff;
  box-shadow: 0 0 10px #36f3bc88;
  outline: none;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2200;
  background: #14213d;
  color: #eafcff;
  border-top: 2.5px solid var(--color-neon);
  box-shadow: 0 -1.5px 18px #36f3bc22;
  padding: 22px 16px 16px 20px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  animation: cookieBannerFadeIn 0.64s cubic-bezier(0.71,0.47,0.33,1.38);
}
@keyframes cookieBannerFadeIn {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-text {
  max-width: 600px;
  font-size: 1rem;
}
.cookie-banner-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 19px;
  border-radius: 32px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: var(--color-neon);
  color: #1a2332;
  transition: background 0.17s, color 0.12s, box-shadow 0.12s;
  margin: 0 2px;
  box-shadow: 0 2px 8px #54ffe026;
}
.cookie-btn.settings {
  background: var(--color-neon2);
  color: #153342;
}
.cookie-btn.reject {
  background: transparent;
  border: 2px solid var(--color-neon2);
  color: var(--color-neon2);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-neon2);
  color: #101c26;
  box-shadow: 0 0 14px #54ffe088;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #296683;
  color: #fff;
  border-color: var(--color-neon);
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 3300;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,26,49, 0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fadeInBackdrop 0.34s;
}
@keyframes fadeInBackdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #1a2332;
  border-radius: 18px;
  box-shadow: 0 0 44px #54ffe085;
  color: #eafcff;
  width: 96vw;
  max-width: 450px;
  padding: 34px 22px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: cookieModalIn 0.38s cubic-bezier(1,.66,.23,.98);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: scale(.89) translateY(50px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 15px;
  background: none;
  border: none;
  font-size: 1.9rem;
  color: var(--color-neon);
  cursor: pointer;
  padding: 2px 10px;
  border-radius: 9px;
  transition: background 0.16s;
}
.cookie-modal-close:hover { background: #274253; color: #fff; }
.cookie-modal h3 { color: var(--color-neon); margin-bottom: 4px; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cookie-category label {
  font-size: 1rem;
  color: #d6faff;
}
.cookie-toggle {
  width: 42px;
  height: 22px;
  border-radius: 14px;
  background: #274253;
  position: relative;
  border: 1.3px solid #62dbff;
  transition: background 0.16s;
  margin-top: 2px;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-switch {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #62dbff;
  transition: left 0.16s, background 0.16s;
}
.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-switch {
  left: 20px;
  background: #36f3bc;
}
.cookie-category.essential .cookie-toggle {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 6px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1120px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .card-container, .feature-grid, .usp-list, .service-list {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .footer .container {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper, .features, .usp-list, .service-list {
    gap: 20px;
  }
  .hero { padding-top: 46px; padding-bottom: 34px; }
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
  header .container {
    padding-top: 2px;
    padding-bottom: 2px;
    gap: 6px;
  }
  header nav,
  header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin-left: auto;
    margin-top: 3px;
  }
  .feature-grid, .usp-list, .service-list, .card-container, .content-grid, .features {
    flex-direction: column;
    gap: 14px;
  }
  .card, .usp-list > div, .feature-grid > div, .service-list > div, .testimonial-card {
    min-width: 90vw;
    width: 100%;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .hero {
    padding-top: 30px;
    padding-bottom: 24px;
    border-radius: 0 0 32px 32px;
    margin-bottom: 35px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .hero { border-radius: 0 0 16px 16px; padding-top: 16px; padding-bottom: 12px; }
  .cta.primary, .cta.secondary {
    min-width: 105px;
    font-size: 0.98rem;
    padding: 9px 13px;
  }
  h1 {
    font-size: 1.25rem;
  }
  .testimonial-card {
    padding: 13px 7px;
    font-size: 0.99rem;
  }
}

/* MICRO-INTERACTIONS */
.cta.primary, .cta.secondary, .cookie-btn, button {
  transition: box-shadow 0.16s cubic-bezier(.45,2,.16,.99), background 0.17s, color 0.18s, transform 0.12s;
}
.cta.primary:active, .cookie-btn:active, button:active {
  transform: scale(0.97);
  box-shadow: 0 0 7px #36f3bc66;
}
.card:hover:after, .usp-list > div:hover:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -5px; left: 30%; right: 30%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #36f3bc 0%, #62dbff 100%);
}

/* TYPOGRAPHY SCALE */
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1rem; }
}

/* VISUAL NEON ELEMENTS (FOR ICONS, DECOR) */
.neon-glow {
  filter: drop-shadow(0 0 8px #62dbff)
          drop-shadow(0 0 3px #36f3bc);
}

/* ANIMATIONS (SUBTLE) */
@media (prefers-reduced-motion: no-preference) {
  .cta.primary, .cta.secondary, .cookie-btn, .card, .usp-list > div {
    transition: box-shadow 0.22s cubic-bezier(0.5,2,0.7,.85), transform 0.15s, background 0.21s, color 0.18s;
  }
  .cta.primary:active, .cta.secondary:active, .cookie-btn:active { transform: scale(0.98); }
}

/* ENSURE NO OVERLAPPING */
.card, .usp-list > div, .testimonial-card {
  margin-bottom: 20px;
}
/* Utility: Hide visually */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
