/* ===============================
   CSS RESET & NORMALIZATION
=============================== */
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #181F21;
  color: #E7FAFF;
}
img, video {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

/* ===============================
   BRAND: COLORS & TYPOGRAPHY
=============================== */
:root {
  --color-primary: #225267;
  --color-secondary: #C9E5D1;
  --color-accent: #FFFFFF;
  --color-bg: #181F21;
  --color-bg-light: #253A43;
  --color-fg: #E7FAFF;
  --color-card: #213541;
  --color-neon: #00FFC6;
  --color-error: #ff4848;
  --color-shadow: rgba(0,255,198,0.07);
  --color-shadow-deep: rgba(34,82,103,0.18);

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-fg);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;  
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.5px;
}
h1 { font-size: 2.4rem; margin-bottom: 16px; line-height: 1.1; }
h2 { font-size: 2rem;  margin-bottom: 10px; }
h3 { font-size: 1.375rem; margin-bottom: 8px; }
h4 { font-size: 1.125rem; }

p, ul li, ol li {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.65;
}
strong { color: var(--color-neon); font-weight: 700; }
em, i { color: var(--color-secondary); }

/* ===============================
   LAYOUT: FLEXBOX CONTAINERS
=============================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: 0 4px 24px var(--color-shadow);
  padding: 28px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
  min-width: 260px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover {
  box-shadow: 0 8px 36px var(--color-shadow-deep);
  transform: translateY(-6px) scale(1.03);
  border-color: var(--color-neon);
}
.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: center;
  gap: 20px;
  background: var(--color-accent);
  color: #21292E;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px var(--color-shadow);
  min-width: 240px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px var(--color-secondary);
  transform: scale(1.025);
}
.testimonial-details {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  color: #0D1820;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature {
  background: var(--color-bg-light);
  padding: 28px 18px 20px 18px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--color-shadow-deep);
  min-width: 220px;
  flex: 1 1 220px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border 0.2s;
  border: 1.5px solid transparent;
  margin-bottom: 20px;
}
.feature img {
  width: 42px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 6px var(--color-neon));
}
.feature:hover {
  border: 1.5px solid var(--color-neon);
  box-shadow: 0 8px 28px var(--color-shadow);
}

.service-card {
  background: var(--color-card);
  border-radius: 16px;
  box-shadow: 0 4px 18px var(--color-shadow-deep);
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-card img {
  width: 36px;
  margin-bottom: 7px;
  filter: drop-shadow(0 1px 8px var(--color-neon));
}
.service-card:hover {
  box-shadow: 0 8px 32px var(--color-neon);
  transform: translateY(-6px) scale(1.025);
}

.text-section ul {
  list-style: disc inside;
  padding-left: 18px;
}
.text-section li {
  margin-bottom: 8px;
}
.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--color-card);
  padding: 18px 16px;
  border-radius: 11px;
  box-shadow: 0 2px 5px var(--color-shadow);
  transition: box-shadow 0.2s;
}
.faq-item h2 {
  color: var(--color-neon);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.faq-item p {
  font-size: 1rem;
  color: var(--color-fg);
}

/* ===============================
   HERO, CTA, & CARD ELEMENTS
=============================== */
.hero {
  min-height: 420px;
  background: linear-gradient(120deg, #13394C 48%, #225267 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 40px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 600px;
}

.cta-banner {
  background: linear-gradient(90deg, #225267 50%, #257874 100%);
  color: var(--color-accent);
  padding: 36px 0;
  margin-bottom: 0;
}
.cta-banner h2 {
  color: var(--color-accent);
  margin-bottom: 18px;
}
.cta-banner .content-wrapper {
  align-items: center;
  gap: 14px;
}

/* ===============================
   BUTTONS
=============================== */
.btn-primary, .btn-secondary {
  display: inline-block;
  border: none;
  border-radius: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.13rem;
  padding: 12px 34px;
  cursor: pointer;
  letter-spacing: 0.8px;
  margin-top: 8px;
  transition: background 0.22s, color 0.18s, box-shadow 0.18s, filter 0.17s;
  box-shadow: 0 2px 12px var(--color-shadow);
}
.btn-primary {
  background: var(--color-neon);
  color: #0D1820;
  border: 2px solid var(--color-neon);
  box-shadow: 0 0 12px var(--color-neon), 0 2px 24px var(--color-shadow);
  text-shadow: 0 1px 8px #fff6;
}
.btn-primary:hover, .btn-primary:focus {
  background: #00c6a3;
  color: #fff;
  filter: brightness(1.1) drop-shadow(0 0 10px var(--color-neon));
}
.btn-secondary {
  background: transparent;
  color: var(--color-neon);
  border: 2px solid var(--color-neon);
  margin-left: 10px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-neon);
  color: #1a323a;
  box-shadow: 0 0 17px var(--color-neon);
}

/* ===============================
   MAIN NAVIGATION
=============================== */
header {
  background: #1b2630;
  box-shadow: 0 6px 48px 0 #11243033;
  position: sticky;
  top: 0;
  z-index: 1201;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 26px;
  flex-wrap: wrap;
  padding: 18px 0;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav li {
  list-style: none;
}
.main-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 8px;
  border-radius: 10px;
  transition: color 0.15s, background 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-neon);
  background: #213541;
}
.main-nav .btn-primary {
  margin-left: 18px;
}

