/* 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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  background: #22272e;
  color: #f8fafc;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}

/* TYPOGRAPHY ---------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 600;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 500;
}
p, li, span, table, td, th {
  font-size: 1rem;
  color: #e4e8ef;
  line-height: 1.7;
}
strong {
  font-weight: 600;
  color: #fff;
}
.text-section h3,
.text-section h2 {
  color: #F3A613;
  margin-top: 18px;
}

/* BASIC STRUCTURE & LAYOUT -------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(40,93,148,0.1), 0 1.5px 4px rgba(243,166,19,0.10);
  background: #23273C;
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #222d3a;
  border-radius: 16px;
  box-shadow: 0 2px 18px 2px rgba(40,93,148,.08);
  transition: box-shadow 0.2s, transform 0.18s;
  padding: 26px 20px;
  min-width: 250px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(243,166,19,.15);
  transform: translateY(-2px) scale(1.015);
}

.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;
  margin-bottom: 22px;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(40,93,148,0.10);
  background: #fff;
  color: #23273C;
  flex-direction: column;
  transition: box-shadow 0.18s;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #285D94;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}
.testimonial-card p {
  color: #23273C;
  font-size: 1.05rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 36px 0 rgba(40,93,148,.17);
}

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

.statistic-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.statistic-card {
  background: #23273C;
  border: 1.5px solid #285d94;
  border-radius: 14px;
  padding: 30px 30px 14px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 9px 0 rgba(40,93,148,0.10);
  min-width: 180px;
  min-height: 124px;
  margin-bottom: 20px;
}
.statistic-card h3 {
  color: #F3A613;
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.statistic-card p {
  color: #e4e8ef;
  margin-bottom: 0;
  font-size: 1rem;
  text-align: center;
}

.text-section {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-section ul {
  margin-left: 18px;
  margin-bottom: 5px;
}

.text-section li {
  padding-left: 0px;
  margin-bottom: 12px;
  position: relative;
  color: #f8fafc;
  font-size: 1rem;
}

.text-section a {
  color: #285D94;
  text-decoration: underline;
  font-weight: 600;
  transition: color .15s;
}
.text-section a:hover {
  color: #F3A613;
}

/* BUTTONS / CTA ---------------------------------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #285D94;
  color: #fff;
  font-family: 'Montserrat', Arial,sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 36px;
  border-radius: 32px;
  border: none;
  margin-top: 10px;
  box-shadow: 0 1px 12px 0 rgba(243,166,19,.09);
  letter-spacing: 0.05em;
  transition: background 0.18s, box-shadow 0.23s, color 0.13s, transform 0.15s;
  cursor: pointer;
  position: relative;
  z-index: 1;
  outline: 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F3A613;
  color: #23273C;
  box-shadow: 0 7px 32px 0 rgba(40,93,148,0.18);
  transform: scale(1.04);
}

button:focus {
  outline: 2px solid #F3A613;
  outline-offset: 2px;
}

/* NAVIGATION & HEADER ------------------------- */
header {
  width: 100%;
  background: #23273C;
  box-shadow: 0 4px 20px 0 rgba(40,93,148,0.07);
  z-index: 60;
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  height: 84px;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-left: 20px;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 6px 16px;
  color: #e4e8ef;
  border-radius: 20px;
  transition: background 0.18s, color 0.18s;
}
header nav ul li a:hover, header nav ul li a.active {
  background: #285D94;
  color: #fff;
}
header nav a img {
  height: 42px;
}
header nav .cta-btn {
  margin-left: 24px;
}

