/* CSS 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, 
main, 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 {
  scroll-behavior: smooth;
  background: #131a23;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: linear-gradient(135deg, #2C3E50 0%, #22323f 100%);
  color: #F6E8B1;
  min-height: 100vh;
  line-height: 1.65;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800|Open+Sans:400,600&display=swap');

h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.25rem; margin-bottom: 20px;}
h2 {font-size: 1.6rem; margin-bottom: 16px;}
h3 {font-size: 1.15rem; margin-bottom: 12px;}
@media (min-width: 600px){
  h1{font-size:2.8rem;}
  h2{font-size:2rem;}
  h3{font-size:1.3rem;}
}
p, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #F6E8B1;
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {color: #27AE60; font-weight: bold;}
.subheadline {font-size: 1.15rem; color: #9ae5c6; margin-bottom: 16px;}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: rgba(44, 62, 80, 0.89);
  box-shadow: 0 4px 24px 0 rgba(39,174,96, 0.08), 0 1.5px 12px 0 rgba(44,62,80,0.10);
  transition: box-shadow 0.3s;
}
@media (max-width: 768px) {
  .section { padding: 20px 10px; margin-bottom: 36px; }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #24303d;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(39,174,96,0.10);
  padding: 28px 24px 24px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 30px 0 #27AE60b0,0 1.5px 12px #131a23c7;
  transform: translateY(-3px) scale(1.01);
}

.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: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  color: #24303d;
  box-shadow: 0 2px 18px rgba(44,62,80,0.09);
  margin-bottom: 20px;
  min-width: 200px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px #2C3E50cc;
  transform: translateY(-2px) scale(1.008);
}
.testimonial-card p {
  color: #2C3E50;
  font-size: 1rem;
  margin-bottom: 8px;
  font-style: italic;
  line-height: 1.45;
}
.testimonial-card span {
  color: #27AE60;
  font-weight: bold;
  font-size: 0.97rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 16px;
  background: #1b222a;
  border-radius: 16px;
  box-shadow: 0 2px 6px #27ae6022;
  margin-bottom: 20px;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 8px;
  list-style: disc inside;
}

/* --------- NAVIGATION --------- */
header {
  background: #202c38;
  border-bottom: 2px solid #27AE60;
  padding: 0 0;
  z-index: 25;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header a img {
  height: 44px;
  margin: 12px 0 12px 0;
  display: block;
}
nav.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  color: #F6E8B1;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.18s, background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #27AE60;
  outline: none;
}
@media (max-width: 980px) {
  nav.main-nav {
    gap: 14px;
    margin-left: 16px;
  }
}
@media (max-width: 850px) {
  nav.main-nav {
    display: none;
  }
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #27AE60;
  font-size: 2.2rem;
  margin-left: auto;
  padding: 10px 14px 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 40;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #27AE60;
  color: #fff;
}
@media (max-width: 850px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 380px;
  height: 100vh;
  background: #202a37;
  box-shadow: -8px 0 32px #2C3E5099;
  z-index: 55;
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(.87,0,.13,1);
  display: flex;
  flex-direction: column;
  padding: 24px 16px 16px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  border: none;
  background: none;
  color: #27AE60;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #fff; background: #27AE60; border-radius: 12px;}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F6E8B1;
  font-size: 1.15rem;
  padding: 12px 10px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.19s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #27AE60;
  color: #fff;
  outline: none;
}
@media (min-width: 851px){
  .mobile-menu { display: none!important; }
}

/* ----------- BUTTONS ------------- */
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 14px 38px;
  color: #27AE60;
  background: #fff;
  border-radius: 28px;
  border: none;
  margin-top: 10px;
  margin-bottom: 5px;
  cursor: pointer;
  box-shadow: 0 4px 16px #27ae6033;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.19s, transform 0.18s;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  color: #fff;
  background: #27AE60;
  transform: translateY(-1.5px) scale(1.03);
  box-shadow: 0 8px 28px #27AE6088;
}

