/* ========================
   RESET & NORMALIZATION
===========================*/
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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #141D2B;
  color: #ECECEC;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
*, *:before, *:after { box-sizing: inherit; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; }

/* =============
    ROOT COLORS
   ============*/
:root {
  --primary:#184C7C;
  --secondary:#F7CF38;
  --accent:#ECECEC;
  --dark-bg:#141D2B;
  --neon-blue:#15b7ff;
  --neon-pink:#ff27cb;
  --neon-green:#32FFB8;
  --card-bg:#1E293B;
  --card-alt-bg:#232F46;
  --border-glow:#44d0fb;
  --text-default:#ECECEC;
  --text-dark:#212738;
  --text-light:#ECECEC;
  --shadow-main:0 4px 24px rgba(24,76,124,0.10);
  --radius-main:16px;
}

/* ==========================
   TYPOGRAPHY
=============================*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 22px;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 12px rgba(24, 76, 124, 0.21);
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-blue);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--neon-green);
  margin-bottom: 12px;
}
p, ul, ol, address, li, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-default);
  margin-bottom: 12px;
}
strong { color: var(--secondary); }

/* =====================
  CONTAINER & LAYOUT
======================*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main), 0 0 0 2px var(--border-glow);
  transition: box-shadow 0.25s, transform 0.22s;
  padding: 24px 24px 20px 24px;
  border: 1.5px solid var(--neon-blue);
}
.card:hover {
  box-shadow: 0 6px 32px 3px rgba(69,252,255,0.18), 0 0 0 2px var(--neon-pink);
  transform: translateY(-6px) scale(1.025);
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #F6FAFD;
  border-radius: var(--radius-main);
  box-shadow: 0 4px 20px 0 rgba(24,76,124,0.14);
  border: 1.5px solid var(--primary);
  margin-bottom: 20px;
  color: var(--text-dark)!important;
  min-width: 240px;
  max-width: 420px;
}
.testimonial-card p, .testimonial-card div {
  color: var(--text-dark)!important;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* ===========
   HEADER
============ */
header {
  width: 100%;
  background: var(--dark-bg);
  box-shadow: 0 2px 16px 0 rgba(19,75,154,0.11);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
header img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a {
  padding: 10px 0 10px 0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
}
nav a:hover, nav a.active {
  color: var(--secondary);
  border-bottom: 2px solid var(--neon-blue);
}
nav .btn-primary {
  margin-left: 24px;
}

/* ============
   BUTTONS
============ */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--neon-blue);
  color: #212738;
  border: none;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .7px;
  box-shadow: 0 2px 20px 0 rgba(21,183,255,0.26);
  cursor: pointer;
  transition: background 0.20s, color 0.23s, transform 0.18s, box-shadow 0.21s;
  outline: none;
  position: relative;
}
.btn-primary:after {
  content:"";
  position: absolute;
  display: block;
  border-radius: inherit;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 2.5px solid var(--neon-pink);
  opacity: 0;
  z-index: -1;
  transition: opacity .29s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--neon-pink);
  color: var(--text-light);
  box-shadow: 0 6px 24px 0 var(--neon-pink);
  transform: translateY(-2px) scale(1.04);
}
.btn-primary:hover:after, .btn-primary:focus:after{
  opacity: 1;
}
.btn-secondary {
  display: inline-block;
  padding: 10px 22px;
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--neon-green);
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .7px;
  box-shadow: 0 2px 12px 0 rgba(50,255,184,0.13);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.13s;
  outline: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--neon-green);
  color: var(--text-dark);
  border-color: var(--neon-pink);
  box-shadow: 0 6px 16px 0 var(--neon-green);
}

/* ===============
   FOOTER
================ */
footer {
  margin-top: 40px;
  background: var(--card-bg);
  border-top: 4px solid var(--primary);
  padding: 36px 0 22px 0;
}
footer .container {
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  font-size: 0.99rem;
  font-weight: 500;
  color: var(--text-default);
  transition: color 0.17s, text-decoration 0.18s;
}
.footer-nav a:hover {
  color: var(--neon-blue);
  text-decoration: underline;
}
footer .text-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  font-size: 0.93rem;
}
footer img {
  height: 32px;
  width: auto;
  opacity: 0.83;
}

