/* ============= 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, main, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #101b27;
  color: #f2f2f2;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}
h1 {font-size: 2.1rem; margin-bottom: 18px;}
h2 {font-size: 1.6rem; margin-bottom: 16px;}
h3 {font-size: 1.2rem; margin-bottom: 13px;}
p {margin-bottom: 18px; font-size: 1.075rem; color: #e7eaf0;}
strong {color: #D4A13B;}

/* ============= Brand Color Variables ============= */
:root {
  --primary: #15344D;
  --secondary: #D4A13B;
  --accent: #F2F2F2;
  --main-bg: #101b27;
  --neon-blue: #14F4FF;
  --neon-pink: #eb4dff;
  --shadow: 0 4px 32px 0 rgba(7, 31, 60, 0.18), 0 1.5px 6px 0 rgba(20,244,255,0.03);
  --border-radius: 18px;
  --card-bg: #182b3a;
  --card-border: #2b3d54;
  --footer-bg: #132436;
  --success: #18f68e;
  --danger: #ff5994;
  --heading: #fff;
}

/* ============= Containers & Layouts ============= */
.container {
  width: 100%;
  max-width: 1110px;
  padding: 0 18px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
}


/* ============= Section Spacing Patterns ============= */
.section {
  background: transparent;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  padding: 28px 22px;
  transition: box-shadow 0.22s, border-color 0.2s;
}
.card:hover, .card:focus-within {
  border-color: var(--neon-blue);
  box-shadow: 0 2px 28px 0 var(--neon-blue), 0 1px 4px 0 rgba(235,77,255,0.06);
}
.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: #fafbfc;
  border-radius: 13px;
  border-left: 4px solid var(--neon-blue);
  box-shadow: 0 2px 12px 0 rgba(32,217,255,0.11);
  margin-bottom: 20px;
  color: #132436;
  min-width: 240px;
}
.testimonial-card p {
  color: #132436;
  font-weight: 500;
  font-size: 1.1rem;
}
.testimonial-card span {
  color: #15344D;
  font-size: 1rem;
  opacity: 0.85;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive testimonial list layout */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* ============= Main Navigation & Header ============= */
header {
  background: var(--main-bg);
  box-shadow: 0 1.5px 16px 0 rgba(24,43,58,0.11);
  position: relative;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  position: relative;
}
.main-nav > a img {
  height: 40px;
  width: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 17px;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav li a {
  color: #e0e8f3;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .18s, color .18s;
  position: relative;
}
.main-nav li a:hover, .main-nav li a:focus {
  color: var(--neon-blue);
  background: rgba(45,232,255,0.08);
}
.cta-btn {
  background: linear-gradient(90deg, var(--secondary) 60%, var(--neon-blue) 130%);
  color: #132436;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 13px;
  padding: 11px 32px;
  font-size: 1.07rem;
  box-shadow: 0 1px 12px 0 rgba(255,194,17,0.07);
  border: none;
  margin-left: 18px;
  transition: background 0.21s, box-shadow 0.2s, color 0.21s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  color: #fff;
  background: linear-gradient(90deg, var(--neon-blue) 70%, var(--secondary) 170%);
  box-shadow: 0 2px 24px 0 var(--neon-blue), 0 0.5px 2px 0 rgba(212,161,59, 0.07);
  outline: none;
}

/* ============= HERO & HEADINGS ============= */
.hero {
  width: 100%;
  background: linear-gradient(90deg,#182b3a 57%, #263149 100%);
  padding: 56px 0 48px 0;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--neon-blue);
  box-shadow: 0 4px 30px 0 rgba(20,244,255,0.07);
}
.hero h1 {
  font-size: 2.45rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 2px 18px var(--neon-blue), 0 1px 1px #14225b44;
}
.hero p {
  color: #e7eaf0;
  font-size: 1.2rem;
  margin-bottom: 22px;
  margin-top: 8px;
}
.hero .cta-btn {
  margin-top: 4px;
}

/* ============= Features/List Section ============= */
.features ul, .features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.features li, .feature-grid li {
  flex: 1 1 230px;
  background: #1d2d45;
  border-radius: 11px;
  box-shadow: 0 2px 9px 0 rgba(20,244,255,0.05);
  padding: 19px 18px 19px 19px;
  color: #eaf0ff;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-left: 3.5px solid var(--secondary);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  min-width: 190px;
  margin-bottom: 20px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.22s;
}
.features li img, .feature-grid li img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px var(--neon-blue));
  margin-right: 7px;
}
.features li:hover, .feature-grid li:hover {
  border-left: 3.5px solid var(--neon-blue);
  box-shadow: 0 1.8px 11px 0 var(--neon-blue);
}

