/* =====================
   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, 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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #122031;
  color: #F2F6F9;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =====================
   BRAND COLORS & VARS
   ===================== */
:root {
  --primary: #24537A;
  --secondary: #84C1E8;
  --accent: #F2F6F9;
  --dark-bg: #122031;
  --neon-blue: #21D4FD;
  --neon-lime: #00FFA3;
  --card-bg: #182B3A;
  --border: #24476B;
  --text-main: #F2F6F9;
  --text-dark: #182B3A;
}

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

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F2F6F9;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p {
  font-family: 'Roboto', Arial, sans-serif;
  color: #e8f2ff;
  margin-bottom: 16px;
  font-size: 1rem;
}
/* List styles - modern/futuristic lines */
ul, ol {
  margin-left: 0;
  list-style: none;
}
ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
ul li img {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 2px var(--neon-blue));
}


/* =====================================
   CONTAINER & LAYOUT (Flexbox only!)
   ===================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: none;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(0,40,100,0.17), 0 0 0 1.5px var(--border);
  padding: 32px 24px;
  transition: box-shadow 0.22s, transform 0.17s;
  color: var(--text-main);
  min-width: 260px;
  flex:1 1 280px;
}
.card:hover {
  box-shadow: 0 8px 32px 0 var(--neon-blue), 0 0 10px var(--neon-lime), 0 0 0 1.5px var(--neon-blue);
  transform: translateY(-6px) scale(1.03);
  z-index: 2;
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F2F6F9;
  color: #182B3A;
  border-radius: 16px;
  box-shadow: 0 4px 20px 0 rgba(33,212,253,0.10), 0 0 0 1.5px #CCE8FF;
  margin-bottom: 24px;
  min-width: 220px;
  font-size: 1rem;
  position: relative;
  transition: box-shadow 0.22s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 var(--neon-blue), 0 0 16px var(--secondary), 0 0 0 2px var(--neon-blue);
  transform: translateY(-5px) scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============================
   HEADER & NAVIGATION
   =============================== */
header {
  width: 100%;
  background: #131C28;
  box-shadow: 0 2px 16px 0 rgba(36, 83, 122, 0.13);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 12px 20px;
  gap: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
}
header nav a {
  color: #e8f2ff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s, box-shadow 0.16s;
}
header nav a:hover, header nav a:focus {
  color: #21D4FD;
  background: rgba(36,147,218,0.09);
  box-shadow: 0 0 10px 1px var(--neon-blue);
}
.cta-primary {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-lime));
  box-shadow: 0 0 14px 0 var(--neon-blue), 0 0 0 1.5px var(--secondary);
  color: #122031;
  padding: 12px 34px;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  margin-left: 24px;
  transition: background 0.18s, color 0.17s, box-shadow 0.15s, transform 0.09s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #00FFA3 25%, #21D4FD 100%);
  color: #122031;
  transform: scale(1.045);
  box-shadow: 0 8px 32px 0 var(--neon-blue), 0 0 16px var(--secondary), 0 0 0 2px var(--neon-blue);
}

/* =============================
   MOBILE MENU (burger, overlay)
   ============================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #21D4FD;
  font-size: 2.2rem;
  margin-left: 10px;
  cursor: pointer;
  z-index: 50;
  transition: color 0.13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #00FFA3;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18,32,49,0.97);
  z-index: 9999;
  padding: 0 24px;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.6,0.01,0.38,1);
  box-shadow: 0 0 60px 0 rgba(36, 83, 122, 0.38);
  width: 100vw;
  min-height: 100vh;
  overflow-y: auto;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #21D4FD;
  padding: 18px 0 8px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 10002;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #00FFA3;
}
.mobile-nav {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  color: #F2F6F9;
  text-decoration: none;
  padding: 10px 0;
  border-radius: 8px;
  width: 100%;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(36,147,218,0.18);
  color: #21D4FD;
  padding-left: 14px;
}

/* Hide desktop nav on too small screens, show burger */
@media (max-width: 960px) {
  header nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 961px) {
  .mobile-menu {
    display: none!important;
  }
}

/* ====================================
   HERO, SECTION, CONTENT STYLING
   ==================================== */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