/* ===============
   LISTS, ICONS
================ */
ul, ol {
  margin-left: 22px;
  margin-bottom: 16px;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.5;
  display: flex;
  align-items: start;
  gap: 10px;
}
ul li img, ol li img {
  margin-right: 7px; /* icon before text */
  height: 26px;
  width: 26px;
  min-width: 18px;
  object-fit: contain;
  filter: drop-shadow(0 0 3px var(--neon-blue));
}

/* ================
    SOCIAL LINKS
==================*/
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin: 18px 0 0 0;
}
.social-links a {
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 50%;
  padding: 9px;
  transition: background 0.17s, box-shadow 0.2s;
}
.social-links a:hover, .social-links a:focus {
  background: var(--neon-blue);
  box-shadow: 0 0 0 3px var(--neon-green);
}
.social-links img {
  width: 26px;
  height: 26px;
  transition: filter 0.15s;
}
.social-links a:hover img {
  filter: drop-shadow(0 0 2.5px var(--neon-pink));
}

/* =============================
     FORMS & ADDRESS FIELDS
===============================*/
address {
  font-style: normal;
  color: var(--text-light);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
address p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 0;
}
address img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 3px var(--primary));
}

/* ===============
    MODAL BASE
================ */
.modal {
  position: fixed;
  left: 0;top: 0;right:0;bottom:0;
  background: rgba(22, 28, 36, 0.80);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: #181f2a;
  color: var(--text-light);
  padding: 36px 30px 28px 30px;
  border-radius: var(--radius-main);
  min-width: 300px;
  max-width: 440px;
  width: 90%;
  filter: drop-shadow(0 8px 48px #15b7ff33);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--neon-pink);
  cursor: pointer;
  transition: color 0.15s;
  z-index: 20;
}
.modal-close:hover {
  color: var(--secondary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 0 0 8px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 500;
}
.cookie-category input[type="checkbox"]:disabled + label {
  color: var(--neon-green);
}

/* ==================
      CARD STYLES
==================== */
.card {
  background: var(--card-bg);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 28px 22px;
  color: var(--text-light);
  margin-bottom: 20px;
  border: 1.5px solid var(--neon-blue);
  transition: transform 0.19s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-3px) scale(1.017);
  box-shadow: 0 6px 32px 3px rgba(21,183,255,0.17);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}


/* =====================
   MOBILE MENU (BURGER)
=======================*/
.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: var(--neon-pink);
  font-size: 2.2rem;
  cursor: pointer;
  display: none;
  margin-left: 20px;
  z-index: 999;
  transition: color 0.2s, transform 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--neon-green);
  transform: scale(1.11) rotate(-8deg);
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(109deg, #171f2c 76%, var(--neon-blue) 123%);
  box-shadow: 0 0 32px 0 var(--neon-blue), 0 0 220px 0 var(--neon-pink);
  z-index: 3000;
  transform: translateX(100vw);
  transition: transform 0.41s cubic-bezier(.75,.01,.2,1.02);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 0 0 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--secondary);
  font-size: 2.3rem;
  margin: 28px 22px 12px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.19s, transform 0.19s;
}
.mobile-menu-close:hover {
  color: var(--neon-blue);
  transform: rotate(6deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 20px 0 0 0;
  align-items: flex-end;
}
.mobile-nav a {
  padding: 17px 0 17px 0;
  width: 240px;
  text-align: right;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--text-light);
  border-right: 3px solid transparent;
  border-radius: 0 12px 12px 0;
  transition: background 0.13s, color 0.14s, border 0.13s;
  outline: none;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--neon-blue);
  background: rgba(24, 76, 124, 0.10);
  border-right: 3px solid var(--neon-blue);
}

/* =====================
   COOKIE CONSENT BANNER
=======================*/
.cookie-banner {
  position: fixed;
  left:0; bottom:0; right:0;
  width: 100vw;
  background: #232F46;
  color: var(--text-light);
  border-top: 3px solid var(--neon-blue);
  box-shadow: 0 -4px 40px 0 rgba(21,183,255,0.09);
  padding: 24px 32px 16px 32px;
  z-index: 5000;
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.3s, transform 0.30s;
  opacity: 1;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(120px);
  pointer-events: none;
}
.cookie-banner p {
  color: var(--text-light);
  font-size: 1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.19s, box-shadow 0.13s;
}
.cookie-btn.accept {
  background: var(--neon-blue);
  color: var(--text-dark);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--neon-green);
  color: var(--text-dark);
}
.cookie-btn.reject {
  background: var(--neon-pink);
  color: var(--text-light);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--primary);
}
.cookie-btn.settings {
  background: transparent;
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--neon-green);
  color: var(--text-dark);
}

