/* ===========================
   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, 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;
}
body {
  line-height: 1.5;
  background: #172032;
  color: #F6F6F6;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F6F6F6;
  line-height: 1.1;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
input, textarea, select {
  font-family: inherit;
  border: none;
  outline: none;
}

/* ===========================
   BRAND VARIABLES & BASE
   =========================== */
:root {
  --primary: #22577A;
  --primary-dark: #183048;
  --secondary: #57CC99;
  --secondary-dark: #47a87c;
  --accent: #F6F6F6;
  --accent-dark: #d2e3e7;
  --neon-blue: #35c2ff;
  --neon-green: #57ffb6;
  --neon-pink: #ff13e1;
  --neutral-bg: #19203a;
  --shadow: 0 4px 32px 0 rgba(34,87,122,0.14), 0 1.5px 5px 0 rgba(34,87,122,0.10);
  --radius: 18px;
  --transition: 0.25s cubic-bezier(.46,.03,.52,.96);
}

body {
  background: linear-gradient(130deg, #172032 56%, #22577A 100%);
}

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

section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1 { font-size: 2.7rem; font-weight: 700; margin-bottom: 20px; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 18px; }
h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; font-weight: 600; }
p { font-size: 1.08rem; margin-bottom: 16px; }
strong { color: var(--secondary); }
.text-section p {
  max-width: 720px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  section, .section { padding: 26px 8px; margin-bottom: 34px; }
}

/* ===========================
   HEADER / NAVIGATION
   =========================== */
header {
  position: sticky;
  top: 0;
  background: #131924fa;
  z-index: 30;
  box-shadow: 0 2px 16px 0 rgba(34,87,122,0.13);
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 76px;
}
.logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px var(--neon-blue));
  transition: filter .3s;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 0 6px 0;
  font-size: 1.13rem;
  color: var(--accent);
  position: relative;
  transition: color var(--transition);
}
nav a:hover, nav a:focus {
  color: var(--neon-blue);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #181B24;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 32px;
  font-size: 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: 0 2px 14px 0 rgba(87,204,153,0.18);
  border: none;
  outline: none;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
  margin-left: 28px;
  margin-right: 12px;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--neon-green);
  color: #1A2432;
  box-shadow: 0 5px 25px 0 rgba(87,255,182,0.31);
  transform: translateY(-2px) scale(1.04);
}

button.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--neon-blue);
  font-size: 2.15rem;
  padding: 5px 15px;
  border-radius: 10px;
  border: none;
  align-items: center;
  transition: background var(--transition);
  z-index: 41;
}
button.mobile-menu-toggle:hover,button.mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary-dark);
}

@media (max-width: 970px) {
  .btn-primary {
    margin-left: 11px;
    margin-right: 0;
    padding: 12px 18px;
    font-size: 1rem;
  }
  nav {
    gap: 14px;
  }
  .logo img {height: 44px;}
}

/* ===========================
   MOBILE NAVIGATION
   =========================== */
@media (max-width: 860px) {
  header .container nav {
    display: none;
  }
  button.mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(16,22,35,0.97);
  z-index: 1000;
  transform: translateX(-110vw);
  transition: transform .38s cubic-bezier(.86,-0.04,.31,1.11);
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 0 500px rgba(24,38,52,0.65);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: var(--neon-blue);
  background: transparent;
  margin: 18px 0 0 0;
  padding: 4px 8px;
  border-radius: 7px;
  border: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--neon-blue);
  color: #172032;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 38px;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 15px 0;
  color: var(--neon-green);
  transition: color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--neon-pink);
}
@media (max-width: 480px) {
  .mobile-menu {
    padding: 0 4vw 0 7vw;
  }
  .mobile-nav a { font-size: 1.07rem; padding: 13px 0; }
}

/* ===========================
   HERO SECTIONS & ACCENT
   =========================== */
