/* 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #131824;
  color: #F9EDDC;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #5CB686;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, .main-nav a.active {
  color: #F9EDDC;
}
ul, ol {
  list-style: none;
}
img {
  border: none;
  max-width: 100%;
  display: block;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.17rem;
  margin-bottom: 10px;
}
p, ul, ol, li {
  font-size: 1rem;
}
.subheadline {
  font-size: 1.25rem;
  color: #F9EDDC;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.7;
}
strong, b {
  color: #F9EDDC;
  font-weight: 700;
}

/* LAYOUT UTILITIES */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #172035;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(23,80,165,0.1), 0 1.5px 8px 0 rgba(92,182,134,0.10);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: box-shadow 0.25s, border-color 0.2s;
  border: 1.5px solid transparent;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(92,182,134,0.30);
  border-color: #5CB686;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.content-grid, .feature-grid, .service-list {
  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;
  background: #fff;
  color: #151C22;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(21,73,115,0.10);
  transition: box-shadow 0.2s, border-color 0.2s;
  border: 1.5px solid #5CB686;
  position: relative;
}
.testimonial-card .text-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.testimonial-card strong {
  color: #154973;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  padding: 64px 0 48px 0;
  background: linear-gradient(120deg, #154973 0%, #182844 100%);
  box-shadow: 0 2px 16px 0 rgba(21,73,115,0.12);
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 18px;
}
.hero h1 {
  color: #F9EDDC;
}
.hero .cta-primary {
  margin-top: 10px;
}

/* MAIN NAVIGATION */
header {
  width: 100%;
  background: #131824;
  box-shadow: 0 2px 12px 0 rgba(23,80,165,0.08);
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 24px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: #F9EDDC;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.2s;
  padding: 5px 0;
}
.main-nav a.cta-primary {
  padding: 8px 20px;
  background: #5CB686;
  color: #131824;
  border-radius: 32px;
  font-weight: 700;
  margin-left: 8px;
  box-shadow: 0 2px 12px 0 rgba(92,182,134,0.10);
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a.cta-primary:hover {
  background: #154973;
  color: #F9EDDC;
  box-shadow: 0 2px 12px 0 rgba(21,73,115,0.22);
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #5CB686;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  z-index: 101;
  padding: 10px 10px;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover {
  color: #F9EDDC;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: #131824;
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 330px;
  height: 100vh;
  z-index: 999;
  transform: translateX(105%);
  box-shadow: -3px 0 32px 0 rgba(21,73,115,0.28);
  transition: transform 0.35s cubic-bezier(.45,.09,.39,1.26);
  padding: 32px 28px 20px 28px;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #5CB686;
  font-size: 2rem;
  position: absolute;
  top: 28px;
  right: 28px;
  cursor: pointer;
  z-index: 1202;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 48px;
}
.mobile-nav a {
  color: #F9EDDC;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 8px 0 8px 4px;
  border-radius: 7px;
  width: 100%;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover {
  background: #182844;
  color: #5CB686;
}
/* Hide desktop nav & show burger on mobile */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* CTA PRIMARY BUTTONS */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 34px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #131824;
  background: #5CB686;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 14px 0 rgba(92,182,134,0.15);
  margin-top: 14px;
  cursor: pointer;
  transition: background 0.25s, color 0.2s, box-shadow 0.25s, transform 0.12s;
  position: relative;
  text-decoration: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #154973;
  color: #F9EDDC;
  box-shadow: 0 6px 32px 0 rgba(21,73,115,0.18);
  transform: translateY(-2.5px) scale(1.04);
}

/* FEATURE GRID, SERVICE LISTS */
.feature-grid,
.service-list {
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
  align-items: stretch;
}
.feature-grid>li,
.service-list>li {
  background: #172035;
  border-radius: 14px;
  box-shadow: 0 1.5px 7px 0 rgba(21,73,115,0.08);
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.22s, border-color 0.16s;
  border: 1.5px solid transparent;
}
.feature-grid>li:hover, .service-list>li:hover {
  box-shadow: 0 6px 23px 0 rgba(92,182,134,0.18);
  border-color: #5CB686;
}
.feature-grid img, .service-list img {
  width: 42px;
  height: 42px;
  margin-right: 8px;
  filter: drop-shadow(0 0 9px #5CB68642);
}
.text-section h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #5CB686;
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.text-section p {
  color: #F9EDDC;
  margin-bottom: 0;
  font-size: 1rem;
}
.service-price {
  color: #5CB686;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 8px;
  display: inline-block;
}

/* CONTACT INFO */
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  color: #F9EDDC;
}
.contact-info strong {
  color: #5CB686;
}

/* FOOTER */
footer {
  background: #172035;
  border-top: 2.5px solid #5CB686;
  margin-top: 62px;
  color: #F9EDDC;
  font-size: 1rem;
  padding: 32px 0;
}
footer .container {
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #5CB686;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.footer-brand img {
  height: 40px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
.footer-nav a {
  color: #F9EDDC;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.2s;
  padding: 2px 0;
}
.footer-nav a:hover {
  color: #5CB686;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.97rem;
  color: #C7EFCA;
}

/* COOKIES BANNER */
.cookie-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #172035;
  color: #F9EDDC;
  z-index: 3000;
  padding: 18px 20px 16px 28px;
  box-shadow: 0 -2px 24px 0 rgba(21,73,115,0.08);
  border-top: 2px solid #5CB686;
  transition: transform 0.35s, opacity 0.33s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  margin-right: 24px;
  flex: 1;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  border: none;
  border-radius: 28px;
  padding: 8px 25px;
  background: #5CB686;
  color: #131824;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: background 0.22s, color 0.18s;
  margin-left: 0;
}
.cookie-btn.rej {
  background: #F9EDDC;
  color: #154973;
  font-weight: 600;
}
.cookie-btn.settings {
  background: #154973;
  color: #F9EDDC;
  border: 1.2px solid #5CB686;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #182844;
  color: #5CB686;
}
/* COOKIES PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 3999;
  background: rgba(21,73,115,0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.30s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #131824;
  border-radius: 18px;
  box-shadow: 0 6px 44px 0 rgba(21,73,115,0.20);
  padding: 36px 32px 28px 32px;
  min-width: 340px;
  max-width: 95vw;
  color: #F9EDDC;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal .modal-title {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #5CB686;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.cookie-modal .category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 7px;
}
.cookie-modal .category-label {
  flex: 1;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 24px;
  border-radius: 15px;
  background: #5CB686;
  position: relative;
  outline: none;
  margin-right: 2px;
  transition: background 0.15s;
}
.cookie-toggle:checked {
  background: #154973;
}
.cookie-toggle:disabled {
  background: #5CB68655;
  cursor: not-allowed;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.15s, background 0.25s;
}
.cookie-toggle:checked::before {
  left: 19px;
  background: #5CB686;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  color: #F9EDDC;
  font-size: 1.15rem;
  cursor: pointer;
  opacity: 0.77;
}
.cookie-modal .close-modal:hover {
  color: #5CB686;
  opacity: 1;
}

/* ANIMATIONS/MICRO-INTERACTIONS */
.cta-primary,
.card,
.feature-grid>li,
.service-list>li,
.testimonial-card,
.cookie-btn,
.mobile-nav a {
  transition: background 0.25s, color 0.2s, box-shadow 0.2s, transform 0.14s;
}
.card:hover, .feature-grid>li:hover, .service-list>li:hover  {
  transform: translateY(-2px) scale(1.018);
  z-index: 2;
}
.testimonial-card:hover {
  box-shadow: 0 5px 22px 0 rgba(92,182,134,0.10);
  border-color: #154973;
  transform: scale(1.022);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 99vw;
    gap: 20px;
  }
  footer .container {
    flex-direction: column;
    gap: 17px;
  }
  .footer-brand {
    margin-bottom: 7px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 38px;
    padding: 24px 6px;
  }
  .content-grid, .feature-grid, .service-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-grid>li, .service-list>li {
    flex: 1 1 100%;
    margin-bottom: 14px;
    padding: 18px 12px 12px 15px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 11px 15px 13px;
    font-size: 0.98rem;
  }
  .card-container {
    gap: 16px;
  }
  .hero {
    padding: 36px 0 22px 0;
  }
  h1 {
    font-size: 1.54rem;
    margin-bottom: 13px;
  }
  h2 {
    font-size: 1.18rem;
    margin-bottom: 11px;
  }
  .cta-primary {
    padding: 10px 18px;
    font-size: 0.98rem;
  }
}
@media (max-width: 540px) {
  .hero {
    padding: 22px 0 14px 0;
  }
  .main-nav {
    gap: 8px;
  }
  h1, h2 {
    font-size: 1.08rem;
  }
}
@media (max-width: 420px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 12px 8px;
    gap: 10px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}

/* SCROLLBAR CUSTOMIZATION */
::-webkit-scrollbar {
  width: 10px;
  background: #131824;
}
::-webkit-scrollbar-thumb {
  background: #232849;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #5CB68688;
}

/* FOCUS STATES */
a:focus, button:focus, .cta-primary:focus {
  outline: 2px solid #5CB686;
  outline-offset: 2px;
}

/* Z-INDEX HIERARCHY */
.mobile-menu,
.cookie-modal-overlay,
.cookie-modal,
.cookie-banner {
  z-index: 9999 !important;
}

/* VISUAL TECH-FUTURISTIC HINTS */
.section, .card, .feature-grid>li, .service-list>li {
  border-radius: 14px;
  border: 1.5px solid #232849;
  position: relative;
  box-shadow: 0 0px 10px 0 #11304711, 0 4px 36px 0 #15497333;
}
.card:after, .feature-grid>li:after, .service-list>li:after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 10%; height: 2.5px;
  background: linear-gradient(90deg, #5CB68688 0%, #F9EDDC55 100%);
  border-radius: 7px;
  filter: blur(0.1px);
}
.section:before {
  content: "";
  display: block;
  position: absolute;
  left: 24px; top: 22px;
  width: 42px; height: 2px;
  background: linear-gradient(90deg, #5CB686 0%, #F9EDDC 100%);
  opacity: .26;
  z-index: 2;
  border-radius: 9px;
}

/* NEON ACCENTS */
.cta-primary, .cookie-btn, .main-nav a.cta-primary {
  box-shadow: 0 0 0 0px #5CB68699, 0 2px 16px 0 #5CB68622;
}
.cta-primary:after, .cookie-btn:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%; top: 100%;
  transform: translateX(-50%);
  width: 58%; height: 2.5px;
  background: linear-gradient(90deg, #5CB68688 0%, #F9EDDC88 100%);
  border-radius: 4px;
  filter: blur(0.3px);
  opacity: 0.23;
}

/* DARK/LIGHT CONTRAST FOR TESTIMONIALS */
.testimonials {
  background: linear-gradient(95deg, #131824 0%, #182844 100%);
  padding: 40px 0;
}
.testimonials h2 {
  color: #5CB686;
  text-align: left;
}
.testimonial-card {
  background: #fff;
  color: #151C22;
  border: 1.5px solid #5CB686;
  margin-bottom: 22px;
  box-shadow: 0 3px 18px 0 #5CB68619;
}
.testimonial-card p {
  color: #172035;
}
.testimonial-card strong {
  color: #154973;
}

/* ________ END ________*/