/* ===== CSS RESET & BASE STYLES ===== */
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 {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #10171F;
  color: #F7FAF7;
  min-height: 100vh;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a {
  color: #49B077;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8affe8;
  outline: none;
}
ul, ol { padding-left: 28px; margin-bottom: 16px; }
li { margin-bottom: 12px; }
table { width: 100%; border-collapse: collapse; margin-bottom: 20px; background: #142433; border-radius: 8px; overflow-x: auto; }
th, td { text-align: left; padding: 14px 12px; border-bottom: 1px solid #22425B; }
th { background: #22425B; color: #F7FAF7; font-family: 'Montserrat', sans-serif; font-weight: 600; }
tr:last-child td { border-bottom: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F7FAF7;
}
h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 4px 32px #1fb3d7cc;
}
h2 {
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px #49B07760;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
p, .text-section p {
  font-size: 1.08rem;
  margin-bottom: 16px;
  color: #eaf7fa;
}
.text-section { margin-bottom: 16px; }
strong { color: #67ffec; font-weight: 600; }

/* ===== CONTAINER UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section ul {
  margin-bottom: 16px;
}

/* ===== BRAND COLORS ===== */
:root {
  --color-primary: #22425B;
  --color-primary-dark: #10171F;
  --color-secondary: #49B077;
  --color-accent: #F7FAF7;
  --color-neon: #34ffe5;
  --color-neon-blue: #1fb3d7;
  --color-neon-pink: #ff30c8;
  --color-bg-deep: #111824;
}

/* ====== HEADER ====== */
header {
  background: linear-gradient(90deg, #1b2c3f 0%, #22425B 100%);
  border-bottom: 2px solid #49B077;
  position: sticky; top: 0; z-index: 900;
  box-shadow: 0 0 20px #1fb3d744;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
header img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: #eaf7fa;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #34ffe5;
  border-bottom: 2px solid #34ffe5;
}

.btn-primary {
  background: linear-gradient(82deg, #34ffe5 0%, #1fb3d7 100%);
  color: #10232d;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 30px;
  padding: 13px 34px;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 32px #49B07730;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.25s, box-shadow 0.2s, color 0.1s;
  text-shadow: 0 2px 8px #ffffff30;
  position: relative;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #49B077, #ff30c8 80%);
  color: #fff;
  box-shadow: 0 4px 40px #34ffe560, 0 0 0 3px #34ffe544;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #34ffe5;
  z-index: 1101;
  cursor: pointer;
  margin-left: 12px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus { color: #ff30c8; outline: none; }
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(16, 23, 31, 0.96);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  padding-top: 42px;
  box-shadow: 0 4px 48px #49B07760;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 2.2rem;
  background: none;
  color: #ff30c8;
  border: none;
  cursor: pointer;
  z-index: 1300;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 58px 32px 32px 32px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.23rem;
  color: #eaf7fa;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 0;
  transition: color 0.18s;
  line-height: 1.4;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #34ffe5;
}

/* ======= HERO/CTA SECTION ======= */
.hero {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(90deg, #142433 0%, #22425B 96%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 340px;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 640px;
  gap: 28px;
}
.hero h1 {
  color: #34ffe5;
  text-shadow: 0 8px 48px #1fb3d7cc;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  color: #c2f7e6;
  margin-bottom: 20px;
}
.hero .btn-primary { margin-left: 0; }

.cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(90deg, #22425B 0%, #263D2E 100%);
  border-radius: 20px;
  box-shadow: 0 8px 64px #34ffe520;
}
.cta .content-wrapper { align-items: center; gap: 24px; }
.cta h2 {
  color: #34ffe5;
  font-size: 2.0rem;
  text-align: center;
}
.cta p {
  text-align: center;
  color: #eaf7fa;
}

/* ======= SECTIONS, FLEX LAYOUTS ======= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper,
section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonials {
  background: #142433;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 6px 40px #49B07725;
}

.features .content-wrapper ul,
section .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  padding-left: 0;
  margin: 0 0 16px 0;
}
.features .content-wrapper li,
section .content-wrapper li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(34,66,91,0.12);
  padding: 10px 18px;
  border-radius: 14px;
  color: #eaf7fa;
  font-size: 1.07rem;
  transition: background 0.2s;
  min-height: 48px;
  font-family: 'Roboto', monospace, sans-serif;
}
.features .content-wrapper li img,
section .content-wrapper li img {
  height: 28px;
  width: 28px;
  filter: drop-shadow(0 0 6px #49B07760) drop-shadow(0 0 20px #c7fdff40);
}
.features .content-wrapper li:hover,
section .content-wrapper li:hover {
  background: #1fb3d722;
  color: #34ffe5;
}
.features ul { margin-bottom: 0; }

.text-section ul {
  margin-bottom: 12px;
  gap: 12px;
}

/* ====== CARD CONTAINERS ====== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #142433;
  border-radius: 18px;
  padding: 34px 28px;
  box-shadow: 0 6px 24px #49B07733;
  transition: box-shadow 0.22s, transform 0.18s;
  min-width: 270px;
  flex: 1 1 260px;
}
.card:hover, .card:focus {
  box-shadow: 0 10px 44px #34ffe555, 0 2px 12px #49B07766;
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* ======= TESTIMONIALS ======= */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #f7faf7;
  color: #22425B;
  padding: 22px 28px;
  border-radius: 15px;
  box-shadow: 0 6px 32px #49b07725;
  min-width: 260px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.24s, transform 0.15s;
  position: relative;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 44px #1fb3d745;
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card p {
  color: #18508c;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: #49B077;
  font-family: 'Montserrat', sans-serif;
}

/* ======= TABLES ======= */
table thead {
  background: #22425B;
}
table tbody tr:nth-child(even) {
  background: #143346;
}
td, th {
  border-bottom: 1px solid #234045;
}

/* ====== FOOTER ====== */
footer {
  background: linear-gradient(90deg, #192939 0%, #22425B 100%);
  padding: 32px 0 20px 0;
  border-top: 2px solid #49B07799;
  box-shadow: 0 -4px 40px #49b07733;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}
footer nav a {
  color: #1fb3d7;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.03rem;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #34ffe5;
  text-decoration: underline;
}
footer .text-section {
  color: #98c1d9;
  font-size: 0.97rem;
  text-align: center;
}

/* ====== SPACING, ALIGNMENT, FLEX UTILITIES ====== */
.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; }

/* ======= BUTTONS, FOCUS STATES ======= */
button, .btn-primary {
  outline: none;
  border: none;
}
button:focus, .btn-primary:focus { box-shadow: 0 0 0 3px #1fb3d7cc; }

/* ======= MICRO INTERACTION & TRANSITIONS ======= */
.btn-primary, .card, .testimonial-card, a, header nav a, .mobile-nav a {
  transition: box-shadow 0.20s, background 0.22s, color 0.16s, border 0.18s, transform 0.19s;
}

/* ======= COOKIE BANNER ======= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #22425B;
  color: #F7FAF7;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 32px #1fb3d766;
  padding: 22px 24px 22px 24px;
  font-size: 1.05rem;
  animation: bannerShow 0.7s ease;
}
@keyframes bannerShow {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-banner button {
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  padding: 8px 22px;
  margin: 0;
  transition: background 0.18s, color 0.13s, box-shadow 0.18s;
}
.cookie-banner .btn-accept {
  background: #34ffe5;
  color: #143346;
  box-shadow: 0 1px 10px #49B07799;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #49B077;
  color: #fff;
}
.cookie-banner .btn-reject {
  background: #142433;
  color: #34ffe5;
  border: 1px solid #49B077;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #ff30c8;
  color: #fff;
}
.cookie-banner .btn-settings {
  background: transparent;
  color: #1fb3d7;
  border: 1px solid #34ffe5;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #234045;
  color: #34ffe5;
}

/* ======= COOKIE SETTINGS MODAL ======= */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 23, 31, 0.75);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: modalShow 0.55s ease;
}
@keyframes modalShow {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal .modal {
  background: #202c39;
  color: #F7FAF7;
  border-radius: 16px;
  padding: 38px 32px 28px 32px;
  max-width: 440px;
  box-shadow: 0 10px 60px #34ffe533;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.cookie-modal h3 {
  color: #34ffe5;
  font-size: 1.36rem;
  font-weight: 700;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 15px;
}
.cookie-modal .cookie-category label {
  font-size: 1.04rem;
  color: #eaf7fa;
}
.cookie-modal .cookie-toggle {
  width: 38px; height: 22px;
  appearance: none;
  border-radius: 16px;
  background: #234045;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.18s;
}
.cookie-modal .cookie-toggle:checked {
  background: #34ffe5;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: background 0.2s, left 0.18s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 18px;
  background: #1fb3d7;
}
.cookie-modal .category-desc {
  font-size: 0.98rem;
  color: #b9e8fa;
  margin-bottom: 6px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .btn-save {
  background: #34ffe5;
  color: #10171F;
  border: none;
  border-radius: 20px;
  padding: 9px 27px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.1s;
}
.cookie-modal .btn-save:hover, .cookie-modal .btn-save:focus {
  background: #49B077;
  color: #fff;
}
.cookie-modal .btn-cancel {
  background: transparent;
  border: 1px solid #34ffe5;
  color: #34ffe5;
  border-radius: 20px;
  padding: 9px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  cursor: pointer;
  transition: background 0.18s, color 0.1s;
}
.cookie-modal .btn-cancel:hover, .cookie-modal .btn-cancel:focus {
  background: #234045;
  color: #fff;
}

/* ====== RESPONSIVENESS & MEDIA QUERIES ====== */
@media (max-width: 1080px) {
  .container {
    max-width: 96vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .hero h1 { font-size: 2.0rem; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 768px) {
  header .container { flex-direction: row; gap: 8px; }
  header nav { display: none; }
  .btn-primary { margin-left: 0; }
  .mobile-menu-toggle {
    display: block;
  }
  .hero .container { flex-direction: column; }
  .hero .content-wrapper { align-items: flex-start; text-align: left; }
  .cta .content-wrapper { align-items: stretch; }
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 22px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card, .card {
    min-width: 100%;
    flex: 1 1 100%;
  }
  section, .section {
    margin-bottom: 36px;
    padding: 22px 6vw;
  }
  .cta, .testimonials {
    padding: 22px 5vw;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 12px 18px 12px;
    font-size: 1.01rem;
  }
}
@media (max-width: 580px) {
  .container { padding-left: 2vw; padding-right: 2vw; }
  .hero h1 { font-size: 1.25rem; }
  h1 { font-size: 1.1rem; }
  .cookie-modal .modal {
    padding: 25px 8vw;
    max-width: 98vw;
  }
}

/* ======= MISC NEON EFFECTS & DETAILS ======= */
.btn-primary:before {
  content: '';
  position: absolute;
  top: -7px;
  left: -7px;
  right: -7px;
  bottom: -7px;
  border-radius: 34px;
  background: transparent;
  z-index: -1;
  box-shadow: 0 0 19px 4px #1fb3d780, 0 0 36px 11px #34ffe520;
  opacity: 0.7;
  transition: box-shadow 0.24s, opacity 0.2s;
}
.btn-primary:hover:before, .btn-primary:focus:before {
  box-shadow: 0 0 30px 15px #ff30c8aa, 0 0 50px 16px #34ffe580;
  opacity: 1;
}

.card:after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: 0 0 12px 0 #49B07711, 0 0 18px 2px #1fb3d711;
  z-index: -2;
}
.card:hover:after, .card:focus:after {
  box-shadow: 0 0 30px 5px #34ffe522, 0 0 120px 8px #1fb3d715;
}

.testimonial-card {
  border-left: 5px solid #1fb3d7;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-left: 5px solid #ff30c8;
}

/* ====== FOCUS STYLING FOR ACCESSIBILITY ====== */
a:focus, button:focus, .btn-primary:focus {
  outline: 2px solid #49B077;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #34ffe5a2;
}

::-webkit-scrollbar {
  width: 9px;
  background: #142433;
}
::-webkit-scrollbar-thumb {
  background: #234045;
  border-radius: 8px;
}

/* ===== CUSTOM FONT LOADING (for Montserrat/Roboto) ===== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* ===== END OF CSS ===== */