/* ============= Services & Table ============= */
.services ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.services li {
  background: #1f344b;
  border-radius: 9px;
  padding: 15px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: #eaf5ff;
  font-size: 1.06rem;
  border-left: 3px solid var(--secondary);
  margin-bottom: 20px;
}
.services li .price {
  background: var(--main-bg);
  color: var(--neon-blue);
  font-weight: 700;
  font-size: 1.01rem;
  border-radius: 7px;
  padding: 5.5px 13px;
  margin-left: 7px;
  box-shadow: 0 1px 6px 0 rgba(20,244,255,0.06);
}
.services table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #192c3a;
  border-radius: 11px;
  margin-bottom: 22px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(20,244,255,0.06);
}
.services thead {
  background: var(--primary);
}
.services th, .services td {
  text-align: left;
  padding: 13px 14px;
  color: #F2F2F2;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.services th {
  background: var(--primary);
  border-bottom: 2px solid var(--neon-blue);
}
.services tr {
  border-bottom: 1px solid #223656;
}
.services tbody tr:nth-child(even) {
  background: #223559;
}
.services tbody tr:nth-child(odd) {
  background: #1a273d;
}
.services tr:last-child {
  border-bottom: none;
}

/* ============= Contact ============= */
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-bottom: 28px;
}
.text-section {
  flex: 1 1 260px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #eaf3ff;
  font-size: 1.05rem;
}
.contact-info img {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 7px var(--neon-blue));
}
.contact-info a {
  color: var(--neon-blue);
  text-decoration: underline;
  transition: color 0.15s;
}
.contact-info a:hover, .contact-info a:focus {
  color: var(--secondary);
}

/* ============= Footer ============= */
footer {
  background: var(--footer-bg);
  color: #b3d2ff;
  padding: 42px 0 16px 0;
  box-shadow: 0 -2px 28px 0 rgba(20,244,255,0.05);
  margin-top: 56px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 23px;
}
.logo-footer img {
  height: 47px;
  width: auto;
}
.footer-nav {
  display: flex;
  gap: 19px;
}
.footer-nav a {
  color: #b8d2f5;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 5px 10px;
  border-radius: 7px;
  transition: background .16s, color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--neon-blue);
  background: rgba(20,244,255,0.08);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-icons img {
  width: 31px;
  height: 31px;
  filter: drop-shadow(0 0 8px var(--neon-blue));
  transition: filter .18s, transform .18s;
}
.social-icons img:hover, .social-icons img:focus {
  filter: drop-shadow(0 0 17px var(--neon-pink));
  transform: scale(1.08);
}

/* ============= Mobile Menu ============= */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 22px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--neon-blue);
  z-index: 51;
  padding: 5px;
  cursor: pointer;
  transition: color 0.18s, background 0.17s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--neon-blue);
  background: #182b3a44;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #111c28ee;
  z-index: 1000;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.64, 0.04, 0.35, 1.1);
  box-shadow: -4px 0 32px 0 rgba(20,244,255,0.08);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 10px 0;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--neon-blue);
  cursor: pointer;
  z-index: 1002;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  color: var(--neon-pink);
  outline: 2px solid var(--neon-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  width: 100%;
  padding: 36px 38px 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 13px 8px;
  border-radius: 9px;
  transition: background .17s, color .19s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(20,244,255,0.07);
  color: var(--neon-blue);
}

