/* 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, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #121529;
  min-height: 100vh;
  color: #F7EFED;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #34B6C8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}

/* Brand Colors as custom properties (with fallback) */
:root {
  --color-primary: #20244D;
  --color-secondary: #34B6C8;
  --color-accent: #F7EFED;
  --color-bg: #121529;
  --color-card: #232655;
  --color-neon: #07fff1;
  --color-shadow: #16234b;
  --color-error: #ff3154;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; color: #07fff1; text-shadow: 0 3px 30px rgba(0,255,210,.08); }
h2 { font-size: 2rem; margin-bottom: 20px; color: #34B6C8; }
h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--color-accent); }
h4 { font-size: 1rem; margin-bottom: 8px; }
p, li, td, th {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.7;
  color: #F7EFED;
}
p {margin-bottom: 16px;}

/* Containers & Global Layouts */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Header + Main Navigation */
header {
  background: #1b1e40;
  position: relative;
  z-index: 50;
  box-shadow: 0 1px 12px 0 rgba(0,255,241,0.08);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
header a img {
  height: 44px;
  margin-right: 28px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 0 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.2s;
  color: #F7EFED;
}
.main-nav a:hover, .main-nav a:focus {
  color: #07fff1;
  border-color: #07fff1;
}
.main-nav .btn-primary {
  color: #1b1e40;
  background: linear-gradient(90deg,#07fff1 0,#34B6C8 100%);
  border-radius: 24px;
  padding: 9px 26px;
  margin-left: 12px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(7,255,241,0.11);
  border: none;
  cursor: pointer;
  transition: background 0.23s, color 0.19s, box-shadow 0.22s;
  text-shadow: 0 1px 10px rgba(7,255,241,0.08);
}
.main-nav .btn-primary:hover,
.main-nav .btn-primary:focus {
  color: #07fff1;
  background: #1b1e40;
  border: 2px solid #07fff1;
  box-shadow: 0 4px 25px 0 #07fff122;
}

/* Hamburger Menu (mobile) */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #07fff1;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  margin-left: 24px;
  z-index: 51;
  border-radius: 6px;
  transition: background 0.2s, color 0.22s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #0e162f;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #171a32ee;
  backdrop-filter: blur(5px);
  transform: translateX(-100%);
  transition: transform 0.44s cubic-bezier(.77,0,.18,1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 0 18px 24px 18px;
  box-shadow: 8px 0 50px 0 #07fff133;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  color: #07fff1;
  background: none;
  border: none;
  padding: 16px 10px 6px 10px;
  margin-bottom: 8px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:focus,.mobile-menu-close:hover {
  background: #121529;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.2rem;
  padding: 13px 18px;
  color: #fff;
  border-radius: 9px;
  background: none;
  transition: background 0.18s, color 0.19s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #07fff122;
  color: #07fff1;
}

/* --- Responsive Navigation --- */
@media (max-width: 1080px) {
  .container {max-width: 100%;}
}
@media (max-width: 990px) {
  header .main-nav { gap: 16px; }
}
@media (max-width: 900px) {
  .main-nav {gap: 12px;}
}
@media (max-width: 820px) {
  .main-nav, .main-nav .btn-primary {font-size: 0.95rem;}
}
@media (max-width:768px) {
  header .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(130deg, #20244D 42%, #1a353a 120%);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 50px 0 #07fff118;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 750px;
}
.hero h1 {
  color: #07fff1;
  text-shadow: 0 3px 30px #07fff1aa;
  font-size: 2.5rem;
}
.hero p {
  color: #F7EFED;
  margin-bottom: 28px;
  font-size: 1.1rem;
}
.hero .btn-primary {
  margin-top: 8px;
}

/* Buttons */
.btn-primary,
.button,
input[type='submit'],
button[type='submit'] {
  background: linear-gradient(92deg,#07fff1 0,#34B6C8 100%);
  color: #1b1e40;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 11px 34px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  margin-top: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 16px 0 #07fff125;
  transition: color 0.23s, background 0.23s, box-shadow 0.3s;
  text-shadow: 0 1px 10px #07fff108;
  outline: none;
}
.btn-primary:hover,
.btn-primary:focus,
.button:hover,
.button:focus,
input[type='submit']:hover,
input[type='submit']:focus,
button[type='submit']:hover,
button[type='submit']:focus {
  background: #1b1e40;
  color: #07fff1;
  border: 2px solid #07fff1;
  box-shadow: 0 6px 22px 0 #07fff148;
}

/* Features/Services/Icons Grids */
.feature-grid, .service-cards, .team-bios, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 24px 0 0 0;
}
.feature-grid li,
.service-cards li,
.team-bios li,
.faq-list li {
  background: #232655;
  border-radius: 20px;
  padding: 32px 24px 28px 24px;
  box-shadow: 0 3px 16px 0 #181c4288;
  flex: 1 1 302px;
  min-width: 260px;
  max-width: 100%;
  position: relative;
  transition: transform 0.19s, box-shadow 0.16s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 2px solid transparent;
}
.feature-grid li:hover,
.service-cards li:hover,
.team-bios li:hover,
.faq-list li:hover {
  transform: translateY(-8px) scale(1.025);
  border: 2px solid #07fff1;
  box-shadow: 0 7px 28px #07fff118, 0 1px 0 #07fff1 inset;
}
.feature-grid img, .service-cards img {
  height: 48px;
  margin-bottom: 12px;
}
.service-price {
  margin-top: 16px;
  color: #07fff1;
  font-weight: 700;
  font-family: 'Montserrat',arial,sans-serif;
  font-size: 1rem;
}

/* Cards, Content Grids, Testimonials */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232655;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 #181c42b4;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 16px 24px 16px;
  display: flex;
  flex-direction: column;
}
.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;
  margin: 20px 0;
  background: #f7efed;
  color: #222347;
  border-radius: 18px;
  box-shadow: 0 5px 19px 0 #20244d24;
  padding: 24px 32px 20px 32px;
  min-width: 260px;
  max-width: 600px;
  border-left: 5px solid #07fff1;
  position: relative;
  transition: box-shadow 0.18s, transform 0.19s, border-color 0.2s;
}
.testimonial-card p {
  color: #0e162f !important;
}
.testimonial-card span {
  color: #20244D;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .04em;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px #07fff1cc, 0 0px 0 #34B6C8 inset;
  transform: scale(1.015);
  border-color: #34B6C8;
}

/* Feature Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Text Section, Content Blocks */
.text-section {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Footer Styles */
footer {
  background: #161839;
  color: #fff;
  padding: 44px 0 0 0;
  font-size: 1rem;
  border-top: 3px solid #07fff1;
  box-shadow: 0 -3px 40px 0 #07fff115;
}
footer .container {
  flex-direction: column;
}
footer section {
  padding-bottom: 40px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 44px;
}
footer img {
  height: 38px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-left: 24px;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.80;
  transition: color 0.18s, opacity 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #07fff1;
  opacity: 1;
}
.contact-summary {
  margin-left: auto;
  color: #fff;
  font-size: 1rem;
  opacity: 0.90;
  letter-spacing: 0.01em;
}
@media (max-width: 880px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 33px;
  }
  .footer-menu, .contact-summary { margin-left: 0; }
}

/* Tables - Pricing Table */
.pricing-table {
  background: #232655;
  border-radius: 16px;
  overflow: hidden;
  margin: 24px 0 18px 0;
  box-shadow: 0 2px 9px 0 #1b1e4099;
  width: 100%;
}
.pricing-table th,
.pricing-table td {
  padding: 18px 26px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: #1b1e40;
  color: #07fff1;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
}
.pricing-table td {
  border-top: 1px solid #232655;
  color: #F7EFED;
}
.pricing-table tr:nth-child(even) td {
  background: #181c42;
}

/* Misc Fixes and Micro Interactions */
input, textarea, select {
  font-family: inherit;
  border: 1px solid #232655;
  border-radius: 8px;
  padding: 10px 14px;
  background: #181c42;
  color: #F7EFED;
  margin-bottom: 14px;
  font-size: 1rem;
  transition: border-color 0.21s;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #07fff1;
  border-color: #07fff1;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1002;
  background: #181c42eb;
  box-shadow: 0 -2px 26px #07fff130;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 22px 18px 22px 20px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  animation: cookiefadein 0.8s;
}
@keyframes cookiefadein {
  from { opacity:0; transform:translateY(40px) }
  to { opacity:1; transform:translateY(0) }
}
.cookie-banner p {
  margin: 0 10px 0 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
.cookie-banner .button-cookie,
.cookie-banner .btn-primary {
  padding: 8px 18px;
  border-radius: 17px;
  font-size: 1rem;
  font-weight: 600;
  color: #101225;
  background: linear-gradient(90deg,#07fff1 0,#34B6C8 100%);
  border: 0;
  cursor: pointer;
  transition: filter 0.2s, background 0.2s, color 0.17s;
  margin: 0 4px 0 0;
}
.cookie-banner .button-cookie:hover,
.cookie-banner .btn-primary:hover {
  filter: brightness(1.09) drop-shadow(0 0 10px #07fff133);
  background: #232655;
  color: #07fff1;
  border: 2px solid #07fff1;
}
.cookie-banner .button-cookie.reject {
  background: #ff3154;
  color: #fff;
}
.cookie-banner .button-cookie.settings {
  background: #232655;
  color: #07fff1;
}
.cookie-banner .button-cookie.settings:hover {
  background: #101224;
  color: #07fff1;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #0e162fcc;
  align-items: center;
  justify-content: center;
  animation: fadein .4s;
}
.cookie-modal-overlay.active { display: flex; }
.cookie-modal {
  background: #232655;
  border-radius: 22px;
  padding: 28px 30px 24px 30px;
  min-width: 310px;
  max-width: 98vw;
  color: #F7EFED;
  box-shadow: 0 6px 48px 0 #07fff15a;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideup 0.45s cubic-bezier(.4,1.6,.4,1.1);
}
@keyframes slideup {
  from { transform: translateY(100px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #07fff1;
  margin-bottom: 12px;
  margin-top: 0;
}
.cookie-cat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 9px;
}
.cookie-cat label {
  font-size: 1rem;
  color: #F7EFED;
  font-family: 'Roboto', sans-serif;
}
.cookie-cat input[type=checkbox], .cookie-cat input[type=radio] {
  width: 20px;
  height: 20px;
  accent-color: #07fff1;
  margin-right: 8px;
}
.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 14px;
}
.cookie-modal .close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  color: #07fff1;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}
.cookie-modal .close:hover { color: #fff; }

/* Utility Margins, Spacing and Flex patterns (MANDATORY) */
.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;
}

/* General responsive adjustments (mobile first) */
@media (max-width: 768px) {
  body { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1rem; }
  .container {
    padding: 0 8px;
  }
  .hero {
    min-height: 210px;
    padding: 28px 0 14px 0;
  }
  .content-wrapper, .feature-grid, .service-cards, .faq-list {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {gap: 12px;}
  .feature-grid li, .service-cards li, .faq-list li { padding: 23px 11px 19px 11px; }
  .pricing-table th, .pricing-table td {
    padding: 13px 10px;
    font-size: 0.98rem;
  }
  .footer-menu {flex-direction: column; gap: 9px;}
  footer .content-wrapper {gap: 19px;}
  .testimonials .testimonial-card, .testimonial-card {
    padding: 18px 11px;
  }
  .section {
    padding: 30px 6px;
    margin-bottom: 36px;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .mobile-menu {padding-top: 13px;}
}

/* Tablet adjustments */
@media (min-width: 600px) and (max-width: 1023px) {
  .container {max-width: 96vw;}
  .content-wrapper, .feature-grid, .service-cards, .faq-list { gap: 23px; }
  .card-container {gap: 18px;}
  .section {padding: 30px 10px;}
}

/* Utility classes */
.d-flex {display: flex;}
.justify-center {justify-content: center;}
.align-center {align-items: center;}
.flex-col {flex-direction: column;}
.gap-20 {gap: 20px;}
.gap-30 {gap: 30px;}
.m-20 {margin:20px;}
.p-20 {padding:20px;}
.mt-20 {margin-top: 20px;}

/* Table scroll on mobile */
@media (max-width: 700px) {
  .pricing-table {overflow-x: auto; font-size: 0.97rem; }
}

/* Hide visually but not from screen readers */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Decorative Neon Accents */
.neon-line {
  height: 3px;
  width: 60px;
  background: #07fff1;
  box-shadow: 0 0 14px 3px #07fff180;
  margin-bottom: 24px;
  border-radius: 3px;
}

/* Icon Images in text-section */
.text-section img {
  height: 22px;
  width: 22px;
  vertical-align: middle;
  margin-right: 7px;
}

/* List Bullets for .text-section ul, .text-section li, etc. */
.text-section ul, ul {
  list-style: disc inside;
  margin-left: 22px;
  color: #34B6C8;
  margin-bottom: 12px;
}
.text-section li, li {
  margin-bottom: 6px;
  list-style-type: disc;
}

/* Remove webkit tap highlight on buttons/links */
a, button, .button-cookie, .btn-primary { -webkit-tap-highlight-color: transparent; }

/* Error/Success Message (for forms or cookie modal) */
.msg-error {
  color: #ff3154;
  font-weight: 500;
}
.msg-success {
  color: #07fff1;
  font-weight: 500;
}

/* Animations for micro interactions */
.card, .feature-grid li, .service-cards li, .testimonial-card {
  transition: transform 0.14s, box-shadow 0.17s, border-color 0.17s;
}
.card:hover, .feature-grid li:hover, .service-cards li:hover {
  transform: scale(1.025) translateY(-5px);
  box-shadow: 0 7px 22px #07fff133;
  border-color: #07fff1;
}

/****** Prevent unwanted scroll overlap ******/
body, html {
  overflow-x: hidden;
}
section, .section, .content-wrapper {
  box-sizing: border-box;
}

/****** Print styles ******/
@media print {
  header, .main-nav, .footer-menu, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff; color: #111; }
}
section {
  padding: 20px 0;
}