/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
:focus {
  outline: 2px solid #5bfaff;
  outline-offset: 2px;
}

/* CSS VARIABLES (with fallbacks) */
:root {
  --primary: #19486A;
  --secondary: #B8CCD7;
  --accent: #F4E6CB;
  --neon: #00E0FF;
  --neon-pink: #FF46C7;
  --bg-main: #111A28;
  --bg-gradient: linear-gradient(135deg, #182336 0%, #335d7d 100%);
  --surface: #162338;
  --shadow: 0 2px 12px 0 rgba(0,32,64,0.16);
  --shadow-hover: 0 6px 24px 0 rgba(0,224,255,0.12);
  --radius: 18px;
  --radius-small: 10px;
  --display-font: 'Montserrat', Arial, Helvetica, sans-serif;
  --body-font: 'Roboto', Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
  background: var(--bg-main);
  background-image: var(--bg-gradient);
  font-family: var(--body-font);
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

header {
  width: 100%;
  background: rgba(22,35,56,0.85);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: var(--shadow);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  margin-right: 28px;
  height: 65px;
}
.logo img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 6px #00e0ff70);
  transition: filter 0.18s;
}
.logo:hover img {
  filter: drop-shadow(0 2px 12px #FF46C7aa);
}

/* NAVIGATION */
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav a {
  padding: 6px 14px;
  font-family: var(--display-font);
  font-size: 1.075rem;
  border-radius: var(--radius-small);
  letter-spacing: 0.01em;
  font-weight: 600;
  color: #e8faff;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
nav a:hover, nav a:focus {
  background: rgba(0,224,255, 0.13);
  color: var(--neon);
}

.cta-button {
  font-family: var(--display-font);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 12px 30px;
  background: linear-gradient(90deg, var(--neon-pink) 0%, var(--neon) 100%);
  color: #111A28;
  box-shadow: 0 2px 12px 0 #00E0FF45;
  transition: background 0.19s, box-shadow 0.19s, transform 0.12s;
  margin-left: 20px;
  margin-right: 0;
  border: none;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  color: #fff;
  background: linear-gradient(90deg, var(--neon) 0%, var(--neon-pink) 100%);
  box-shadow: 0 4px 18px 0 #FF46C755, 0 1px 10px 0 #00E0FF66;
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--neon);
  font-size: 2.2rem;
  padding: 7px 10px;
  line-height: 1;
  border-radius: 8px;
  transition: background 0.14s, color 0.13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(0,224,255,0.18);
  color: var(--neon-pink);
}

/**** MOBILE MENU OVERLAY ****/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17,34,54,0.97);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.83,0,.17,1);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 28px;
  top: 23px;
  color: var(--neon);
  background: none;
  font-size: 2.3rem;
  border: none;
  z-index: 1011;
  padding: 8px;
  border-radius: 12px;
  transition: background 0.14s, color 0.13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(255,70,199,0.14);
  color: var(--neon-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 96px;
  gap: 22px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.3rem;
  border-radius: var(--radius-small);
  padding: 13px 32px;
  transition: background 0.16s, color 0.16s;
  letter-spacing: 0.02em;
  font-weight: 600;
  width: 100%;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(0,224,255,0.10);
  color: var(--neon);
}

/**** SECTIONS ****/
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--secondary);
  background: transparent;
}

/**** TYPOGRAPHY ****/
h1, h2, h3, h4 {
  font-family: var(--display-font);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  line-height: 1.18;
  text-shadow: 0 4px 24px rgba(0,224,255,0.20);
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent);
  text-shadow: 0 2px 10px rgba(0,224,255,0.13);
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--secondary);
}
h4 {
  font-size: 1.12rem;
}
p, li, span, blockquote {
  font-family: var(--body-font);
  font-size: 1rem;
  color: #e6f5ff;
}
p, li {
  margin-bottom: 13px;
}
strong {
  color: var(--accent);
  font-weight: 700;
}
blockquote {
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.7;
  color: #111A28;
  padding: 12px 24px;
  background: linear-gradient(90deg,#B8CCD740 0%,#e8ecf070 100%);
  border-left: 7px solid var(--neon);
  border-radius: var(--radius-small);
  box-shadow: 0 2px 8px #111A2835;
}

/**** CARDS AND FLEX CONTAINERS ****/
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.14s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px) scale(1.025);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 12px;
  border-radius: var(--radius-small);
  background: rgba(25,72,106,0.12);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px #00E0FF15;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

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

