/* ---------------------------
   CSS RESET & BASELINE
   --------------------------- */
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%;
  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;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #0A2D3B;
  color: #F3F8FB;
  min-height: 100vh;
}
img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}
a {
  color: #2296B3;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #60dfff;
  outline: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}

/* ---------------------------
   BASE TYPOGRAPHY & COLORS
   --------------------------- */
:root {
  --primary: #0A2D3B;
  --secondary: #2296B3;
  --accent: #F3F8FB;
  --neon: #00fff7;
  --neon2: #65d6ff;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --shadow: 0 4px 20px rgba(34,150,179,0.13);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  --section-spacing: 60px;
  --container-width: 1200px;
}
body, .text-section {
  font-family: var(--font-body);
  color: var(--accent);
  background-color: var(--primary);
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--neon);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  line-height: 1.08;
  text-shadow: 0 0 10px #00fff7aa;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.14;
  text-shadow: 0 0 7px #00fff788;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.18rem;
  margin-bottom: .6em;
}
p {
  color: var(--accent);
  margin-bottom: 18px;
}
.subheadline {
  color: var(--neon2);
  letter-spacing: 0.01em;
  font-size: 1.13em;
  margin-bottom: 24px;
}
.text-section {
  max-width: 800px;
  font-size: 1.07em;
  color: #E9F7FA;
}
.text-section strong {
  color: var(--secondary);
  font-weight: 600;
}

/* ---------------------------
   STRUCTURE & CONTAINER
   --------------------------- */
.container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(10,45,59,0.87);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
section:not(.hero) {
  margin-top: 40px;
}

/* ---------------------------
   HERO SECTION
   --------------------------- */
.hero {
  background: linear-gradient(102deg, #102F42 0%, #0A2D3B 82%);
  padding: 60px 0;
  border-bottom: 2px solid var(--neon);
  position: relative;
}
.hero .container { align-items: center; }
.hero .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 6px 32px #2296B3;
}
.hero p {
  font-size: 1.15em;
  color: #aefcfe;
}

/* ---------------------------
   NAVIGATION
   --------------------------- */
header {
  width: 100%;
  background: #08232e;
  box-shadow: 0 1px 10px 0 #2296b321;
  z-index: 30;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 10px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #E9F7FA;
  font-family: var(--font-display);
  font-size: 1.01em;
  letter-spacing: .01em;
  transition: color .16s;
  padding: 4px 11px;
  border-radius: var(--radius-sm);
  position: relative;
}
.main-nav a.button-primary {
  margin-left: 28px;
}
.main-nav a.active, 
.main-nav a:hover {
  color: var(--neon);
  background: #132f4d33;
  text-shadow: 0 0 7px var(--neon2),0 0 13px var(--neon2);
}
.header .logo {
  flex-shrink: 0;
}

/* Hide mobile menu by default */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: var(--neon);
  border: none;
  cursor: pointer;
  margin-left: 16px;
  transition: color .15s;
  z-index: 1031;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #60dfff;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(106deg, #102F42 80%, #2296B3 120%);
  z-index: 1030;
  box-shadow: 0 8px 32px 0 #0a2d3bcf;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.42,.13,.34,1.22);
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--neon);
  background: transparent;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  margin: 24px 28px 0 0;
  transition: color .15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #60dfff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 44px;
  gap: 26px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.04em;
  padding: 16px 40px;
  border-radius: var(--radius);
  transition: background var(--transition), color .2s;
  width: 100%;
  text-align: center;
}
.mobile-nav a:hover {
  background: #2296B3;
  color: var(--neon);
}
.mobile-nav a.button-primary {
  background: var(--neon2);
  color: #00333a;
  font-weight: 700;
}

/* ---------------------------
   BUTTONS
   --------------------------- */
