/* --- CSS RESET & NORMALIZATION --- */
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 {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #10181F;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: linear-gradient(120deg, #1a2930 0%, #203930 100%);
  color: #F6F0ED;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
h1 { font-size: 2rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 18px; }
h3 { font-size: 1.2rem; margin-bottom: 14px; font-weight: 600; }
@media (min-width: 550px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }
}
p {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #f3ede7;
}
strong { color: #FF9052; font-weight: 700; }

/* --- LINKS --- */
a {
  color: #58F7DC;
  text-decoration: none;
  transition: color 0.21s;
}
a:hover, a:focus {
  color: #00F49A;
  text-decoration: underline;
}

/* --- STRUCTURAL LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(25,35,42,0.48);
  border-radius: 20px;
  box-shadow: 0 8px 28px 0 rgba(24,55,61,0.13);
}
@media (max-width: 768px) {
  .section {
    padding: 26px 6px;
    margin-bottom: 44px;
    border-radius: 0 0 16px 16px;
  }
}

/* --- FLEX GROUPS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #172225;
  border-radius: 15px;
  padding: 28px 22px;
  flex: 1 1 320px;
  box-shadow: 0 2px 18px 0 rgba(0,255,180,0.12), 0 1.5px 5px 0 rgba(24,55,61,0.09);
  border: 1.5px solid #233A34;
  transition: box-shadow 0.24s, border-color 0.24s;
}
.card:hover, .card:focus {
  box-shadow: 0 0 0 3px #00F49A, 0 6px 34px 0 rgba(0,255,180,0.24);
  border-color: #00F49A;
  z-index: 2;
}
.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: 16px;
  padding: 20px;
  background: #F6F0ED;
  color: #153D2D;
  margin-bottom: 24px;
  border-radius: 12px;
  box-shadow: 0 0 8px 0 rgba(93, 255, 219, 0.17);
  border-left: 5px solid #00F49A;
}
.testimonial-card p {
  color: #1C2021;
  line-height: 1.7;
  font-size: 1.1rem;
}
.testimonial-card strong { color: #E07A4B; }

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

@media (max-width: 768px) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* --- HEADER/NAVIGATION --- */
header {
  background: #162319;
  box-shadow: 0 2px 10px 0 rgba(0, 255, 180, 0.12);
  position: sticky;
  top: 0;
  z-index: 1005;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  padding: 13px 18px 13px 12px;
}
header nav a {
  color: #EEF9F3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 13px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  position: relative;
  z-index: 2;
}
header nav a:hover, header nav a:focus {
  color: #00F49A;
  background: rgba(0, 244, 154, 0.07);
}
header nav a.cta {
  background: #E07A4B;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 1.01rem;
  box-shadow: 0 3px 12px 0 rgba(224,122,75,0.12); 
  margin-left: 22px;
  font-weight: 900;
  letter-spacing: 0.07em;
  border: none;
  outline: none;
  transition: background 0.19s, color 0.19s, box-shadow 0.22s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #B75F35;
  color: #00F49A;
  box-shadow: 0 0 0 3px #00F49A, 0 6px 34px 0 rgba(0,255,180,0.18);
}
header nav img {
  display: inline-block;
  height: 43px;
  margin-right: 18px;
  vertical-align: middle;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 14px;
  z-index: 1103;
  background: none;
  border: none;
  color: #00F49A;
  font-size: 2.1rem;
  cursor: pointer;
  width: 46px; height: 46px;
  border-radius: 12px;
  transition: background 0.16s, color 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {background: #d1fff6; color: #041510;}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16, 31, 43, 0.96);
  z-index: 2010;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.4,1,.5,1);
  box-shadow: -2px 0 24px 0 #00F49A11;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  position: absolute;
  right: 28px;
  top: 19px;
  z-index: 40;
  cursor: pointer;
  width: 55px; height: 55px;
  border-radius: 13px;
  transition: background 0.18s, color 0.21s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {background:#00F49A22; color:#00F49A;}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 85px 0 0 32px;
}
.mobile-nav a {
  color: #EEF9F3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  padding: 12px 8px;
  border-radius: 8px;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #00F49A18;
  color: #00FFD0;
}

@media (max-width:980px) {
  header nav {flex-wrap: wrap; gap:12px;}
  header nav img {height:30px; margin-right:10px;}
  header nav a.cta {margin-left:8px;}
}
@media (max-width: 850px) {
  header nav a:not(.cta):not(:first-child) {display: none;}
  .mobile-menu-toggle {display: block;}
}
@media (max-width:600px) {
  header nav a.cta {padding:8px 13px; font-size:1rem;}
  .mobile-menu-close {font-size:2rem;}
}

/* --- MAIN BUTTONS / CTA --- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E07A4B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  border: none;
  border-radius: 30px;
  padding: 14px 34px;
  margin: 12px 0 0 0;
  cursor: pointer;
  letter-spacing: 0.07em;
  box-shadow: 0 5px 27px 0 #E07A4B26;
  transition: background 0.18s, color 0.19s, box-shadow 0.18s, transform 0.13s;
  position: relative;
  outline: none;
}
.cta:hover, .cta:focus {
  background: #153D2D;
  color: #00F49A;
  box-shadow: 0 0 0 2.5px #00F49A, 0 8px 22px 0 #00251b33;
  transform: translateY(-2px) scale(1.025);
}

/* --- ICONS and IMAGES IN LISTS --- */
ul,
ol {
  padding-left: 0;
  list-style: none;
}
ul > li, ol > li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
}
ul > li img {
  height: 30px;
  width: 30px;
  margin-right: 8px;
  object-fit: contain;
}

/* --- TEXT SECTION --- */
.text-section {
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 18px 13px;
  background: #172225;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 #009c7420;
}
.text-section h3 {
  margin-top: 8px;
  color: #00F49A;
  font-size: 1.13rem;
}
.text-section p,
.text-section ul > li {
  color: #EFF9F6;
  line-height: 1.7;
}

/* --- FOOTER --- */
footer {
  background: #222F29;
  color: #D8ECE5;
  padding: 33px 0 25px 0;
  border-top: 3px solid #00F49A38;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 13px;
  align-items: center;
  justify-content: center;
}
footer nav a {
  color: #CFFFE9;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 13px;
  border-radius: 8px;
  transition: color 0.17s, background 0.14s;
}
footer nav a:hover,footer nav a:focus{
  color: #B75F35; background: #00f49a16;
}
.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer-info img {
  height: 38px;
  width: auto;
}
.footer-info span {font-size: 1rem; color: #c3ede1;}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #1a2930;
  color: #F6F0ED;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
  z-index: 3500;
  box-shadow: 0 -6px 32px 0 rgba(0,255,180,0.14);
  padding: 24px 18px 18px 18px;
  border-radius: 22px 22px 0 0;
  transition: transform 0.3s;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner p {
  color: #F6F0ED;
  font-size: 1.04rem;
  margin: 0 0 10px 0;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.cookie-btn, .cookie-settings-btn {
  border: none;
  padding: 8px 22px;
  border-radius: 23px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.19s, color 0.18s,box-shadow 0.16s;
  margin-right: 5px;
}
.cookie-btn.accept {
  background: #00F49A;
  color: #222F29;
  box-shadow: 0 2px 8px 0 #00F49A22;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #153D2D;
  color: #00F49A;
}
.cookie-btn.reject {
  background: #F9A277;
  color: #122B1A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #B75F35;
  color:#fff;
}
.cookie-settings-btn {
  background: #333e38;
  color: #00F49A;
  box-shadow: none;
  border: 1.5px solid #00F49A;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #003a2b;
  color: #fff;
}
@media (max-width:600px){
  .cookie-banner{width:98%;max-width:100vw;padding:16px 7px 8px 7px; font-size:0.96rem; bottom:5px;}
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(19,37,28,0.85);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in .18s;
}
.cookie-modal {
  background: #20292A;
  color: #DAFFEC;
  border-radius: 19px;
  box-shadow: 0 6px 36px 0 #00F49A38;
  padding: 38px 27px 21px 27px;
  min-width: 306px;
  min-height: 200px;
  max-width: 99vw;
  font-size: 1.01rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalShow .3s cubic-bezier(.3,.8,.34,1);
}
@keyframes modalShow {
  from {transform: translateY(40px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-modal h3 {
  color: #00F49A;
  margin-bottom: 0;
  font-size: 1.15rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 11px;
  font-weight: 600;
}
.cookie-toggle {
  display: inline-block;
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: #233A34;
  position: relative;
  cursor: pointer;
  margin-left:10px;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #F6F0ED;
  transition: left 0.19s;
}
.cookie-toggle input:checked + .toggle-slider {
  left: 18px;
  background: #00F49A;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}
.modal-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  position: absolute;
  top: 18px;
  right: 24px;
  cursor: pointer;
  z-index:12;
}
.modal-close-btn:hover {color:#00F49A;}

@keyframes fade-in {
  from{opacity:0;} to{opacity:1;}
}

/* --- RESPONSIVE UTILITIES --- */
@media (max-width: 780px) {
  .container {padding: 0 6px;}
  h1,h2 {font-size:1.4rem;}
}

@media (max-width: 600px) {
.content-wrapper {gap:17px;}
}
@media (max-width:430px) {
  h1{font-size:1.04rem;}
  h2{font-size:0.93rem;}
  p, ul>li {font-size: 0.98rem;}
}

/* --- MICRO-INTERACTIONS, HOVER EFFECTS --- */
.card, .testimonial-card, .text-section {
  transition: box-shadow 0.21s, border-color 0.19s, transform 0.16s;
}
.card:hover, .card:focus, .testimonial-card:hover, .testimonial-card:focus, .text-section:hover {
  box-shadow: 0 0 0 2.5px #00F49A, 0 6px 26px 0 #00F49A15;
  transform: translateY(-1.5px) scale(1.010);
}

img, svg {
  max-width: 100%;
  vertical-align: middle;
}

/* --- VISUAL TECH FUTURISTIC EFFECTS --- */
.section {
  border: 1.2px solid #233A34;
  box-shadow: 0 2px 18px 0 rgba(0, 255, 180, 0.08), 0 1.5px 5px 0 rgba(24,55,61,0.09);
  position: relative;
  isolation: isolate;
}
.section:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 20px;
  border: 2px solid rgba(0,244,154,0.07);
  z-index: 0;
}
/* Neon accent for CTA */
.cta:after {
  content: "";
  display: block;
  position: absolute;
  inset: 6px;
  border-radius: 23px;
  z-index: 1;
  pointer-events: none;
  box-shadow: 0 0 18px 9px #00F49A44;
  opacity: 0.19;
}

/* --- FORMS --- */
input, textarea, select {
  background: #233A34;
  color: #DEF8E8;
  font-family: 'Open Sans',Arial,sans-serif;
  font-size: 1rem;
  border: 2px solid #00F49A38;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 15px;
  outline: none;
  transition: border 0.17s, background 0.16s;
  width:100%;
  max-width:500px;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #00F49A;
  background: #172225;
}

/* --- ANIMATIONS --- */
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 9px 0 #00F49A55; }
  50%  { box-shadow: 0 0 16px 3px #00F49A99; }
  100% { box-shadow: 0 0 9px 0 #00F49A55; }
}
.cta {
  animation: ctaPulse 3.1s infinite;
}

/* --- ACCESSIBILITY: FOCUS VISIBLE --- */
:focus-visible { outline: 2px solid #00F49A; outline-offset: 2px;}

/* --- Z-INDEX LAYERING --- */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {z-index:1001;}

/* --- PREVENT OVERLAPPING, ADEQUATE SPACING --- */
main .section:not(:last-child) {margin-bottom: 60px;}
.card + .card, .testimonial-card + .testimonial-card,
.text-section + .text-section, .section + .section {
  margin-top: 22px;
}

/* --- SPECIAL CLASSES (for HTML content matching) --- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- UTILITY CLASSES --- */
.hide { display: none!important; }
.show { display: block!important; }

/* --- PRINT --- */
@media print {
  *,*::before,*::after {background: #fff!important; color: #000!important;}
  .cookie-banner, .mobile-menu, .mobile-menu-toggle, .cta, header, footer {display: none!important;}
  main, .container {padding:0!important; width:100vw!important;}
}