/**** TESTIMONIALS ****/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Prevent vertical centering that would clash with text blockquotes */
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: #f7fafd;
  box-shadow: 0 4px 20px 0 #00E0FF15, 0 2px 6px 0 #111a2810;
}
.testimonial-card blockquote {
  color: #151d2a;
  background: transparent;
  border-left: 5px solid var(--primary);
  margin-bottom: 0;
  padding: 0 16px;
  font-size: 1.1rem;
  box-shadow: none;
}
.testimonial-card span {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.02rem;
  margin-left: 10px;
}

/**** USP/ELEMENT BOXES & TIPS ****/
.usp-box, .expert-tip {
  background: linear-gradient(90deg,rgba(0,224,255,0.08),rgba(255,70,199,0.05));
  color: var(--primary);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  font-family: var(--body-font);
  font-size: 1rem;
}
.usp-box {
  color: #00E0FF;
}
.expert-tip h3 {
  margin-bottom: 8px;
  color: var(--neon);
}

/* LISTS, ICONS, ETC */
ul {
  padding-left: 0;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f7fafd;
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.5;
  background: none;
}
ul li img {
  width: 26px;
  height: 26px;
}

/**** FOOTER ****/
footer {
  width: 100%;
  background: #162338;
  padding: 36px 0 26px 0;
  margin-top: 60px;
  box-shadow: 0 -2px 12px 0 #00E0FF07;
}
footer .container {
  flex-direction: column;
  gap: 18px;
}
.footer-menu {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-menu nav {
  gap: 20px;
}
.footer-menu a {
  color: var(--secondary);
  font-size: 0.97rem;
  padding: 7px 13px;
  border-radius: 6px;
  transition: color 0.14s, background 0.14s;
  font-family: var(--display-font);
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--neon);
  background: rgba(0,224,255,0.11);
}
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--secondary);
  font-size: 1rem;
  font-family: var(--body-font);
}
.footer-contact img {
  height: 30px;
}
.footer-contact a {
  color: var(--accent);
  margin-left: 7px;
}

/**** COOKIE CONSENT BANNER ****/
#cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #151d2a;
  color: #fff;
  box-shadow: 0 -2px 24px #00e0ff32;
  z-index: 1300;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 24px 14px 24px 14px;
  transition: transform 0.37s cubic-bezier(.81,0,.09,1), opacity 0.23s;
  opacity: 0.975;
}
#cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
#cookie-banner p {
  color: #f7fafd;
  font-family: var(--body-font);
  font-size: 1rem;
  margin-bottom: 0;
  flex: 1 1 400px;
  margin-right: 30px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-button {
  appearance: none;
  padding: 10px 22px;
  font-family: var(--display-font);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-small);
  border: none;
  cursor: pointer;
  background: var(--neon);
  color: #111a28;
  box-shadow: 0 2px 10px #00e0ff33;
  margin-right: 0;
  transition: background 0.15s, color 0.18s;
}
.cookie-button.settings {
  background: var(--secondary);
  color: #182336;
}
.cookie-button.reject {
  background: #f63788;
  color: #f7fafd;
}
.cookie-button:hover, .cookie-button:focus {
  background: var(--neon-pink);
  color: #fff;
}
.cookie-button.settings:hover, .cookie-button.settings:focus {
  background: var(--accent);
}