.button-primary {
  display: inline-block;
  background: linear-gradient(100deg, #2296B3 60%, #65d6ff 110%);
  color: #012d33;
  font-family: var(--font-display);
  font-size: 1.12em;
  font-weight: bold;
  border-radius: var(--radius);
  padding: 15px 38px;
  box-shadow: 0 0 0 2px #2296b3, 0 6px 32px #2296b340;
  border: none;
  cursor: pointer;
  text-shadow: 0 2px 8px #c4f9ff8f;
  letter-spacing: 0.03em;
  transition: var(--transition);
  margin-top: 18px;
  margin-bottom: 14px;
}
.button-primary:focus,
.button-primary:hover {
  background: #00fff7;
  color: #032d39;
  box-shadow: 0 0 12px 2px #00fff79a,0 5px 32px #00fff74a;
  outline: none;
}

.button-secondary {
  display: inline-block;
  background: none;
  border: 1.5px solid #2296B3;
  color: #2296B3;
  border-radius: var(--radius);
  padding: 13px 32px;
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.button-secondary:focus,
.button-secondary:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: #0a2d3b2c;
}

/* ---------------------------
   FEATURE & CARD GRIDS
   --------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
}
.feature {
  background: #162e3bc0;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px #2296b31a;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 270px;
  min-width: 240px;
  max-width: 360px;
  position: relative;
  margin-bottom: 20px;
  gap: 15px;
  border-left: 4px solid var(--neon2);
  transition: box-shadow .17s, transform .14s;
}
.feature:hover {
  box-shadow: 0 6px 26px 0 #00fff741;
  transform: translateY(-2px) scale(1.03);
}
.feature img {
  width: 38px; height: 38px;
  margin-bottom: 8px;
  filter: drop-shadow(0 3px 10px #00fff796);
}
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #192f3c;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px;
  flex: 1 1 320px;
  min-width: 250px;
  transition: box-shadow .17s, transform .13s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 #00fff751;
  transform: translateY(-2px) scale(1.02);
}
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-bottom: 22px;
}
.partner-logos img {
  width: 54px;
  height: auto;
  filter: drop-shadow(0 2px 8px #65d6ff88);
}

/**** Step Overview & Timeline ****/
.step-overview,
.step-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  justify-content: space-between;
}
.step {
  background: #152735ee;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 28px 20px 22px 20px;
  min-width: 170px;
  flex: 1 1 170px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 3px solid var(--neon2);
  transition: box-shadow .17s, transform .13s;
}
.step img {
  width: 38px; height: 38px; margin-bottom: 0.5em;
  filter: drop-shadow(0 2px 10px #00fff78e);
}
.step:hover {
  box-shadow: 0 4px 20px #00fff741;
  transform: scale(1.045);
}

/* Content grid / alternatives */
.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;
}

/**** FAQ Styling ****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 15px;
}
.faq-list details {
  background: #132534fe;
  color: #f3f8fb;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px #2296b333;
  padding: 17px 22px;
  font-size: 1.08em;
  border-left: 3px solid #00fff7;
  cursor: pointer;
  transition: box-shadow .16s, border-color .17s;
}
.faq-list details[open] {
  border-left: 3px solid #2296B3;
  box-shadow: 0 0 16px #00fff729;
}
.faq-list summary {
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--neon);
  cursor: pointer;
}
.faq-list div {
  margin-top: 7px;
  color: #c9e9ee;
}

/* ---------------------------
   TESTIMONIALS & RATINGS
   --------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  color: #0A2D3B;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 28px #65d6ff14;
  margin-bottom: 20px;
  flex: 1 1 320px;
}
.testimonial-card p {
  color: #122e37;
  font-size: 1.11em;
  margin-bottom: 9px;
  font-style: italic;
}
.testimonial-info {
  font-size: 0.98em;
  color: #2296B3;
  display: flex; align-items: center; gap: 12px;
  font-weight: 500;
}
.ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.ratings > div {
  background: #f3f8fb;
  color: #162e3b;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px #2296b328;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px 18px 24px;
  min-width: 220px;
  flex: 1 1 200px;
}
.ratings img {
  width: 98px; margin-bottom: 9px;
}
.ratings span {
  font-weight: bold; font-size: 1.2em; color: #2296B3;
  margin-bottom: 8px;
}
.ratings p {
  color: #222d31;
  font-size: 1.02em; margin-bottom: 0;
}

/* ---------------------------
   FOOTER
   --------------------------- */