.hero-section {
  background: linear-gradient(120deg, var(--primary) 70%, #172032 100%);
  border-radius: var(--radius);
  box-shadow: 0 8px 44px 0 rgba(34,87,122,0.21);
  margin-bottom: 72px;
  padding-bottom: 32px;
}
.hero-section .container {
  align-items: center;
  justify-content: center;
  min-height: 330px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero-section h1 {
  color: var(--neon-green);
  text-shadow: 0 2px 12px rgba(87,255,182,0.25);
}
.hero-section p {
  color: var(--accent);
  font-size: 1.22rem;
}
.hero-section .btn-primary {
  margin-left: 0;
  margin-top: 12px;
  background: var(--neon-blue);
  color: #212943;
}
.hero-section .btn-primary:hover {
  background: var(--neon-green);
  color: #14203a;
}

/* ===========================
   FLEX CONTAINERS & GRIDS
   =========================== */
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--neutral-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 2px solid transparent;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 40px 0 var(--neon-blue);
  border: 2px solid var(--neon-blue);
  transform: translateY(-4px) scale(1.02);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section,
  .content-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.benefit-grid > div {
  background: #202846;
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 215px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .benefit-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===========================
   LISTS & ICON LISTS
   =========================== */
ul > li, ol > li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 12px;
}
ul > li img, ol > li img {
  width: 27px;
  height: 27px;
  filter: drop-shadow(0 0 6px var(--neon-green));
}
ul ul {
  margin-left: 30px;
}
ul ul li {
  font-size: 0.98rem;
  color: var(--accent-dark);
  margin-bottom: 6px;
}

.pricing-highlight {
  background: var(--primary-dark);
  border-left: 5px solid var(--neon-blue);
  padding: 18px 20px;
  border-radius: 0 14px 14px 0;
  color: var(--neon-blue);
  font-size: 1.1rem;
  margin: 18px 0 6px 0;
  box-shadow: 0 1px 14px 0 rgba(34,87,122,0.13);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  background: #e9f7f0;
  color: #263648;
  border-radius: var(--radius);
  box-shadow: 0 7px 30px 0 rgba(87,204,153,0.09);
  margin-bottom: 20px;
  position: relative;
  border: 2px solid var(--secondary);
}
.testimonial-card blockquote {
  font-size: 1.13rem;
  font-style: italic;
  line-height: 1.4;
  color: #1a2c44;
  margin-bottom: 8px;
}
.testimonial-card cite {
  font-size: 0.98rem;
  display: block;
  color: #138b59;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .testimonial-card { flex-direction: column; gap: 12px; padding: 16px 7px; }
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: #15203a;
  border-top: 3.5px solid var(--neon-blue);
  box-shadow: 0 -6px 32px 0 rgba(34,87,122,0.14);
  color: var(--accent);
  padding: 36px 0 16px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  height: 39px;
  filter: drop-shadow(0 1px 7px var(--neon-blue));
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: var(--accent);
  font-size: 1rem;
  padding: 3px 0;
  position: relative;
}
footer nav a::before {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: var(--neon-blue);
  border-radius: 1px;
  transition: width .18s;
  position: absolute;
  bottom: 0;
  left: 0;
}
footer nav a:hover::before { width: 60%; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-dark);
  font-size: 0.96rem;
}
.footer-contact img {
  width: 21px;
  height: 21px;
  filter: drop-shadow(0 1px 3px var(--neon-green));
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 16px; }
  .footer-brand { gap: 12px; }
}

/* ===========================
   CONTACT & MAP SECTIONS
   =========================== */
