/* RESET & BASE ================================================== */
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.45;
  background: #181F2A;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F6F6F6;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #6ED27A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #43c771;
  outline: none;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  outline: none;
  border: none;
  color: inherit;
}
*:focus-visible {
  outline: 2px solid #6ED27A;
  outline-offset: 2px;
}

/* TYPOGRAPHY =====================================================*/
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.15;
}
@media (min-width: 900px) {
  h1, .hero h1 {
    font-size: 3rem;
  }
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #6ED27A;
  margin-bottom: 18px;
  margin-top: 0;
  line-height: 1.2;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #F6F6F6;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #F6F6F6;
}
p, li, .price, .company-info, .company-address, .company-email, .company-hours, .address-info, .email-info {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #E6E8EF;
}
p:last-child, li:last-child {
  margin-bottom: 0;
}
strong { font-weight: 600; }

/* CONTAINER & LAYOUT =============================================*/
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(26, 44, 73, 0.02);
  border-radius: 22px;
  box-shadow: 0 2px 24px 0 rgba(40,80,120,0.15);
}
@media (min-width: 800px) {
  .section {
    padding: 64px 40px;
  }
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.text-section,
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 900px) {
  .text-image-section {
    flex-direction: row;
    align-items: center;
  }
  .text-section {
    flex-direction: column;
    align-items: flex-start;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #252C3A;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(26,44,73,0.09);
  overflow: hidden;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/*********************** HERO SECTION **********************/
.hero {
  width: 100%;
  background: linear-gradient(94deg, #212B41 52%, #19304d 100%);
  box-shadow: 0 4px 24px rgba(26,44,73,0.13);
  padding: 72px 0 48px 0;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  max-width: 650px;
  margin: 0 auto;
  align-items: flex-start;
}
.hero p {
  font-size: 1.25rem;
  color: #cafaf9;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero {
    padding: 48px 0 32px 0;
    margin-bottom: 24px;
  }
}

/***************** CARD/FEATURES - TECH FUTURISTIC **************/
.feature-card {
  flex: 1 1 320px;
  min-width: 270px;
  max-width: 350px;
  background: #222845;
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 rgba(40,110,140,0.12);
  padding: 32px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.20s, box-shadow 0.20s;
  border: 1.5px solid rgba(110,210,122,0.07);
  margin-bottom: 20px;
  position: relative;
}
.feature-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px #6ed27a33);
}
.feature-card .price {
  font-size: 1rem;
  color: #6ED27A;
  font-weight: 700;
  margin-top: 8px;
}
.feature-card:hover {
  transform: translateY(-7px) scale(1.025);
  border-color: #6ED27A;
  box-shadow: 0 8px 36px 0 #6ED27A66;
}
@media (max-width: 900px) {
  .feature-card {
    min-width: 100%;
    max-width: 100%;
  }
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/***************** TESTIMONIALS ROW / CARDS *******************/
.testimonials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}

.testimonial-card {
  display: flex;
  align-items: center;
  flex: 1 1 320px;
  min-width: 270px;
  max-width: 480px;
  gap: 20px;
  padding: 20px 24px;
  background: #F6F6F6;
  color: #252C3A;
  border-radius: 13px;
  margin-bottom: 24px;
  box-shadow: 0 2px 18px 0 rgba(110,210,122,0.08);
  position: relative;
  transition: box-shadow 0.20s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px 0 #6ED27A44;
  transform: translateY(-4px) scale(1.015);
}
.testimonial-avatar {
  flex-shrink: 0;
}
.testimonial-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #6ED27A;
  box-shadow: 0 0 0 3px #1A2C49, 0 0 12px 0 #6ED27A44;
  background: #DAF9E3;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #202632;
  margin-bottom: 0;
  flex: 1;
}
.testimonial-meta {
  font-size: 0.97rem;
  color: #263151;
  margin-left: 8px;
  font-weight: 500;
  opacity: 0.76;
}

/***************** FAQ / ACCORDION CARDS **********************/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #222845;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 2px 16px 0 rgba(40,110,140,0.08);
  color: #EBEBF9;
  margin-bottom: 20px;
  border-left: 4px solid #6ED27A;
  transition: box-shadow 0.18s;
}
.faq-item h3 {
  color: #6ED27A;
  font-size: 1.17rem;
  margin-bottom: 7px;
}
.faq-item p {
  font-size: 1rem;
  color: #F6F6F6;
  margin-bottom: 0;
}
.faq-item:hover {
  box-shadow: 0 4px 18px 0 #6ED27A33;
}

