/* ===============================
   CSS RESET & BASE 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #232842;
  color: #F1F2F6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
a {
  color: #7ffcde;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2bffb2;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
}

/* ===============================
   FONTS IMPORT – GOOGLE FONTS
   =============================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #F1F2F6;
}
h1 { font-size: 2.25rem; margin-bottom: 18px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.125rem; margin-bottom: 10px; }
p, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #d7dee8;
}
strong { color: #fff; font-weight: bold; }

@media (min-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }
  p, li { font-size: 1.125rem; }
}

.subheadline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  color: #7ffcde;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 28px;
}

/* ===============================
   COLOR & EFFECTS UTILITIES
   =============================== */
:root {
  --primary: #2C3A47;
  --secondary: #758E4F;
  --accent: #F1F2F6;
  --neon1: #00FFEA;
  --neon2: #00FCA6;
  --dark1: #232842;
  --dark2: #141926;
  --text: #F1F2F6;
  --card-bg: #232942;
  --card-border: #464c63;
  --shadow: 0 6px 24px 0 rgba(60, 255, 232, 0.11);
  --radius: 18px;
}

.neon-text {
  color: var(--neon1);
  text-shadow: 0 0 6px var(--neon1), 0 0 16px var(--neon1), 0 0 30px var(--neon2);
}
.neon-border {
  box-shadow: 0 0 0 3px var(--neon1);
}

/* ===============================
   CONTAINER & LAYOUT FLEXBOX
   =============================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(34,38,72,0.66);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===============================
   HEADER / NAVIGATION
   =============================== */
header {
  background: linear-gradient(90deg, var(--dark2) 0%, var(--primary) 100%);
  border-bottom: 2px solid var(--secondary);
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  height: 56px;
  z-index: 110;
}
.logo img { height: 40px; }

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #CAE0E1;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 7px 0 7px 0;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: all 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--neon1);
  border-bottom: 2px solid var(--neon1);
}
.cta-btn {
  background: var(--secondary);
  color: var(--dark1);
  border-radius: 50px;
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.07rem;
  margin-left: 16px;
  box-shadow: 0 0 0 0 var(--neon1), 0 3px 11px 0 rgba(60,255,232,0.13);
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  border: none;
  position: relative;
}
.cta-btn:hover,.cta-btn:focus {
  background: var(--neon2);
  color: var(--dark2);
  box-shadow: 0 0 0 4px var(--neon2), 0 6px 20px 0 rgba(60,255,232,0.16);
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: #7ffcde;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-left: 18px;
  z-index: 120;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(60,255,232,0.08);
  color: var(--neon2);
}
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Hide Nav On Mobile */
.main-nav {
  display: none;
}
@media (min-width: 1024px) {
  .main-nav { display: flex; }
}

/* ===============================
   MOBILE MENU OVERLAY
   =============================== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(22,28,44,0.98);
  z-index: 19998;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transform: translateX(100%);
  transition: transform 0.39s cubic-bezier(0.66,0,0.17,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--neon1);
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 26px 24px 14px 0;
  padding: 0 8px;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  background: rgba(60,255,232,0.10);
  color: var(--neon2);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 18px 36px 36px 36px;
}
.mobile-nav a {
  color: #F1F2F6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid rgba(60,255,232,0.08);
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--neon1);
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

/* ===============================
   HERO SECTION
   =============================== */