button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 24px;
  padding: 10px 30px;
  background: #27AE60;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-right: 8px;
  margin-bottom: 8px;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
}
button:hover, button:focus, input[type="submit"]:hover {
  background: #22a054;
  color: #fff;
  outline: none;
}

input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1.5px solid #27AE60;
  background: #1b222a;
  color: #F6E8B1;
  margin-bottom: 12px;
  font-size: 1.07rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: border-color 0.22s, background 0.22s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  outline: none;
  border-color: #51f8b7;
  background: #131a23;
}
::placeholder {
  color: #aac8bc;
  opacity: 1;
}

/* FOOTER */
footer {
  background: #202c38;
  padding: 0px 0 0 0;
  border-top: 2px solid #27AE60;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0px 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  padding: 32px 0 12px 0;
  width: 100%;
}
footer img {
  height: 36px;
  margin-bottom: 10px;
}
footer .tagline {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #27AE60;
  font-size: 1.01rem;
  margin-bottom: 14px;
  width: 100%;
}
footer nav.footer-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #F6E8B1;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: #27AE60;
  outline: none;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  color: #F6E8B1;
  font-size: 0.98rem;
  padding: 0 0;
}
.footer-contact img {
  height: 17px;
  width: 17px;
  vertical-align: middle;
  margin-right: 7px;
  display: inline-block;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-left: 0; padding-right: 0;
  }
  footer .container {
    padding: 0 10px;
  }
}

/* ACCENTED AND DECORATIVE ELEMENTS */
h1, h2, .cta-button, .main-nav a, .mobile-nav a, .footer-nav a {
  /* Neon accent underneath titles & buttons */
  text-shadow: 0 0 10px #27AE6066;
}
.cta-button {
  box-shadow: 0 0 0 2px #27AE60aa, 0 6px 38px #27AE6066, 0 1.5px 12px #24303d22;
}

/* HIGHLIGHT ICONS & CARDS */
ul > li > img, .feature-item img {
  height: 46px;
  filter: drop-shadow(0 0 6px #27AE60);
  margin-bottom: 8px;
}
ul > li, .content-wrapper > ul > li, .content-wrapper > div > ul > li {
  background: #192029;
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 20px 18px 20px 18px;
  box-shadow: 0 2px 10px #27ae6011;
  transition: background 0.2s, box-shadow 0.2s,transform 0.16s;
}
ul > li:hover {
  background: #273141;
  box-shadow: 0 4px 24px #27AE6059;
  transform: translateY(-3px) scale(1.012);
}
.content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0 0;
}
.content-wrapper > ul > li {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 315px;
  min-height: 240px;
  margin-bottom: 20px;
}
@media(max-width:900px){
  .content-wrapper > ul {
    gap: 14px;
  }
  .content-wrapper > ul > li {
    min-width:160px;
    max-width:initial;
    min-height:160px;
    padding:14px 10px;
  }
}
@media(max-width:600px){
  .content-wrapper > ul {
    flex-direction: column;
    gap: 6px;
  }
  .content-wrapper > ul > li {
    min-width:110px;
    min-height:110px;
    padding:10px 8px;
  }
}