/* Burger menu behavior */
@media (max-width: 1100px) {
  .main-nav ul {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ============= Cookie Consent Banner ============= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #182b3abf;
  color: #f2f2f2;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 30px;
  box-shadow: 0 -2px 24px 0 rgba(20,244,255,0.1);
  font-size: 1rem;
  animation: fadeinCB 0.45s cubic-bezier(0.53,0,0.38,1);
}
@keyframes fadeinCB {from {transform:translateY(100%);} to {transform:translateY(0);}}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn, .cookie-set-btn {
  border: none;
  outline: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 10px;
  padding: 8px 22px;
  font-size: 1.01rem;
  background: var(--secondary);
  color: #222f44;
  box-shadow: 0 1.5px 6px 0 rgba(20,244,255,0.06);
  margin-right: 2px;
  transition: background 0.19s, color 0.18s, box-shadow 0.19s;
}
.cookie-btn.accept {
  background: var(--success);
  color: #0c1a11;
}
.cookie-btn.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-set-btn:hover, .cookie-set-btn:focus {
  background: var(--neon-blue);
  color: #fff;
  box-shadow: 0 1.5px 10px 0 var(--neon-blue);
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #182b3acc;
  backdrop-filter: blur(7px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalin 0.38s cubic-bezier(0.39,0,0.41,1);
}
@keyframes modalin {from {opacity:0; transform:scale(1.06);} to {opacity:1; transform:scale(1);}}
.cookie-modal-content {
  background: #f2f2f2;
  color: #101b27;
  border-radius: 18px;
  padding: 36px 24px 26px 24px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 4px 32px 0 var(--neon-blue);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal-content h3 {
  color: var(--primary);
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
}
.cookie-category input[type=checkbox]:not(:disabled) {
  accent-color: var(--secondary);
  width: 18px;
  height: 18px;
}
.cookie-category label {
  color: #15344D;
  font-size: 1.05rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 17px;
}
.cookie-modal-close {
  background: none;
  color: var(--neon-blue);
  border: none;
  position: absolute;
  right: 28px;
  top: 19px;
  font-size: 1.7rem;
  cursor: pointer;
}

/* ============= Typography Hierarchy ============= */
h1, .h1 { font-size: 2.3rem; }
h2, .h2 { font-size: 1.57rem; }
h3, .h3 { font-size: 1.18rem; }
p, ul li, ol li, .text-section, table, .contact-info li, .services li {
  font-size: 1.09rem;
  line-height: 1.6;
}

/* ============= Utility & Misc ============= */
::-webkit-scrollbar {
  width: 9px;
  background: #151c28;
}
::-webkit-scrollbar-thumb {
  background: var(--neon-blue);
  border-radius: 13px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

.section:not(:last-child) {
  margin-bottom: 60px;
}

/* ============= Media Queries (Responsive Flex) ============= */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
  }
  .main-nav {
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-flex,
  .footer-bottom {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 34px 0 28px 0;
    margin-bottom: 24px;
    border-bottom-width: 1.5px;
  }
  .container {
    padding: 0 5vw;
  }
  .section {
    padding: 26px 6vw;
    margin-bottom: 37px;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.19rem; }
  h3 { font-size: 1.07rem; }
  .features ul, .features .feature-grid {
    flex-direction: column;
    gap: 11px;
  }
  .testimonial-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section, .contact-flex {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-flex {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
  .social-icons {
    gap: 9px;
  }
}
@media (max-width: 480px) {
  .container, .section {
    padding: 0 4vw;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 16px 6vw;
    font-size: 0.99rem;
  }
}

/* ============= Animations & Microinteractions ============= */
.cta-btn, .cookie-btn, .cookie-set-btn {
  transition: background 0.23s cubic-bezier(.7,-0.3,1,1.8),
              box-shadow 0.19s,
              color 0.23s;
}
.card, .testimonial-card, .features li, .services li {
  transition: transform .15s cubic-bezier(.7,.05,1,.96), box-shadow .18s;
}
.card:hover, .testimonial-card:hover, .features li:hover, .services li:hover {
  transform: translateY(-2px) scale(1.019);
  box-shadow: 0 2.5px 16px 0 var(--neon-blue);
}

/* ========= Focus Styles for Accessibility ========= */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid var(--neon-pink);
  outline-offset: 2px;
  background: #1d2d4544;
}

/* ============= Print Styles ============= */
@media print {
  header, footer, .cookie-banner, .mobile-menu {display: none !important;}
}