.contact-info p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 7px;
  font-size: 1.07rem;
  color: var(--accent);
}
.location-map {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #202d43;
  padding: 18px 15px;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 0 rgba(34,87,122,0.10);
  font-size: 1rem;
  color: var(--neon-green);
  min-height: 52px;
  margin-bottom: 14px;
  margin-top: 7px;
}
.location-map img {
  width: 37px;
  height: 37px;
  filter: drop-shadow(0 1px 4px var(--neon-blue));
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #151924ef;
  color: #f6f6f6;
  z-index: 1200;
  padding: 25px 18px 20px 18px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -6px 20px 0 rgba(34,87,122,0.24);
  gap: 18px;
  animation: bannerIn .5s cubic-bezier(.42,0,.26,1.39);
  font-size: 1.04rem;
}
@keyframes bannerIn {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-banner .btn-accept {
  background: var(--neon-green);
  color: #1a2633;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 14px;
  transition: background var(--transition), color var(--transition);
  border: none;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: var(--secondary);
  color: var(--primary-dark);
}
.cookie-banner .btn-reject {
  background: var(--neon-blue);
  color: #162045;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 14px;
  transition: background var(--transition), color var(--transition);
  border: none;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: var(--neon-pink);
  color: #fff;
}
.cookie-banner .btn-settings {
  background: var(--primary);
  color: var(--neon-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 19px;
  border-radius: 11px;
  border: 1.5px solid var(--neon-blue);
  transition: background var(--transition), color var(--transition), border var(--transition);
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: var(--neon-blue);
  color: #141920;
  border: 1.5px solid var(--neon-green);
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.95rem;
    padding: 18px 8px;
  }
  .cookie-banner .cookie-actions { gap: 11px; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(14,22,38,0.93);
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  animation: modalIn .20s cubic-bezier(.42,0,.26,1.39);
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes modalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #202e42;
  padding: 32px 28px 22px 28px;
  border-radius: 28px;
  box-shadow: 0 3px 32px 0 var(--neon-blue);
  min-width: 320px;
  max-width: 95vw;
  color: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--neon-blue);
  font-size: 1.38rem;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
  font-size: 1rem;
}
.cookie-category label {
  margin-left: 8px;
  font-weight: 500;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}
.cookie-switch input {
  opacity: 0; width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary-dark);
  border-radius: 17px;
  transition: background .22s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--neon-green);
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform .19s, background .145s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
  background: #1ace72;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 19px;
  background: transparent;
  color: var(--neon-blue);
  font-size: 1.8rem;
  border: none;
  border-radius: 10px;
  padding: 3px 8px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--neon-blue);
  color: #192433;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal-actions button {
  padding: 10px 22px;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 11px;
  border: none;
  font-weight: 600;
  transition: background .20s, color .14s;
}
.cookie-modal-actions .btn-accept {
  background: var(--neon-green);
  color: #1a2633;
}
.cookie-modal-actions .btn-reject {
  background: var(--neon-blue);
  color: #171828;
}
.cookie-modal-actions .btn-accept:hover, .cookie-modal-actions .btn-accept:focus {
  background: var(--secondary);
  color: #14203a;
}
.cookie-modal-actions .btn-reject:hover, .cookie-modal-actions .btn-reject:focus {
  background: var(--neon-pink);
  color: #fff;
}

@media (max-width: 480px) {
  .cookie-modal { padding: 18px 7px 13px 7px; min-width: 90vw; }
  .cookie-modal h2 { font-size: 1.01rem; }
}

/* ===========================
   UTILITY - SPACING & FLEX
   =========================== */
.mr-20 { margin-right: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }

/* ===========================
   ANIMATIONS & HOVERS
   =========================== */
.btn-primary, .card, .testimonial-card, .cookie-banner, .cookie-modal, .mobile-menu, .benefit-grid > div {
  transition: box-shadow 0.26s cubic-bezier(.32,.2,.48,.97), background 0.19s, color .17s, border .13s, transform .17s;
}
.card a {
  color: var(--neon-blue);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 8px;
  font-size: 1.08rem;
  position: relative;
  transition: color .18s;
}
.card a:hover, .card a:focus {
  color: var(--neon-green);
}
.card span {
  color: var(--secondary);
  font-size: 1.07rem;
  font-weight: 600;
  margin-top: 6px;
}

/* ===========================
   GENERIC RESPONSIVE LAYOUTS
   =========================== */
@media (max-width: 700px) {
  .container, .content-wrapper {
    padding: 0 5px;
  }
  .content-grid, .card-container, .card-grid {
    flex-direction: column;
    gap: 13px;
  }
  .card {
    padding: 18px 7px;
  }
}

/* ===========================
   -- TECH FUTURISTIC ACCENTS --
   =========================== */
.btn-primary, .btn-settings, .btn-accept, .btn-reject, .cookie-modal-actions button {
  box-shadow: 0 0 6px 0 var(--neon-green), 0 0 12px 0 var(--neon-blue);
  text-shadow: 0 1px 4px var(--neon-blue);
  border: none;
  outline: none;
  transition: box-shadow .21s, background .20s, color .18s;
}
.btn-primary:active,.btn-settings:active,.cookie-modal-actions button:active {
  box-shadow: 0 0 2px var(--neon-pink), 0 1px 4px var(--neon-blue);
  outline: none;
}

.card {
  border-radius: 19px;
  background: linear-gradient(128deg, #1e283b 67%, #223f5c 100%);
  border: 2px solid #232e4c;
}
.card:hover { border-color: var(--neon-blue); }
.card h3 { color: var(--neon-blue); margin-bottom: 4px; }
.card p { color: var(--accent-dark); }

@media (max-width: 500px) {
  .container {
    padding: 0 2px;
  }
  header .container, footer .container {
    padding: 0 5px;
  }
}

/* =============================
   HIDE ACCESSIBLE ELEMENTS
   ============================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

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