/**** COOKIE CONSENT MODAL ****/
#cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,36,50,0.98);
  z-index: 1400;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.45s;
}
#cookie-modal.open {
  display: flex;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #f4e6cb;
  color: #111a28;
  border-radius: var(--radius);
  box-shadow: 0 6px 32px #00e0ff33;
  width: 94%;
  max-width: 420px;
  padding: 36px 26px 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  color: var(--primary);
  font-size: 1.44rem;
}
.cookie-modal-content p {
  color: #00E0FF;
}
.cookie-modal-content .modal-close {
  position: absolute;
  top: 16px;
  right: 19px;
  background: transparent;
  font-size: 1.7rem;
  color: var(--neon-pink);
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
  transition: background 0.14s;
}
.cookie-modal-content .modal-close:hover {
  background: #e41d7f17;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 10px 0 16px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #B8CCD755;
}
.cookie-category strong {
  color: var(--primary);
  font-weight: 700;
}
.category-toggle {
  width: 38px;
  height: 20px;
  border-radius: 13px;
  background: #B8CCD7;
  position: relative;
  margin-left: 22px;
  flex-shrink: 0;
  transition: background 0.18s;
  cursor: pointer;
  border: 0;
}
.category-toggle.on {
  background: var(--neon);
}
.category-toggle:after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  background: #fff;
  box-shadow: 0 2px 8px #111a2822;
  position: absolute;
  left: 2px;
  top: 1px;
  transition: left 0.22s cubic-bezier(.7,0,.18,1), background 0.15s;
}
.category-toggle.on:after {
  left: 18px;
  background: var(--neon-pink);
}
.cookie-category .category-static {
  font-size: 0.97rem;
  color: #6a7688;
  margin-left: 18px;
  font-style: italic;
}
.cookie-actions-modal {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
  align-items: center;
  justify-content: flex-end;
}

/**** RESPONSIVE BREAKPOINTS ****/
@media (max-width: 1150px) {
  .container {
    max-width: 100%;
    padding: 0 8px;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 2vw;
  }
  .footer-contact, .footer-menu nav {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  /* Header and nav */
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 7px;
  }
  nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
  /* Content sections & layouts */
  .content-wrapper, .text-section {
    gap: 18px;
  }
  section, .section {
    padding: 27px 6px 27px 6px;
    margin-bottom: 38px;
  }
  .testimonial-card {
    padding: 12px;
  }
  .card-container, .card-grid, .content-grid {
    gap: 14px;
    flex-wrap: wrap;
  }
  .text-image-section, .content-grid, .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section, .content-grid {
    align-items: stretch;
    justify-content: stretch;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 1.6rem;
    margin-bottom: 13px;
  }
  h2 {
    font-size: 1.18rem;
  }
  h3 {
    font-size: 1.07rem;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
  .container {
    padding: 0 4px;
  }
  #cookie-banner p {
    font-size: 0.96rem;
  }
  .cookie-modal-content {
    padding: 27px 8px;
  }
}

/**** MISC ****/
::-webkit-scrollbar {
  width: 8px;
  background: #131b29;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 22px;
}

/* --- Utility Classes --- */
.mt-24 { margin-top: 24px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-32 { margin-bottom: 32px !important; }
.text-center { text-align: center !important; }
.row {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Accessibility: High contrast for testimonials section */
section .testimonial-card, .testimonial-card blockquote {
  color: #151d2a;
  background: #f7fafd;
}

/* FORM ELEMENTS (for possible future forms) */
input, textarea, select {
  font-family: var(--body-font);
  padding: 10px 12px;
  border-radius: var(--radius-small);
  border: 1px solid #B8CCD7bb;
  background: #eaf4fa;
  color: #111A28;
  font-size: 1rem;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--neon);
  background: #fff;
  outline: 0;
}

/**** ANIMATIONS FOR MICRO-INTERACTION ****/
.cta-button,.cookie-button,.mobile-menu-close,.mobile-menu-toggle,nav a,.footer-menu a,.cookie-category,.category-toggle {
  transition-property: background,box-shadow,color,transform;
  transition-duration: 0.16s;
  transition-timing-function: cubic-bezier(.7,0,.18,1);
}
.card, .testimonial-card, .usp-box, .expert-tip {
  transition: box-shadow 0.18s, transform 0.10s;
}

/**** SPACING & GAPS ENFORCED ****/
.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;
}

/* Fix for minimum 20px margin between all content cards/sections */
.card, .testimonial-card, .feature-item, .usp-box, .expert-tip {
  margin-bottom: 20px;
}
section + section, .section + .section {
  margin-top: 20px;
}

/**** FONT IMPORTS (vendor fallback) ****/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');