/* MOBILE NAVIGATION ----------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #285D94;
  color: #fff;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background 0.14s,box-shadow 0.18s, color 0.14s;
  z-index: 106;
  border: none;
  position: absolute;
  right: 18px;
  top: 22px;
  box-shadow: 0 0.5px 8px rgba(243,166,19,0.10);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F3A613;
  color: #23273C;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 340px;
  max-width: 95vw;
  height: 100vh;
  background: #23273C;
  box-shadow: 4px 0 32px 0 rgba(40,93,148,.18);
  z-index: 250;
  transform: translateX(-110%);
  transition: transform 0.32s cubic-bezier(0.5, 1.2, 0.2, 1), box-shadow 0.18s;
  padding: 28px 26px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #F3A613;
  border: none;
  font-size: 2rem;
  position: absolute;
  right: 24px;
  top: 18px;
  cursor: pointer;
  z-index: 251;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: #285D94;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 60px;
}
.mobile-nav a {
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  text-align: left;
  background: transparent;
  transition: color 0.16s, background 0.16s;
  padding: 8px 0px 8px 12px;
  border-radius: 8px;
  min-width: 44px;
  min-height: 44px;
}
.mobile-nav a:hover, .mobile-nav a:active {
  color: #F3A613;
  background: #285D94;
}

/* Hide desktop nav & show burger on mobile */
@media (max-width: 992px) {
  header nav ul, header nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN LAYOUTS --------------------------------------------- */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
@media(max-width: 768px) {
  section, .section {
    margin-bottom: 38px;
    padding: 28px 6px;
  }
}

.container {
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.content-wrapper {
  padding: 24px 0;
  gap: 24px;
}

/* FOR FLEX LAYOUTS ON MOBILE */
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .statistic-cards {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    width: 100%;
    gap: 18px;
  }
}

/* HERO SECTION ------------------------------------------ */
section:first-of-type {
  background: linear-gradient(90deg,#285D94 0,#23273C 100%);
  box-shadow: 0 7px 40px 0 rgba(40,93,148,0.12);
  color: #fff;
}
section:first-of-type h1,
section:first-of-type p {
  color: #fff;
}

/* ICONS, SERVICES & FEATURE LISTS ---------------------- */
ul li img, .feature-item img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  margin-bottom: -7px;
  vertical-align: middle;
}
.service-price {
  font-size: 1rem;
  font-weight: 700;
  color: #F3A613;
  margin-top: 4px;
  display: inline-block;
}

/* TABLE STYLES (PRICING) ----------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #23273C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgba(40,93,148,0.10);
}
th, td {
  font-size: 1rem;
  padding: 14px 10px;
  text-align: left;
  border-bottom: 1px solid #202538;
}
th {
  background: #285D94;
  color: #fff;
}
tr:last-child td {
  border-bottom: none;
}
td {
  color: #e4e8ef;
}

/* FOOTER --------------------------------------------- */
footer {
  background: #23273C;
  padding: 28px 0 10px 0;
  color: #e4e8ef;
  font-size: 1rem;
  margin-top: 32px;
  border-top: 2.5px solid #285D94;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 34px;
  width: 100%;
  padding: 0;
}
footer nav {
  display: flex;
  gap: 22px;
  flex-direction: row;
}
footer nav a {
  color: #e4e8ef;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color .18s;
}
footer nav a:hover {
  color: #F3A613;
}
footer img {
  height: 40px;
}
footer .text-section {
  font-size: 0.98rem;
  color: #aeaec2;
  gap: 2px;
}

@media (max-width: 650px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  footer nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}

/* COOKIE CONSENT BANNER ----------------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #23273C;
  box-shadow: 0 -2px 20px rgba(40,93,148,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 3000;
  padding: 20px 24px;
  flex-wrap: wrap;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: transform 0.32s cubic-bezier(0.5,1.19,0.22,1);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  background: #285D94;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 7px 22px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s;
  margin-left: 0;
}
.cookie-consent-banner button:hover,
.cookie-consent-banner button:focus {
  background: #F3A613;
  color: #23273C;
}
.cookie-consent-banner button.cookie-settings {
  background: transparent;
  color: #F3A613;
  border: 1.2px solid #F3A613;
}
.cookie-consent-banner button.cookie-settings:hover {
  background: #285D94;
  color: #fff;
  border-color: #285D94;
}

@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 6px;
    font-size: 0.97rem;
  }
  .cookie-consent-banner .cookie-buttons {
    width: 100%;
    gap: 10px;
  }
}

/* COOKIE SETTINGS MODAL ------------------------- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 3100;
  background: #222d3a;
  color: #fff;
  border-radius: 16px;
  min-width: 90vw;
  max-width: 400px;
  min-height: 340px;
  transform: translate(-50%, -53%) scale(0.97);
  box-shadow: 0 10px 50px 0 rgba(40,93,148,0.23);
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 24px 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .30s cubic-bezier(.61,1,.41,1.12), transform .33s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  color: #F3A613;
  font-size: 1.28rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #F3A613;
  border-radius: 5px;
  margin-right: 2px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 11px;
  margin-top: 10px;
}
.cookie-modal button {
  min-width: 100px;
  padding: 9px 0px;
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  background: #285D94;
  color: #fff;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #F3A613;
  color: #23273C;
}
.cookie-modal button.cancel {
  background: transparent;
  color: #aeaec2;
  border: 1.2px solid #285D94;
}
.cookie-modal button.cancel:hover {
  background: #285D94;
  color: #fff;
}

/* DECORATIVE NEON GLOW --------------------------- */
.cta-btn, .card, .statistic-card, .testimonial-card {
  box-shadow: 0 0 0 0 rgba(243,166,19,0),0 2.5px 15px 0 rgba(40,93,148,.10);
}
.cta-btn:hover, .statistic-card:hover {
  box-shadow: 0 0 8px 0 #F3A61377;
}

/* NEON ACCENT / GLOW EFFECTS -------------------- */
h1, h2, h3 {
  text-shadow:
   0 2px 16px #F3A61322,
   0 0px 6px #285D9424;
}
.cta-btn, .cookie-consent-banner button {
  border: none;
  box-shadow: 0 0px 10px 0 #F3A61322;
}
.cta-btn:active, .cookie-consent-banner button:active {
  box-shadow: 0 0px 16px #F3A61344;
}

/* TRANSITIONS / MICROINTERACTIONS ---------------- */
a, .cta-btn, button, .card, .statistic-card, .testimonial-card {
  transition: background .18s, color .19s, box-shadow .21s, transform .16s;
}

/* RESPONSIVE FONT SIZES & SPACING ----------------- */
@media (max-width: 650px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.1rem; }
  section, .section { padding: 16px 3px; }
  .statistic-card { min-width: 120px; padding: 18px 10px 8px 10px; }
}