/* ==================
   RESPONSIVE DESIGN
====================*/
@media (max-width: 1024px) {
  .container { padding-left: 11px; padding-right: 11px; }
  header .container { padding: 14px 10px; }
  .section { padding: 32px 7px; }
}
@media (max-width: 900px) {
  .card-container, .content-grid, .footer-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  h1, .h1 { font-size: 1.6rem; }
  h2, .h2 { font-size: 1.2rem; }
  h3, .h3 { font-size: 1rem; }
  .container { max-width: 98vw; }
  .section { margin-bottom: 38px; padding: 24px 5vw; }
  .footer-nav { gap: 10px; flex-wrap: wrap; font-size: 0.93rem; }
  .testimonial-card { min-width: 98vw !important; max-width: 99vw !important; }
  .content-wrapper, .card-content { gap: 12px; }
  .card { padding: 14px 10px; }
  .feature-item { gap: 9px; }
  .social-links { gap: 12px; }
  .modal-content { padding: 18px 8vw; }
  nav a, .footer-nav a, .mobile-nav a { font-size: 1rem; }
  /* FLEX: column layouts on mobile */
  .content-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  nav { gap: 10px; }
}

@media (max-width: 600px) {
  h1, .h1 { font-size: 1.23rem; }
  h2, .h2 { font-size: 1.03rem; }
  h3, .h3 { font-size: 0.985rem; }
  .section { margin-bottom: 27px; padding: 16px 3vw; }
  .card { padding: 8px 5px; font-size:0.97em; }
  .modal-content { padding: 16px 3vw; min-width: 0; }
  footer .text-section { flex-direction: column; gap: 3px; align-items: flex-start; }
  .footer-nav { gap: 6px; }
  .cookie-banner { flex-direction: column; gap: 16px; padding: 16px 8px 10px 8px; align-items: flex-start;}
  .cookie-banner .cookie-btns { gap: 9px;}
}

/* ================================
      MOBILE MENU VISIBILITY
==================================*/
@media (max-width: 992px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============================
     MICRO-INTERACTIONS
==============================*/
.btn-primary, .btn-secondary, .cookie-btn, .modal-close, .mobile-menu-toggle {
  transition: background 0.18s, color 0.18s, box-shadow 0.17s, border-color 0.18s, transform 0.17s;
}
.card, .testimonial-card {
  will-change: transform, box-shadow;
  transition: box-shadow .23s, transform .17s;
}
.card:focus, .testimonial-card:focus {
  outline:2.5px solid var(--neon-pink);
  box-shadow: 0 2px 30px 2px var(--neon-pink);
}

/* ==============================
    ENSURE NO ABS OVERLAPPING
===============================*/
.card, .testimonial-card, .section, .content-wrapper, .card-container, .content-grid, .feature-item {
  margin-bottom: 20px;
}
.card-container, .content-grid, .testimonial-card, .feature-item {
  gap: 20px;
}

/* ==============================
    VISUAL HIERARCHY & EFFECTS
===============================*/
.section {
  background: rgba(24, 76, 124, 0.037);
  border-radius: var(--radius-main);
  box-shadow: 0 3px 10px 0 rgba(24,76,124,0.07);
}
.section:nth-child(even) {
  background: rgba(50, 255, 184, 0.025);
}

/* ===========================
 ACCENT LINES & NEON EFFECTS
============================*/
h1, h2, h3 {
  position: relative;
}
h1:before, h2:before, h3:before {
  content: '';
  display: block;
  height: 4px;
  width: 42px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
  border-radius: 3px;
  margin-bottom: 10px;
  opacity: 0.80;
}
h3:before {
  width: 31px;
  height: 2px;
  margin-bottom: 7px;
}

/* ============================
   OTHER ELEMENTS (THANK YOU)
============================*/
.thank-you h1 {
  color: var(--neon-green);
}

/* ===============
    UTILITIES
================ */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-16 { margin-top: 16px!important; }
.mb-16 { margin-bottom: 16px!important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center; }

/* ===============================
   FOCUS STATES & ACCESSIBILITY
=================================*/
:focus-visible {
  outline: 2px solid var(--neon-pink);
  outline-offset: 1px;
}

/* ====================
    PRINT MINIMALISM
==================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner { display: none !important; }
  body { background: #fff !important; color: #212738; }
}

/* End of style.css */