footer {
  width: 100%;
  background: #02161e;
  color: #b1e3f9;
  margin-top: 80px;
  box-shadow: 0 -1px 10px 0 #2296b316;
  padding: 40px 0 0 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer a img {
  width: 55px; margin-bottom: 13px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-right: 28px;
}
.footer-nav a {
  color: #64d6ff;
  font-family: var(--font-display);
  font-size: 1em;
  letter-spacing: 0.01em;
  transition: color .18s;
}
.footer-nav a:hover {
  color: var(--neon);
  text-shadow: 0 0 7px #00fff7a8;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #8ed1ee;
  font-size: 0.98em;
  margin-bottom: 18px;
}
.footer-contact img {
  width: 20px;
  margin-right: 8px;
  vertical-align: middle;
  filter: drop-shadow(0 2px 6px #00fff725);
}
footer p {
  color: #8ed1ee;
  font-size: 0.93em;
  margin-top: 18px;
  margin-bottom: 20px;
  flex-basis: 100%;
}

/* ---------------------------
   OTHER LAYOUTS & UTILS
   --------------------------- */
.map-snippet {
  margin-top: 18px;
  margin-bottom: 22px;
}
.contact-info-block {
  background: #192f3c;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px #2296b329;
  padding: 22px 18px;
  margin: 18px 0 26px 0;
  color: #e2fcff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.1em;
}
.contact-info-block img {
  width: 22px; margin-right: 7px;
  vertical-align: middle;
  filter: drop-shadow(0 2px 8px #00fff716);
}

/* ---------------------------
   COOKIE CONSENT BANNER
   --------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100%;
  background: #02161e;
  color: #d0f1fc;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  z-index: 1200;
  box-shadow: 0 0 20px #00fff722;
  gap: 18px;
  animation: showCookieBanner .35s cubic-bezier(.46,.03,.31,1.28);
}
@keyframes showCookieBanner {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  color: #bff4fb;
  font-size: 1em;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner .button-primary {
  padding: 11px 28px;
  font-size: 0.98em;
}
.cookie-banner .button-secondary {
  padding: 11px 24px;
}
.cookie-banner .button-tertiary {
  background: none;
  border: none;
  color: #2296B3;
  font-size: 1em;
  font-family: var(--font-display);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 11px 20px;
  text-decoration: underline;
  transition: color .15s;
}
.cookie-banner .button-tertiary:hover {
  color: var(--neon2);
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: #042330e3;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .25s;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
 100%{ opacity: 1; }
}
.cookie-modal {
  background: #051b24;
  color: #f3f8fb;
  border-radius: var(--radius);
  box-shadow: 0 8px 42px #65d6ff29;
  max-width: 420px;
  width: 94vw;
  padding: 34px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  animation: showCookieModal .28s cubic-bezier(.46,.03,.31,1.28);
  position: relative;
}
@keyframes showCookieModal {
  0% { transform: scale(.85) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--neon2);
  margin-bottom: 8px;
  font-size: 1.25rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 1.08em;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 19px; height: 19px;
}
.cookie-category .category-label {
  font-weight: bold;
  color: #fff;
}
.cookie-category .desc {
  color: #b0e3fc;
  margin-left: 6px;
  font-weight: normal;
  font-size: 1em;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 13px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--neon2);
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal-close:hover {
  color: var(--neon);
}

/* ---------------------------
   RESPONSIVE (Mobile-First)
   --------------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}

@media (max-width: 980px) {
  .footer-nav,
  .footer-contact {
    margin-top: 18px;
  }
  .container,
  .content-wrapper {
    gap: 22px;
  }
  .feature-grid, .ratings, .partner-logos, .step-overview, .step-timeline {
    gap: 17px;
  }
}
@media (max-width: 860px) {
  .container {
    max-width: 98vw;
  }
  .main-nav {
    gap: 11px;
    font-size: 1em;
    flex-wrap: wrap;
  }
  header .container { gap: 6px; }
}
@media (max-width: 768px) {
  .container, .content-wrapper, .section {
    padding-left: 11px; padding-right: 11px;
  }
  .feature-grid, .card-container, .ratings, .partner-logos, .footer-nav, .step-overview, .step-timeline {
    flex-direction: column;
    gap: 17px;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper {
    gap: 19px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .hero { padding: 32px 0; }
  .text-image-section,
  .content-grid { flex-direction: column; gap: 14px; }
}

@media (max-width: 540px) {
  h1 { font-size: 2rem; margin-bottom: 16px; }
  h2 { font-size: 1.28rem; margin-bottom: 8px; }
  h3 { font-size: 1.08rem; }
  .hero { padding: 14px 0 20px 0; }
  section { margin-top: 14px; }
  .partner-logos img { width: 32px; }
  .feature, .step, .card { padding: 16px 11px; min-width: unset; }
  .feature { max-width: unset; }
  .cookie-banner { flex-direction: column; gap: 12px; padding: 12px 10px; }
  .cookie-modal { padding: 18px 7px 16px 20px; }
}

/* Scrollbar styling (for a neon effect) */
::-webkit-scrollbar { width: 8px; background: #0a2d3bcc; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(160deg, #2296b3ce 20%, #00fff7dd 98%);
  border-radius: 12px;
}

/* Hide outline for mouse, show for keyboard only */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2.5px solid #00fff7;
  outline-offset: 2px;
}

/* Animations for micro-interactions */
.button-primary, .button-secondary,
.feature, .step, .card, .faq-list details {
  transition: box-shadow .18s, background .21s, color .14s, transform .18s;
}

/**** Utilities for spacing ****/
.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 28px; }
.mb-2 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 28px; }

/* END OF STYLE FILE */