/***************** BUTTONS & CTA ******************************/
.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: 100px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  background: #1A2C49;
  color: #6ED27A;
  border: 2px solid #6ED27A;
  box-shadow: 0 2px 14px 0 rgba(110,210,122,0.10);
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  text-shadow: 0 0 7px #6ED27A25;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border-color 0.18s;
  text-decoration: none;
}
.cta.primary {
  background: #6ED27A;
  color: #1A2C49;
  border: 2px solid #6ED27A;
  box-shadow: 0 0 16px 0 #8bffb65b;
  text-shadow: none;
}
.cta:hover, .cta:focus {
  background: #212B41;
  color: #9dffbb;
  box-shadow: 0 4px 24px 0 #6ED27A99, 0 0 0 3px #1291491e;
  border-color: #39e380;
}
.cta.primary:hover, .cta.primary:focus {
  background: #43e188;
  color: #101522;
  border-color: #43e188;
  box-shadow: 0 4px 24px 0 #7bf3ae66;
}

/***************** HEADER & NAVIGATION ***********************/
header {
  width: 100%;
  background: rgba(26,44,73,0.97);
  box-shadow: 0 4px 24px rgba(26,44,73,0.13);
  position: sticky;
  top: 0;
  z-index: 42;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 64px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 54px;
}
.brand-logo img {
  height: 39px;
  width: auto;
  filter: drop-shadow(0 0 2px #17ff91);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F6F6F6;
  font-weight: 500;
  font-size: 1rem;
  padding: 2px 10px;
  border-radius: 4px;
  transition: background 0.15s, color 0.13s, box-shadow 0.13s;
}
.main-nav a:hover, .main-nav a.active {
  color: #6ED27A;
  background: #1a2c49;
  box-shadow: 0 0 0 2px #6ED27A33;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}

/***************** FOOTER *******************************/
footer {
  background: #191E2A;
  color: #F6F6F6;
  padding: 42px 0 20px 0;
  margin-top: 80px;
  font-size: 0.97rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  margin-bottom: 34px;
  justify-content: space-between;
}
.footer-top img {
  width: 42px;
  height: 42px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-nav a, .footer-legal a {
  color: #6ED27A;
  opacity:0.8;
  transition: color .18s, opacity .18s;
  font-weight: 500;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #fff;
  opacity:1;
}
.company-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 18px;
}
@media (max-width:900px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-nav, .footer-legal {
    gap: 16px;
  }
  .company-info { gap: 18px; }
}
.copyright {
  color: #b4bbc9;
  margin-top: 12px;
  font-size: .93rem;
}

/***************** CONTACT DETAILS / MAP PLACEHOLDER ************/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.contact-info-field {
  color: #C2E6D1;
  font-size: 1.08rem;
}
.map-placeholder {
  width: 100%;
  min-height: 148px;
  border-radius: 13px;
  background: repeating-linear-gradient(-45deg, #232945, #232945 12px, #25304c 12px, #25304c 24px);
  color: #6ED27A;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08rem;
  margin: 18px 0;
  opacity: 0.66;
}

/***************** MODAL/BANNER & COOKIE CONSENT *****************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #202845;
  color: #F6F6F6;
  z-index: 1010;
  padding: 24px 18px;
  box-shadow: 0 -2px 22px 0 #262B50cc;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: slideUpCookie .6s cubic-bezier(.71,1.77,.62,.97);
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-btn, .cookie-btn.primary {
  padding: 8px 26px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #6ED27A;
  background: #202845;
  color: #6ED27A;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, border-color 0.16s;
}
.cookie-btn.primary {
  background: #6ED27A;
  color: #202845;
  border-color: #6ED27A;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #293157;
  color: #fff;
}
.cookie-btn.primary:hover, .cookie-btn.primary:focus {
  background: #43e188;
  color: #101522;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 30, 43, 0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  animation: fadeInCookieModal .36s;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #202845;
  border-radius: 17px;
  padding: 38px 28px 28px 28px;
  color: #F6F6F6;
  min-width: 290px;
  max-width: 420px;
  box-shadow: 0 4px 34px 0 #262B50dd;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: popInCookieModal .34s cubic-bezier(.71,1.77,.62,.97);
  position: relative;
}
@keyframes popInCookieModal {
  from { transform: scale(.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1.56rem;
  color: #6ED27A;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1130;
  transition: color .16s;
}
.cookie-modal-close:hover { color: #fff; }
.cookie-category-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.05rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #6ED27A;
  width: 19px;
  height: 19px;
  vertical-align: middle;
}
.cookie-category label {
  color: #C2E6D1;
}
.cookie-category.essential label {
  color: #6ED27A;
  font-weight: 600;
}

/**************** MOBILE MENU/HAMBURGER **********************/
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: none;
  border: none;
  font-size: 2.04rem;
  color: #6ED27A;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 0 0 0 #6ED27A00;
  transition: background 0.17s, color 0.16s;
  margin-left: 10px;
  z-index: 1013;
}
.mobile-menu-toggle:focus {
  background: #6ED27A22;
  color: #fff;
  outline: none;
}
@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 85vw;
  max-width: 370px;
  height: 100vh;
  background: #191E2A;
  z-index: 1050;
  box-shadow: -6px 0 32px 0 #191E2Aee;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.64,1.7,.39,0.99), box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 30px 24px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 18px; top: 15px;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #6ED27A;
  cursor: pointer;
  z-index: 1105;
  transition: color .16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover { color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #F6F6F6;
  opacity: 0.90;
  border-radius: 7px;
  padding: 9px 0 7px 0;
  transition: background .16s, color .16s, outline .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #6ED27A;
  outline: 0;
  background: #181F2A;
  font-weight: 600;
}
@media (max-width: 600px) {
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
    padding-right: 12px;
    padding-left: 12px;
  }
}

/*-------------------------- SPACING ---------------------------------*/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/***************** RESPONSIVE DESIGN *******************************/
@media (max-width: 900px) {
  .container {padding: 0 10px;}
  .content-wrapper, .text-section { gap: 14px; }
  .hero .content-wrapper, .features-grid, .card-container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.05rem; }
}
@media (max-width: 768px) {
  .content-grid, .features-grid, .testimonials-row, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .footer-top { gap: 18px; }
  .cookie-modal-content { min-width: 90vw; max-width: 95vw; padding: 29px 8vw 19px 8vw; }
}