.hero {
  background: linear-gradient(120deg, #223057 0%, #6ebf8b 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0 36px 0;
  box-shadow: 0 9px 18px -10px #38564088;
  border-bottom: 1px solid #384B46;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 768px) {
  .hero .container { align-items: center; }
}
.hero h1 {
  color: #F1F2F6;
  text-shadow: 0 2px 18px #21c4b0aa;
  margin-bottom: 17px;
}
.hero .cta-btn {
  margin: 0;
  margin-top: 12px;
}

/* ===============================
   FEATURES – CARDS GRID FLEXBOX
   =============================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 12px;
}
.feature-grid > div {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 22px 26px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.11s, box-shadow 0.15s, border-color 0.18s;
  gap: 11px;
  margin-bottom: 20px;
}
.feature-grid > div:hover,
.feature-grid > div:focus {
  border-color: var(--neon1);
  box-shadow: 0 8px 36px 0 rgba(60,255,232,0.13), 0 0 0 3px var(--neon2);
  transform: translateY(-6px) scale(1.018);
  z-index: 2;
}
.feature-grid img {
  width: 42px;
  display: block;
  margin-bottom: 5px;
  filter: drop-shadow(0 0 8px #3affa3cc);
}
.feature-grid h3 {
  color: var(--neon1);
  font-size: 1.23rem;
  margin-bottom: 4px;
}

@media (max-width: 767px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===============================
   SECTION AND CARD SPACING
   =============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  transition: box-shadow 0.18s, border-color 0.17s;
}
.card:hover, .card:focus {
  border-color: var(--neon1);
  box-shadow: 0 10px 40px 0 rgba(60,255,232,0.13), 0 0 0 3px var(--neon2);
}
.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 {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

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

/* ===============================
   PROJECTS & STATS
   =============================== */
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.project-list > div {
  flex: 1 1 260px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 20px 18px;
  min-width: 220px;
  margin-bottom: 20px;
}
.project-stats ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.project-stats li {
  background: #20274c;
  border: 1px solid var(--secondary);
  color: var(--neon2);
  border-radius: 20px;
  padding: 12px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .project-list {
    flex-direction: column;
    gap: 16px;
  }
  .project-stats ul { flex-direction: column; gap: 14px; }
}

/* ===============================
   TIMELINE
   =============================== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: timeline;
  margin-bottom: 28px;
}
.timeline li {
  position: relative;
  padding-left: 32px;
}
.timeline li:before {
  content: counter(timeline);
  counter-increment: timeline;
  position: absolute;
  left: 0;
  top: 0.2em;
  font-size: 1.1em;
  color: var(--neon1);
  background: #233a47;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 1.8em;
  box-shadow: 0 0 0 2px var(--neon1);
}
.timeline-visual { margin: 24px 0 14px 0; display: flex; justify-content: center; }

/* ===============================
   TESTIMONIAL CARDS
   =============================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F1F2F6;
  color: #232842;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 6px 24px 0 rgba(44,58,71,0.12);
  border-left: 4px solid var(--neon1);
  font-size: 1.04rem;
}
.testimonial-card strong { color: #348266; font-weight: bold; font-family: 'Montserrat', Arial, Helvetica, sans-serif; }
.testimonial-card p { color: #232842; margin-bottom: 6px; }
@media (min-width: 768px) {
  .testimonial-card {
    padding: 26px 36px;
    font-size: 1.18rem;
  }
}

/* ===============================
   FAQ
   =============================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.faq-list h3 {
  color: var(--neon1);
  margin-bottom: 7px;
}
.faq-list p {
  color: #d7dee8;
  margin-bottom: 0;
}
.contact-cta {
  margin-top: 22px;
  font-size: 1.1rem;
}
.contact-cta a {
  color: var(--neon2);
  font-weight: bold;
}

/* ===============================
   MAP & CONTACT BLOCK
   =============================== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.map-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  background: #232942;
  border-radius: 16px;
  padding: 12px 0 18px 0;
}
.cta-block {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}
.confirmation-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  background: #263a4e;
  border: 1px solid var(--neon1);
  border-radius: 16px;
  padding: 26px 28px;
  margin: 10px 0;
  box-shadow: 0 3px 16px 0 rgba(60,255,232,0.10);
}
.confirmation-message {
  color: var(--neon1);
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: linear-gradient(90deg, #253049 0%, #47593A 100%);
  color: #F1F2F6;
  padding: 44px 0 32px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1.5px solid #758E4F44;
}
.footer-brand {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand img { height: 32px; margin-bottom: 8px; }
.footer-brand p { color: #b6d6c0; font-size: 0.95rem; }
.footer-nav {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #F1F2F6;
  opacity: 0.88;
  text-decoration: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--neon1);
  opacity: 1;
}
.footer-contact {
  flex: 2 1 300px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #B0B8C5;
  font-size: 0.99rem;
}
.footer-contact img { vertical-align: middle; height: 1em; margin-right: 6px; }
@media (max-width: 1024px) {
  footer .container { flex-direction: column; gap: 24px; align-items: flex-start; }
}
@media (max-width: 600px) {
  footer { padding: 31px 0 21px 0; }
  footer .container { gap: 16px; }
}

/* ===============================
   BUTTONS AND FORMS
   =============================== */
button, .cta-btn {
  transition: background 0.17s, color 0.17s, box-shadow 0.18s;
  outline: none;
}
button:active, .cta-btn:active {
  filter: brightness(0.96) saturate(114%);
  box-shadow: 0 1px 8px 0 var(--neon2), 0 2px 12px 0 rgba(44,58,71,0.10);
}

/* ===============================
   COOKIE CONSENT BANNER & MODAL
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 39999;
  background: linear-gradient(90deg, #101523 30%, #253049 100%);
  color: #F1F2F6;
  box-shadow: 0 -4px 32px 0 rgba(60,255,232,0.08);
  padding: 22px 14px 21px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: slideInBanner 0.55s cubic-bezier(.77,.26,.44,1.08);
}
@keyframes slideInBanner {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  font-size: 1.01rem;
  text-align: center;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn {
  background: var(--secondary);
  color: #1b2233;
  border-radius: 32px;
  padding: 9px 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  border: none;
  margin: 0 2px;
  margin-top: 2px;
  transition: box-shadow 0.19s, background 0.16s, color 0.16s;
}
.cookie-btn.accept {
  background: var(--neon2);
  color: #1e222f;
}
.cookie-btn.reject {
  background: #232942;
  color: #F1F2F6;
  border: 1.6px solid var(--neon2);
}
.cookie-btn.settings {
  background: #1b2233;
  color: #F1F2F6;
  border: 1.2px solid var(--secondary);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--neon1);
  color: #121424;
  box-shadow: 0 0 0 2.5px var(--neon1);
}

/* COOKIE BANNER RESPONSIVE */
@media (max-width: 575px) {
  .cookie-banner {
    padding: 12px 2vw 13px 2vw;
    gap: 12px;
  }
}

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(23,28,44,0.88);
  z-index: 40001;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: modalIn 0.38s cubic-bezier(0.56,.2,.31,1.06);
}
@keyframes modalIn {
  0% { opacity: 0; transform: scale(0.91); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-content {
  background: linear-gradient(118deg, #232943 72%, #2c3a47 100%);
  color: #F1F2F6;
  border-radius: 18px;
  box-shadow: 0 8px 46px 0 rgba(60,255,232,0.17), 0 0 0 3px var(--neon2);
  padding: 36px 26px 28px 26px;
  min-width: 270px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 17px;
  font-size: 1.8rem;
  color: var(--neon2);
  background: none;
  border: none;
  z-index: 8;
  padding: 3px 7px;
  border-radius: 50%;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: rgba(60,255,232,0.12); color: #fff; }

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px 0 8px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid #3affa333;
}
.cookie-category:first-child {
  border-top: 1px solid #3affa333;
}
.cookie-switch {
  position: relative;
  width: 42px;
  height: 23px;
}
.cookie-switch input[type=checkbox] {
  opacity: 0;
  width: 42px;
  height: 23px;
  position: absolute;
  left: 0; top: 0;
  z-index: 1;
}
.cookie-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #263a4e;
  border-radius: 21px;
  border: 1.5px solid var(--neon2);
  transition: background 0.19s;
}
.cookie-switch input:checked + .slider {
  background: var(--neon1);
}
.cookie-switch .slider:before {
  content: '';
  position: absolute;
  left: 3.5px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #F1F2F6;
  transition: transform 0.19s;
}
.cookie-switch input:checked + .slider:before {
  transform: translateX(16px);
  background: #223a3a;
}

.cookie-category .locked {
  color: #7ffcde;
  font-size: 1.12em;
  margin-left: 3px;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}

@media (max-width: 575px) {
  .cookie-modal-content {
    padding: 18px 6vw 19px 6vw;
    min-width: 90vw;
    gap: 19px;
  }
}

/* ===============================
   ANIMATIONS
   =============================== */
.cta-btn, .cookie-btn {
  transition: box-shadow 0.22s cubic-bezier(.41,.6, .41,1), background 0.22s, color 0.19s;
}
.feature-grid > div, .card, .project-list > div {
  transition: transform 0.13s, box-shadow 0.18s, border-color 0.18s;
}
.project-list > div:hover, .project-list > div:focus {
  box-shadow: 0 8px 44px 0 rgba(44,255,232,0.11), 0 0 0 3px var(--neon2);
  border-color: var(--neon1);
  transform: scale(1.015) translateY(-5px);
  z-index: 2;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 1080px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .feature-grid, .project-list, .card-container, .content-grid { gap: 14px; }
  .section { padding: 30px 9px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1.1rem; }
  .feature-grid, .project-list, .card-container, .content-grid { gap: 9px; }
  .section, .text-section { margin-bottom: 32px; padding: 21px 5px; }
  .footer-contact { font-size: 0.94rem; }
  .footer-brand p { font-size: 0.89rem; }
}
@media (max-width: 468px) {
  .container { padding: 0 6px; }
  .cta-btn, .cookie-btn { font-size: 0.97rem; padding: 9px 16px; }
}

/* ===============================
   MISC (PROCESS ICONS & OL STYLES)
   =============================== */
.process-icons {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 570px) {
  .process-icons { flex-wrap: wrap; gap: 9px; }
}

ol {
  counter-reset: number;
  padding-left: 0px!important;
  margin-left: 0!important;
}
ol li {
  counter-increment: number;
  margin-bottom: 12px;
  padding-left: 36px;
  position: relative;
}
ol li:before {
  content: counter(number) '.';
  position: absolute;
  left: 0;
  color: var(--neon1);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08em;
  font-weight: 700;
}

/* ===============================
   ACCESSIBILITY
   =============================== */
:focus-visible {
  outline: 2px solid var(--neon1);
  outline-offset: 1.5px;
}

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