/* ADDITIONAL PADDING BETWEEN CARDS/SECTIONS ------- */
section + section,
.section + .section,
.card + .card,
.statistic-card + .statistic-card,
.content-wrapper > * + * {
  margin-top: 22px !important;
}

/* MISC: OL/UL INSIDE CONTENT SECTIONS ------------- */
ol {
  padding-left: 16px;
  counter-reset: techno-cntr;
}
ol > li {
  margin-bottom: 13px;
  position: relative;
  padding-left: 32px;
  color: #e4e8ef;
  font-size: 1rem;
}
ol > li:before {
  counter-increment: techno-cntr;
  content: counter(techno-cntr) '\002E';
  position: absolute;
  left: 0;
  top: 0;
  color: #F3A613;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
}

.section ul, .section ol {
  margin-left: 5px;
}
.section ul li,
.section ol li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #e4e8ef;
}

/* BLOG LISTING -------------------------------------- */
.blog-list, .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.blog-list h3 {
  color: #F3A613;
  font-size: 1.18rem;
  margin-bottom: 8px;
}

/* ADAPTIVE IMAGES ---------------------------------- */
img, svg {
  vertical-align: middle;
}

/* Hide visually */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* SCROLLBAR THEME ----------------------------------- */
::-webkit-scrollbar {
  width: 12px;
  background: #222d3a;
}
::-webkit-scrollbar-thumb {
  background: #285D94;
  border-radius: 6px;
}

/* Accessibility link focus --------------------- */
a:focus, button:focus, .cta-btn:focus {
  outline: 2.5px solid #F3A613;
  outline-offset: 2.5px;
}

/* HIDE OUTLINES ON MOUSE, SHOW W/ KEYBOARD */
body:not(.user-is-tabbing) a:focus,
body:not(.user-is-tabbing) button:focus {
  outline: none;
}

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

/* NEON HOVER FOR ICONS */
ul li img:hover, .feature-item img:hover {
  filter: drop-shadow(0 2px 8px #F3A61399);
}