/* SHADOW/EFFECTS FOR CARDS */
.card, .feature-card, .testimonial-card, .faq-item {
  box-shadow: 0px 2px 24px 0px rgba(110,210,122,0.10);
  transition: box-shadow .17s, transform .15s;
}
.card:hover, .feature-card:hover, .testimonial-card:hover, .faq-item:hover {
  box-shadow: 0px 4px 29px 0px #6ED27A33;
  z-index: 2;
}

/* VISUAL ACCENTS: NEON UNDERLINES/HIGHLIGHTS */
h2, h3 {
  position: relative;
}
h2:after, h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 62px;
  height: 3px;
  background: #6ED27A;
  box-shadow: 0 0 21px #6ED27A88;
  border-radius: 2px;
  opacity: 0.75;
}
h3:after {
  width: 36px;
  height: 2px;
  bottom: -5px;
}

/* PRICING OVERVIEW CARD */
.price-overview {
  background: #202845;
  border-radius: 11px;
  padding: 22px 18px;
  margin-top: 18px;
  box-shadow: 0 1px 14px 0 #13944C33;
}
.price-overview h3 {
  color: #6ED27A;
  font-size: 1.16rem;
  margin-bottom: 5px;
}

/********* UTILITY CLASSES ***********/
.text-center { text-align: center; }
.d-none { display: none !important; }

/********* FORMS, INPUTS ***********/
input, textarea {
  background: #202845;
  border: 1px solid #6ED27A77;
  color: #F6F6F6;
  border-radius: 8px;
  padding: 12px 13px;
  font-size: 1rem;
  margin-bottom: 15px;
  box-shadow: 0 1px 7px #6ED27A11;
  transition: border-color .14s, box-shadow .16s;
}
input:focus, textarea:focus {
  border-color: #6ED27A;
  box-shadow: 0 0 0 2px #6ED27A44;
}

/********** ANIMATIONS / TRANSITIONS ************/
html {
  scroll-behavior: smooth;
}
section, .card, .feature-card, .faq-item, .testimonial-card {
  transition: box-shadow .16s, background .18s;
}

/******* TOTAL OVERLAPS PREVENTED BY FLEX/GAP/MARGIN ********/

/*********************** END OF CSS *************************/