/* Z-INDEX LAYERING - keep nav/cookie above modal, modal above body */
header,
.mobile-menu,
.cookie-banner,
.cookie-modal-active {
  z-index: 10000;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #2C3E50;
  color: #F6E8B1;
  box-shadow: 0 -2px 24px #27AE6025;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 22px 30px 22px 30px;
  font-size: 1.07rem;
  z-index: 9999;
  animation: slideInBanner 0.35s cubic-bezier(.77,0,.18,1);
}
@keyframes slideInBanner {
  from {transform: translateY(100%); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button, .cookie-banner .cta-button {
  padding: 10px 26px;
  border-radius: 20px;
  font-size: 0.98rem;
  margin: 0 0 0 4px;
  font-weight: 600;
}
.cookie-banner .accept {
  background: #27AE60;
  color: #fff;
}
.cookie-banner .reject {
  background: #24303d;
  color: #efa31a;
  border: 1px solid #efa31a;
}
.cookie-banner .settings {
  background: #fff;
  color: #27AE60;
  border: 1px solid #27AE60;
}
.cookie-banner button:focus, .cookie-banner button:hover, .cookie-banner .cta-button:focus {
  opacity: 0.92;
  outline: 2px solid #27AE60;
  outline-offset: 2px;
}
@media(max-width: 700px){
  .cookie-banner{
    flex-direction: column;
    gap: 16px;
    padding: 18px 10px;
    font-size: 0.96rem;
    z-index:9999;
  }
  .cookie-banner .cookie-buttons {gap: 9px;}
}

/* COOKIE MODAL (PREFERENCES) */
.cookie-modal-active {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10040;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33,44,54,0.62);
  animation: fadeInModalBg 0.18s;
}
@keyframes fadeInModalBg {
  from{ opacity: 0;}
  to{ opacity: 1;}
}
.cookie-modal {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #202c38;
  color: #F6E8B1;
  border-radius: 22px;
  width: 94vw;
  max-width: 410px;
  box-shadow: 0 4px 60px #27AE6090,0 3px 12px #2C3E5060;
  padding: 35px 28px 28px 28px;
  animation: popup 0.19s cubic-bezier(.8,0,.16,1);
}
@keyframes popup {
  from{ transform: translateY(25px) scale(0.98); opacity: 0; }
  to{ transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #27AE60;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
  text-align: left;
}
.cookie-modal .cookie-category {
  margin-bottom: 15px;
  padding: 12px 0;
  border-bottom: 1.3px solid #27AE6015;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
}
.cookie-modal label.switch {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size:1rem;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #27AE60;
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .essential {
  color: #aaa;
  font-size: 0.98rem;
  font-style: italic;
}

/* GENERAL ANIMATIONS & UTILITIES */
.fade-in{ animation: fadeIn 0.25s linear;}
@keyframes fadeIn {from{opacity:0;}to{opacity:1;}}
.slide-up {animation: slideUp 0.2s cubic-bezier(.66,0,.38,1);}
@keyframes slideUp {from{transform:translateY(40px); opacity:0;} to{transform:translateY(0); opacity:1;}}
.neon {
  border-bottom: 2.5px solid #27AE60;
  box-shadow: 0 2px 14px #27ae6061;
}

/* SPACING BETWEEN COMPONENTS */
section+.section,
.section + section,
.section+.container,
.container+.section{
  margin-top: 40px;
}
@media(max-width:600px){
  section+.section,
  .section + section,
  .section+.container,
  .container+.section{
    margin-top: 26px;
  }
}

/* VISUAL EFFECTS: SHADOWS, ROUNDED CORNERS, HOVER */
.card, ul>li, .testimonial-card, .feature-item {
  border-radius: 20px;
  box-shadow: 0 2px 15px #27AE6030, 0 1px 6px #131a2322;
}
.card:hover, ul>li:hover, .feature-item:hover {
  box-shadow: 0 6px 32px #27AE60aa, 0 2px 12px #2C3E5065;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  .content-wrapper { gap: 13px; }
  .footer-contact { gap: 0px; }
  .footer-nav { gap: 7px;}
}

/* Modern scrollbar */
body::-webkit-scrollbar {
  width: 11px;
  background: #2C3E50;
}
body::-webkit-scrollbar-thumb {
  background: #27AE60;
  border-radius: 6px;
}

/* Utility classes, accessibility */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
a:focus-visible, button:focus-visible { outline: 2px solid #27AE60; outline-offset:1px;}

/* === THEME NEON TECH BORDER for main headline === */
h1:not(.logo), h2.main { border-bottom: 3px solid #27AE60; box-shadow: 0 1.5px 16px #27ae6053; padding-bottom:10px; margin-bottom:18px;}

/* === FOCUS STATES for ACCESSIBILITY === */
a:focus { outline: 2px solid #27AE60; outline-offset: 2px;}

/* === Z-INDEX MANAGEMENT === */
header, .mobile-menu, .cookie-banner, .cookie-modal-active {z-index: 1000;}

/* Hide container overflow for mobile menu slide */
body.mobile-menu-open {
  overflow: hidden;
}

/* --- END OF STYLE.CSS --- */