section .container {
  background: none;
}
section .content-wrapper,
section .text-section {
  background: none;
}
@media (min-width: 1200px) {
  section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Accent lines & futuristic details for headings */
h1, h2, h3 {
  position: relative;
  padding-left: 0.2em;
}
h2:before {
  content: '';
  position: absolute;
  left: -18px;
  top: 10px;
  width: 7px;
  height: 26px;
  background: linear-gradient(180deg,#21D4FD 40%,#00FFA3 100%);
  border-radius: 3px;
  box-shadow: 0 0 8px 1px #21D4FD;
  opacity: 0.6;
}
@media (max-width: 800px) {
  h2:before {
    left: -10px;
    height: 20px;
  }
}

/* ====================================
   TABLES (Price list)
   ==================================== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 22px 0 30px 0;
  font-size: 1r em;
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(33,212,253,0.16);
  overflow: hidden;
}
thead th {
  background: #131C28;
  color: #84C1E8;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 18px 14px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 2px solid #21D4FD;
}
tbody td {
  padding: 16px 14px;
  border-bottom: 1px solid #182B3A;
  color: #F2F6F9;
  font-family: 'Roboto', Arial, sans-serif;
}
tr:last-child td {
  border-bottom: none;
}

/* ====================================
   FOOTER
   ==================================== */
footer {
  width: 100%;
  background: #1A2D43;
  padding: 32px 0 16px 0;
  margin-top: 48px;
  color: #e1edfa;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 12px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #21D4FD;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  text-decoration: underline;
  color: #00FFA3;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-contact img {
  width: 20px; height: 20px;
  filter: drop-shadow(0 0 3px #21D4FD);
}


/* ====================================
   BUTTONS & INTERACTIVES
   ==================================== */
button, .cta-primary {
  outline: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}
button:focus-visible, .cta-primary:focus-visible {
  outline: 2px solid #21D4FD;
  outline-offset: 2px;
}

/* ===============
   HOVER EFFECTS
   =============== */
a, button, .cta-primary, .footer-nav a, .mobile-nav a {
  transition: color 0.18s, background 0.18s, box-shadow 0.17s, transform 0.10s;
}

/* Subtle neon focus shadow on interactive elements */
a:focus, .cta-primary:focus, button:focus {
  box-shadow: 0 0 12px 2px #21D4FD;
}

/* ===================
   RESPONSIVE DESIGN
   =================== */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 800px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .container { padding: 0 10px; }
  .card {
    min-width: 184px;
    padding: 18px 12px;
  }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
  }
  .section {
    margin-bottom: 40px;
    padding: 28px 5px 32px 5px;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .testimonial-card {
    font-size: 0.96rem;
    padding: 14px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.08rem; }
  .card {
    padding: 12px 6px;
  }
  .footer-nav { flex-direction: column; gap: 8px; }
}


/* =======================
   FORM ELEMENT STYLING
   ======================= */
input, textarea, select {
  background: #182B3A;
  color: #F2F6F9;
  border: 1.5px solid #21D4FD;
  border-radius: 9px;
  padding: 12px 14px;
  margin-bottom: 14px;
  width: 100%;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #00FFA3;
  box-shadow: 0 0 10px 1px #21D4FD;
  background: #223245;
  color: #F2F6F9;
}

/* ==========================
   COOKIE CONSENT BANNER
   ========================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  background: linear-gradient(90deg, #24537A 60%, #84C1E8 100%);
  color: #182B3A;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 10000;
  padding: 18px 12px 18px 12px;
  box-shadow: 0 -4px 26px 0 rgba(33,212,253,0.12);
  font-size: 1.02rem;
  animation: slideCookieBannerIn 0.45s ease;
}
@keyframes slideCookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn {
  background: linear-gradient(90deg, #21D4FD, #00FFA3 90%);
  color: #122031;
  border-radius: 19px;
  padding: 9px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  margin-left: 12px;
  margin-right: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, box-shadow 0.15s;
  box-shadow: 0 0 7px 1px #21D4FD66;
}
.cookie-banner .cookie-btn:focus, .cookie-banner .cookie-btn:hover {
  background: linear-gradient(90deg, #00FFA3 20%, #21D4FD 100%);
  color: #122031;
  box-shadow: 0 0 14px 2px #00FFA366;
}
.cookie-banner .settings-btn {
  background: transparent;
  color: #182B3A;
  font-weight: 700;
  border-radius: 12px;
  border: 1.3px solid #21D4FD;
  padding: 8px 20px;
  margin-left: 3px;
  cursor: pointer;
  font-size: 0.98rem;
  transition: background 0.14s, color 0.13s, border 0.13s;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #84C1E8;
  color: #182B3A;
  border-color: #00FFA3;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    font-size: 0.97rem;
    align-items: stretch;
    padding: 16px 6px;
  }
}
/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #142536;
  color: #F2F6F9;
  border-radius: 20px;
  box-shadow: 0 8px 60px 0 #21D4FD44;
  min-width: 300px;
  max-width: 90vw;
  z-index: 10010;
  padding: 38px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 1;
  animation: fadeInCookieModal 0.27s cubic-bezier(0.64,0.04,0.38,1.04);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; transform: translate(-50%, 10%) scale(0.98); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h3 {
  color: #21D4FD;
  margin-bottom: 14px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
  width: 100%;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 40px;
  height: 20px;
  background: #24476B;
  border-radius: 20px;
  position: relative;
  border: none;
  outline: none;
  transition: background 0.14s;
  vertical-align: middle;
  margin-left: 8px;
}
.cookie-modal .cookie-toggle:checked {
  background: linear-gradient(90deg, #21D4FD 40%, #00FFA3 100%);
}
.cookie-modal .cookie-toggle::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.14s;
}
.cookie-modal .cookie-toggle:checked::before {
  transform: translateX(20px);
  background: #182B3A;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  background: linear-gradient(90deg, #21D4FD, #00FFA3 85%);
  color: #122031;
  border-radius: 16px;
  padding: 8px 20px;
  border: none;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: linear-gradient(90deg, #00FFA3 10%, #21D4FD 100%);
}
.cookie-modal .cookie-close {
  background: transparent;
  color: #21D4FD;
  font-size: 2.1rem;
  position: absolute;
  top: 12px; right: 21px;
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  color: #00FFA3;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 18px 8px 16px 8px;
    min-width: 0;
    max-width: 99vw;
  }
}

/* Overlay for cookie modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,83,122,0.47);
  z-index: 10008;
  animation: cookieModalOverlayFade .22s;
}
@keyframes cookieModalOverlayFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ==========================
   SCROLLBARS (neon accent)
   ========================== */
::-webkit-scrollbar {
  width: 10px;
  background: #182B3A;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,#21D4FD 20%,#24537A 95%);
  border-radius: 10px;
}

/* ============================
   MISC: SUP, OL, etc.
   ============================ */
sup {
  vertical-align: super;
  font-size: 0.77em;
}
ol li {
  margin-bottom: 13px;
  padding-left: 0;
  list-style: decimal inside;
  color: #F2F6F9;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ================
   IMAGES
   ================ */
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* ==========================
   UTILITIES & ACCESSIBILITY
   ========================== */
.visually-hidden {
  position: absolute!important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ================================
   FUTURISTIC SPECIAL-ACCENT ANIMS
   ================================ */
.cta-primary, .cookie-banner .cookie-btn, .cookie-banner .settings-btn {
  box-shadow: 0 0 5px 0 #21D4FD99, 0 0 0 1.5px #21D4FD55;
}
.cta-primary:active, .cookie-banner .cookie-btn:active {
  transform: scale(0.97);
  box-shadow: 0 0 4px 0 #00FFA322;
}

/* Small accent pulse on hover/focus */
.cta-primary:hover::after,
.cta-primary:focus::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 104%; height: 120%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse closest-side, #00FFA366 60%, transparent 100%);
  transform: translate(-50%, -50%) scale(0.94);
  opacity: 0.17;
  border-radius: 24px;
}

/* Neon border active animation */
@media (prefers-reduced-motion: no-preference) {
  .card, .testimonial-card, .cta-primary, .footer-contact, .footer-nav a {
    transition: box-shadow 0.23s, color 0.17s, background 0.22s, transform 0.15s;
  }
}

/* ================================
   MEDIA OVERRIDES FOR CARD GRID
   ================================ */
.card-container, .content-grid {
  justify-content: flex-start;
}

@media (max-width: 600px) {
  .footer-contact {
    gap: 9px;
  }
  .footer-nav {
    gap: 7px;
  }
  .testimonial-card {
    padding: 10px 3px;
    font-size: 0.92rem;
  }
}

/* End of VelvetyGlow Futuristic Flexbox CSS */