/* ===============================
   MOBILE MENU (BURGER NAV)
=============================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 26px;
  top: 16px;
  font-size: 2.1rem;
  background: var(--color-card);
  color: var(--color-neon);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.13s;
  z-index: 1202;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-bg-light);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(110deg, #13394C 60%, #225267 100%);
  z-index: 1300;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.23,1.06,.32,1);
  box-shadow: 6px 0 36px #12314750;
  padding: 32px 28px 28px 28px;
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--color-neon);
  background: none;
  border: none;
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 1401;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border-radius: 50%;
}
.mobile-menu-close:focus {
  background: var(--color-card);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-top: 64px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: var(--color-accent);
  font-family: var(--font-display);
  padding: 11px 5px;
  border-radius: 11px;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: var(--color-neon);
  color: #193438;
}

@media (max-width: 1020px) {
  .main-nav ul {
    gap: 13px;
  }
  .main-nav .btn-primary {
    margin-left: 8px;
    padding: 9px 21px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 900px) {
  .main-nav {
    justify-content: flex-start;
  }
}
@media (min-width:901px) {
  .mobile-menu { display: none!important; }
}

/* ===============================
   TABLES
=============================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 19px 0;
  background: var(--color-card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--color-shadow-deep);
}
thead {
  background: var(--color-primary);
  color: var(--color-neon);
}
th, td {
  padding: 15px 12px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #29475844;
}
th { font-family: var(--font-display); font-size: 1.08rem; letter-spacing: .5px; color: var(--color-neon) }
tr:last-child td { border-bottom: none; }
tr:hover { background: #1c3c4d77; }

/* ===============================
   FOOTER
=============================== */
footer {
  background: #182738;
  color: var(--color-secondary);
  margin-top: 40px;
  padding: 36px 0 24px 0;
  box-shadow: 0 -3px 26px var(--color-shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-nav a {
  color: var(--color-neon);
  font-size: 0.99rem;
  padding: 6px 12px;
  border-radius: 9px;
  transition: color 0.17s, background 0.13s;
}
.footer-nav a:hover { color: #193438; background: var(--color-neon); }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  color: var(--color-secondary);
  font-size: 1.02rem;
  margin-bottom: 10px;
}
.footer-contact img {
  width: 21px;
  margin-right: 5px;
  vertical-align: middle;
}
.footer-contact address {
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-branding {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.footer-branding img {
  width: 66px;
  height: auto;
}
.footer-branding p {
  color: var(--color-secondary);
  font-size: 0.93rem;
}

/* ===============================
   GENERAL SPACING & UTILS
=============================== */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-of-type, .section:last-of-type {
  margin-bottom: 0;
}
.text-section {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===============================
   COOKIE CONSENT BANNER + MODAL
=============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg,#13394C 70%,#225267 100%);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  z-index: 1400;
  box-shadow: 0 -3px 20px var(--color-shadow-deep);
}
.cookie-banner p {
  font-size: 1rem;
  color: var(--color-accent);
  margin: 0;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  border-radius: 14px;
  border: none;
  outline: none;
  padding: 8px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 0 4px;
  box-shadow: 0px 2px 12px var(--color-shadow);
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .accept {
  background: var(--color-neon);
  color: #172329;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #00e5b5;
  color: #fff;
}
.cookie-banner .reject {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #253A43;
  color: var(--color-neon);
  border-color: var(--color-neon);
}
.cookie-banner .settings {
  background: var(--color-primary);
  color: var(--color-neon);
  border: 2px solid var(--color-neon);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-neon);
  color: #15313f;
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(23, 40, 51, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.23,1.06,.32,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #253A43;
  color: var(--color-accent);
  border-radius: 15px;
  padding: 38px 32px 32px 32px;
  min-width: 320px;
  max-width: 440px;
  box-shadow: 0 8px 32px var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 15px;
  font-size: 1.6rem;
  background: none;
  color: var(--color-neon);
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center; 
  justify-content: center;
  transition: background 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #193438;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--color-neon);
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-switch {
  width: 38px; height: 20px;
  border-radius: 20px;
  background: #212F38;
  position: relative;
  cursor: pointer;
  margin-left: 12px;
  border: 1.5px solid var(--color-neon);
  transition: background 0.18s,
              border-color 0.13s;
}
.cookie-switch input[type='checkbox'] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-switch-slider {
  position: absolute; top: 2px; left: 2px;
  background: var(--color-accent);
  width: 16px; height: 16px;
  border-radius: 50%;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: left 0.22s, background 0.14s;
}
.cookie-switch input:checked + .cookie-switch-slider {
  background: var(--color-neon);
  left: 20px;
}
/* Essential always on */
.cookie-category.essential .cookie-switch {
  background: #31BCA7;
  border-color: #37ffc9;
  opacity: 0.75;
  cursor: not-allowed;
}
.cookie-category.essential .cookie-switch-slider {
  background: #37ffc9;
  left: 20px;
}

/* ===============================
   RESPONSIVE DESIGN: MOBILE-FIRST
=============================== */
@media (max-width: 1020px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 900px) {
  .container { padding: 0 10px; }
  .section, section { padding: 26px 10px; }
  .cta-banner { padding: 27px 0; }
  .content-wrapper { gap: 17px; }
  .feature-grid, .card-container, .content-grid { gap: 14px; }
  .testimonial-card, .card, .service-card, .feature {
    min-width: 180px;
    padding: 18px 10px;
  }
  .footer-contact, .footer-nav {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .text-section {
    padding: 0;
    gap: 15px;
    max-width: 98vw;
  }
  .content-grid, .feature-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card, .feature, .service-card, .card {
    min-width: auto;
    width: 100%;
    margin-bottom: 18px;
    padding: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-contact, .footer-nav, .footer-branding {
    flex-direction: column;
    gap: 9px;
  }
  .cookie-modal-content { padding: 22px 8px 22px 8px; }
  table, thead, tbody, th, td, tr {
    display: block;
  }
  thead {
    display: none;
  }
  tr { border-bottom: 2px solid #213541; margin-bottom: 14px; }
  td {
    padding: 8px;
    font-size: 0.99rem;
    border-bottom: 0;
    background: #1c2733;
    border-radius: 7px;
    margin-bottom: 4px;
    word-break: break-word;
  }
  th, td { width: 100%; }
}

/* ===============================
   ANIMATIONS / HOVERS
=============================== */
.btn-primary, .btn-secondary, header a, .feature, .service-card, .card, .testimonial-card {
  transition: box-shadow 0.2s, background 0.2s, color 0.16s, border 0.2s, transform 0.16s, filter 0.17s;
}
a:hover, a:focus {
  color: var(--color-neon);
  text-shadow: 0 0 3px var(--color-neon);
}
hr {
  border: none;
  border-bottom: 1px solid #283b44;
  margin: 24px 0;
}

/* ===============
   Z-INDEX LAYERS
=============== */
header { z-index: 1201; }
.mobile-menu { z-index: 1300; }
.cookie-banner { z-index: 1400; }
.cookie-modal { z-index: 2000; }

/* END OF CSS */
