/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #191C25;
  color: #E9ECEF;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #F7B32B;
  margin-bottom: 16px;
  line-height: 1.25;
}
h1 {font-size: 2.5rem; margin-bottom: 24px; letter-spacing: 1px;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.25rem; color: #40E0FF; margin-bottom: 12px;}
h4, h5, h6 {font-size: 1rem; color: #F7B32B;}
p, li, ul, ol, a, button {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #E9ECEF;
}
a {
  color: #40E0FF;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7B32B;
  outline: none;
}
ul, ol {list-style-position: inside; margin-bottom: 16px;}
strong {color: #F7B32B;}
img {max-width: 100%; height: auto; display: block;}

/* LAYOUT CONTAINERS (FLEXBOX ONLY!) */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* BRAND GRADIENT STYLE + TECH FUTURISTIC */
body, main {
  background: linear-gradient(130deg, #191C25 0%, #26547C 60%, #10131a 100%);
}
.hero {
  background: linear-gradient(135deg, #26547C 0%, #408cff 60%, #222639 100%);
  padding: 60px 0 40px 0;
  margin-bottom: 0 !important;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 4px 24px rgba(64,224,255,0.15);
  font-size: 2.3rem;
}
.hero .subheadline {
  color: #F7B32B;
  font-size: 1.35rem;
  margin-bottom: 28px;
  font-weight: 500;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 28px;
  padding: 14px 32px;
  margin-top: 12px;
  letter-spacing: 1.2px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.18s, color 0.2s;
  box-shadow: 0 2px 8px 0 rgba(64,224,255,0.09), 0 1.5px 5px 0 rgba(39,65,255,0.05);
}
.btn-primary {
  background: #40E0FF;
  color: #191C25;
  border: 1.5px solid #31c4e6;
}
.btn-primary:hover, .btn-primary:focus {
  background: #222639;
  color: #40E0FF;
  border-color: #40E0FF;
  box-shadow: 0 4px 20px 0 #31c4e698;
}
.btn-secondary {
  background: #F7B32B;
  color: #191C25;
  border: 1.5px solid #e0a018;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #fff;
  color: #F7B32B;
  border-color: #F7B32B;
  box-shadow: 0 4px 18px #f7b32b60;
}

@media (max-width: 425px) {
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 1rem; }
}

/* MAIN NAVIGATION */
header {
  background: #191C25;
  box-shadow: 0 2px 18px 0 #10131a40;
  z-index: 50;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px #40E0FF40);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #E9ECEF;
  font-size: 1.06rem;
  padding: 8px 0;
  position: relative;
}
.main-nav a:not(.btn-primary):after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 0;
  height: 2px;
  background: #40E0FF;
  border-radius: 2px;
  transition: width 0.2s;
}
.main-nav a:not(.btn-primary):hover:after {
  width: 80%;
}
.main-nav .btn-primary {
  margin-left: 12px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #40E0FF;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 102;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #222639;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 38, 57, 0.96);
  z-index: 110;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: auto;
  transition: transform 0.26s cubic-bezier(.42,0,.5,1), opacity 0.24s;
  opacity: 0;
  transform: translateX(100%);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #F7B32B;
  font-size: 2.5rem;
  margin: 18px 20px 0 0;
  cursor: pointer;
  z-index: 112;
  transition: color 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #40E0FF; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  margin-top: 40px;
  padding: 24px 32px;
  box-sizing: border-box;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #40E0FF;
  font-size: 1.25rem;
  padding: 12px 0;
  border-bottom: 1px solid #2f385a50;
  transition: color 0.2s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus { color: #F7B32B; }

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* UTILITIES (FLEXBOX SPACING) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #23273A;
  border-radius: 18px;
  box-shadow: 0 4px 36px 0 #10131a1c;
  padding: 26px 32px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 6px 48px 0 #40E0FF50;
  transform: translateY(-4px) scale(1.017);
}
.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;
  padding: 20px;
  background: #fafafe;
  border-radius: 14px;
  box-shadow: 0 4px 18px #1d224040;
  margin-bottom: 20px;
  color: #222639;
  min-width: 260px;
  max-width: 100%;
  border-left: 4px solid #40E0FF;
  transition: box-shadow 0.18s, border-left 0.17s;
}
.testimonial-card:hover {
  border-left: 6px solid #F7B32B;
  box-shadow: 0 6px 26px #26547c22;
}
.testimonial-card p {
  color: #23273A;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.testimonial-meta {
  font-size: 0.99rem;
  color: #222639;
  font-weight: 500;
}
.testimonial-name { color: #26547C; font-weight: 700; }
.star-rating { color: #F7B32B; font-size: 1.23rem; }

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #222639;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px #26547c11;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 340px;
  transition: box-shadow 0.18s, border 0.18s;
  margin-bottom: 20px;
  border-left: 4px solid #40E0FF;
}
.feature-item:hover {
  border-left: 6px solid #F7B32B;
  box-shadow: 0 8px 28px #191C2540;
}
.feature-item img {
  height: 48px;
  width: 48px;
  filter: drop-shadow(0 4px 20px #40E0FF40);
}
.feature-item h3 {
  font-size: 1.15rem;
  color: #F7B32B;
  margin-bottom: 4px;
}
.feature-item p {
  color: #E9ECEF;
  font-size: 1rem;
  margin-bottom: 0;
}

/* CUSTOM FLEX GRIDS */
.feature-grid, .testimonial-grid, .articles-list, .step-overview, .project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid {justify-content: flex-start;}
.testimonial-grid {justify-content: flex-start;}
.articles-list {justify-content: flex-start;}
.step-overview {justify-content: flex-start;}
.project-list {justify-content: flex-start;}

/* SERVICE / BENEFITS LISTS */
.service-list-short {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.service-list-short li {
  background: #222639;
  border-radius: 12px;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #E9ECEF;
  font-weight: 500;
  margin-bottom: 10px;
}
.service-list-short img {
  width: 32px; height: 32px;
}
.service-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.service-categories li {
  background: #20243d;
  border-radius: 10px;
  padding: 20px 16px 18px 16px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 16px #191C2512;
  border-left: 4px solid #26547C;
  transition: border-left 0.17s, box-shadow 0.16s;
}
.service-categories li:hover {
  border-left: 6px solid #40E0FF;
  box-shadow: 0 6px 22px #26547c1c;
}
.service-categories img { height: 36px; width: 36px; }
.service-categories strong { font-size: 1.07rem; margin-bottom: 2px; }
.service-categories p { font-size: 0.98rem; margin: 0; }
.service-benefits {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-direction: row;
  margin-bottom: 10px;
}
.service-benefits li {
  background: #23273A;
  padding: 14px 18px;
  border-radius: 9px;
  color: #E9ECEF;
  font-size: 1rem;
  margin-bottom: 8px;
}

/* ARTICLE CATEGORIES, FAQ, ETC */
.article-categories {
  display: flex;
  gap: 12px;
  margin: 16px 0 20px 0;
  flex-wrap: wrap;
}
.category {
  background: #222639;
  color: #40E0FF;
  border-radius: 12px;
  padding: 5px 15px;
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}
.article-preview {
  background: #23273A;
  border-radius: 12px;
  padding: 20px 20px 16px 20px;
  box-shadow: 0 2px 15px #26547c18;
  flex: 1 1 300px;
  min-width: 220px;
  margin-bottom: 16px;
  transition: box-shadow 0.17s;
}
.article-preview:hover {
  box-shadow: 0 6px 28px #31c4e630;
}
.featured-article {
  background: #26547C;
  color: #fff;
  border-radius: 12px;
  padding: 19px 24px;
  box-shadow: 0 2px 13px #40E0FF25;
  margin-top: 20px;
}
.faq-list {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-list li {
  background: #20243d;
  border-radius: 9px;
  padding: 15px 19px;
  color: #E9ECEF;
}

/* PROJECTS / STEPS / ETC */
.process-step {
  background: #23273A;
  border-radius: 11px;
  padding: 18px 16px;
  flex: 1 1 210px;
  min-width: 170px;
  box-shadow: 0 2px 12px #40E0FF16;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process-step img { width: 48px; height: 48px; }
.process-step h3 { color: #F7B32B; font-size: 1rem;}
.process-step p { font-size: 0.97rem; color: #E9ECEF;}
.project-summary {
  background: #20243d;
  padding: 19px 17px;
  border-radius: 9px;
  color: #E9ECEF;
  margin-bottom: 14px;
  min-width: 220px;
  box-shadow: 0 2px 11px #26547c15;
  flex: 1 1 270px;
}
.project-summary strong { color: #40E0FF; font-size: 1.1rem; }
.project-summary em { color: #F7B32B; }

/* CONTACT CARD ETC */
.contact-short {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin: 18px 0 0 0;
  font-size: 1.05rem;
  color: #40E0FF;
}
.contact-short img {
  margin-right: 4px;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.contact-details, .contact-direct-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}
.contact-details li, .contact-direct-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: #E9ECEF;
}
.map-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #23273A;
  border-radius: 10px;
  padding: 8px 14px;
  color: #40E0FF;
  font-size: .97rem;
  margin-top: 10px;
}
.map-preview img { width: 28px; height: 28px; }

/* NEXT STEPS/DONE INFO */
.next-steps-info {
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #F7B32B;
}
.confirmation-message { color: #40E0FF; }

/* FOOTER */
footer {
  background: #20243d;
  color: #E9ECEF;
  padding: 0 0 0 0;
}
footer .container {
  padding: 36px 20px 0 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-navigation a {
  color: #40E0FF;
  font-size: 0.97rem;
  transition: color 0.17s;
}
.footer-navigation a:hover, .footer-navigation a:focus { color: #F7B32B; }
.footer-contact-details p, .footer-contact-details a {
  color: #E9ECEF;
  font-size: 0.98rem;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a img {
  filter: brightness(1.2) drop-shadow(0 2px 6px #26547c60);
  width: 32px; height: 32px;
  transition: filter 0.19s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: drop-shadow(0 2px 16px #40E0FF70) brightness(1.5);
}
.footer-copy {
  text-align: center;
  color: #F7B32B;
  padding: 16px 0 22px 0;
  font-size: 0.98rem;
}

/* COOKIES CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #23273A;
  color: #E9ECEF;
  box-shadow: 0 -2px 24px #191C2570;
  z-index: 1998;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: center;
  padding: 20px 18px 18px 18px;
  animation: fadeIn 0.5s;
}
.cookie-banner .cookie-msg {
  flex: 1 1 auto;
  font-size: 1.07rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 22px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  background: #40E0FF;
  color: #191C25;
  transition: background 0.15s, color 0.15s;
  margin-left: 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #26547C;
  color: #40E0FF;
  outline: none;
}
.cookie-btn-reject {
  background: #23273A;
  color: #F7B32B;
  border: 1.5px solid #F7B32B;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #F7B32B;
  color: #23273A;
}
.cookie-btn-settings {
  background: #20243d;
  color: #40E0FF;
  border: 1.5px solid #40E0FF;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #40E0FF;
  color: #191C25;
}

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; gap: 17px; align-items: flex-start; }
  .cookie-banner .cookie-btns { width: 100%; justify-content: flex-start; }
  .cookie-banner .cookie-msg { font-size: 0.98rem; }
}

.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,38,57,0.91);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: fadeIn 0.3s;
}
.cookie-modal-content {
  background: #23273A;
  color: #E9ECEF;
  border-radius: 14px;
  box-shadow: 0 6px 38px #191C25dd;
  min-width: 320px;
  max-width: 96vw;
  padding: 34px 26px 24px 26px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #F7B32B;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.cookie-modal-content .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-cat .toggle {
  width: 36px; height: 20px;
  border-radius: 10px;
  background: #191C25;
  border: 1.5px solid #40E0FF;
  position: relative;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}
.cookie-cat .toggle.checked { background: #40E0FF; border-color: #26547C; }
.cookie-cat .toggle::after {
  content: "";
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #F7B32B;
  transition: left 0.2s;
}
.cookie-cat .toggle.checked::after {
  left: 18px;
  background: #191C25;
}
.cookie-modal-close {
  position: absolute;
  right: 14px; top: 10px;
  background: transparent;
  color: #F7B32B;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #40E0FF; }

/* TRANSITIONS & MICRO-ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
section, .card, .feature-item, .testimonial-card {
  animation: fadeIn 0.8s cubic-bezier(.5,0,.5,1);
}
.card, .feature-item, .testimonial-card, .article-preview, .project-summary, .process-step {
  transition: box-shadow 0.18s, transform 0.19s, border 0.18s, border-left 0.18s;
}

/* RESPONSIVE MODE (Mobile First) */
@media (max-width: 1100px) {
  .footer-nav { flex-direction: column; gap: 16px; }
  .footer-contact-details, .footer-navigation, .footer-social { width: 100%; }
}
@media (max-width: 980px) {
  .container { max-width: 100%; }
  .feature-grid, .testimonial-grid, .articles-list, .step-overview, .project-list {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .section { padding: 28px 10px; margin-bottom: 40px; }
  .container { padding: 0 8.5px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero { padding: 35px 0 24px 0; }
  .feature-item, .testimonial-card, .card, .article-preview, .project-summary, .process-step {
    min-width: unset; max-width: unset;
    padding: 16px 14px;
  }
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
  .content-grid { flex-direction: column; gap: 16px; }
  .footer-social a img { width: 28px; height: 28px; }
}
@media (max-width: 580px) {
  .content-wrapper { gap: 12px; }
  .section { padding: 16px 3px; margin-bottom: 24px; }
  .footer-copy { font-size: 0.9rem; padding: 11px 0 12px 0; }
}
/* Extra for small hero text */
@media (max-width: 440px) { .hero h1 { font-size: 1.18rem; } }

/* MISC CLEANUPS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #E9ECEF;
}
.intro-text { color: #40E0FF; font-weight: 400; margin-bottom: 10px; }

/* Accessibility/highlight for focus-visible */
a:focus-visible, button:focus-visible { outline: 2px solid #40E0FF; outline-offset: 2px; }

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

/* END OF STYLE */
