/* === 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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;   padding: 0;   border: 0;   font-size: 100%;   font: inherit;   vertical-align: baseline;
}
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body {
  min-height: 100vh;
  background: #162939;
  color: #F9F9F9;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background-color: #162939;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style-position: inside; margin-left: 1em; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; color: #F9F9F9; margin-bottom: 16px; }
h1 { font-size: 2.2rem; margin-bottom: 20px; letter-spacing: 0.05em; }
h2 { font-size: 1.6rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
p { margin-bottom: 12px; }

.section { margin-bottom: 60px; padding: 40px 20px; background: none; border-radius: 18px; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex; flex-direction: column;
}

.content-wrapper {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* === HEADER & NAV === */
header {
  background: #222e3b;
  box-shadow: 0 6px 20px 0 rgba(35,73,101, .12);
  position: sticky;
  top: 0; z-index: 1020;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #F9F9F9;
  text-shadow: 0 0 10px #23496566;
  position: relative;
  transition: color 0.15s;
}
header nav a:hover,
header nav a:focus {
  color: #85B753;
  text-shadow: 0 0 16px #85B753bb;
}
.btn-primary,
.btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 30px;
  outline: none;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  box-shadow: 0 2px 18px 0 rgba(35,73,101, 0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.btn-primary {
  background: #234965;
  color: #F9F9F9;
  border: 2px solid #85B753;
  position: relative;
  z-index: 1;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #85B753;
  color: #1e2f49;
  border-color: #85B753;
  box-shadow: 0 0 12px 1px #85B75399, 0 2px 24px 0 #85B75333;
}
.btn-secondary {
  background: #85B753;
  color: #234965;
  border: 2px solid #234965;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #234965;
  color: #F9F9F9;
  border-color: #85B753;
  box-shadow: 0 0 10px 2px #85B75355;
}

.mobile-menu-toggle {
  display: none;
  background: none; color: #85B753;
  font-size: 2.1rem; padding: 0; border: none;
  cursor: pointer;
  z-index: 1051;
  margin-left: 18px;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover {
  color: #fff;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #1e2531;
  position: fixed;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 330px;
  height: 100vh;
  z-index: 1050;
  box-shadow: -3px 0 40px 0 #23496544;
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: none; border: none;
  color: #85B753;
  font-size: 2rem; align-self: flex-end;
  padding: 18px 18px 0 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 24px;
  margin-top: 10px;
}
.mobile-nav a {
  font-size: 1.1rem;
  color: #F9F9F9;
  padding: 10px 10px 10px 0;
  border-left: 4px solid transparent;
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #85B753;
  border-left: 4px solid #85B753;
  background: #23354e55;
}

/* Mobile nav show/hide logic comes from adding .open on .mobile-menu via JS */

/* === HERO === */
.hero {
  padding: 100px 0 64px 0;
  width: 100%;
  background: linear-gradient(110deg, #1e2531 60%, #234965 90%);
  box-shadow: 0 16px 42px 0 #162939cc;
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 18px;
  max-width: 640px;
}
.hero h1 {
  font-size: 2.3rem;
  color: #85B753;
  letter-spacing: 0.07em;
  text-shadow: 0 0 14px #85B7532e, 0 4px 32px #23496540;
}
.hero p {
  font-size: 1.18rem;
  color: #F9F9F9;
  text-shadow: 0 2px 12px #1e253111;
  margin-bottom: 18px;
}
/* === Spacing and Alignment Patterns === */
.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card {
  margin-bottom: 20px; position: relative;
  background: #212e3b;
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 4px 22px 0 #23496510, 0 0 0 1px #23496508;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 9px 32px 0 #85B75344, 0 0 0 2px #85B753;
  border-color: #85B753AA;
}
.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: #F9F9F9;
  border-radius: 18px;
  box-shadow: 0 2px 20px #23496517;
  margin-bottom: 24px;
  color: #234965;
  max-width: 540px;
}
.testimonial-card blockquote {
  color: #222e3b;
  font-style: italic;
  font-size: 1.18rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.testimonial-meta {
  color: #85B753;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === MAIN SECTION === */
section {
  background: none;
  border-radius: 18px;
}
ul li, ol li {
  margin-bottom: 11px;
  color: #F9F9F9;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  line-height: 1.65;
  position: relative;
  padding-left: 18px;
}
ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #85B753;
  box-shadow: 0 0 7px 1px #85B75377;
}
ol li {
  padding-left: 0;
}

section > .container {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* === CTA Buttons === */
a.btn-primary, button.btn-primary {
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 6px;
}
a.btn-secondary, button.btn-secondary {
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 6px;
}

/* === FOOTER === */
footer {
  background: #212e3b;
  padding: 48px 0 20px 0;
  box-shadow: 0 -6px 18px #23496510;
  border-top: 2px solid #23496566;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
footer nav a {
  color: #85B753;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.2s;
}
footer nav a:hover,
footer nav a:focus {
  color: #F9F9F9;
  text-shadow: 0 0 20px #23496599;
}
footer .text-section {
  color: #85B753;
  font-size: 0.97rem;
}
footer img {
  width: 48px; height: auto;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1200;
  background: #222e3b;
  color: #F9F9F9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 22px 5vw 18px 5vw;
  box-shadow: 0 -8px 34px #23496533;
  transition: transform 0.35s cubic-bezier(.7,0,.2,1);
  transform: translateY(110%);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  margin: 0;
  transition: background 0.19s, color 0.19s;
}
.cookie-accept {
  background: #85B753;
  color: #234965;
  border: 2px solid #85B753;
}
.cookie-accept:hover,
.cookie-accept:focus {
  background: #234965;
  color: #F9F9F9;
}
.cookie-reject {
  background: #F9F9F9;
  color: #234965;
  border: 2px solid #85B753;
}
.cookie-reject:hover,
.cookie-reject:focus {
  background: #222e3b;
  color: #85B753;
}
.cookie-settings {
  background: #234965;
  color: #85B753;
  border: 2px solid #85B753;
}
.cookie-settings:hover,
.cookie-settings:focus {
  background: #85B753;
  color: #234965;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22, 41, 57, 0.88);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .25s;
  opacity: 0; pointer-events: none;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #212e3b;
  color: #F9F9F9;
  border-radius: 18px;
  box-shadow: 0 8px 40px #23496555;
  padding: 38px 28px 30px 28px;
  min-width: 90vw; max-width: 410px;
  display: flex; flex-direction: column; gap: 20px;
  z-index: 1310;
  position: relative;
  animation: fadeUp 0.28s cubic-bezier(.7,0,.15,1);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-categories {
  display: flex; flex-direction: column; gap: 17px;
}
.cookie-category {
  display: flex; align-items: center;
  gap: 8px;
  font-size: 1.06rem;
}
.cookie-category label {
  font-weight: 600;
  color: #85B753;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px; top: 13px;
  background: none; border: none; color: #85B753;
  font-size: 1.45rem; cursor: pointer;
}
.cookie-modal-close:hover { color: #F9F9F9; }

/* === UTILITIES & MICRO-INTERACTIONS === */
.btn-primary, .btn-secondary, button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .17s, color .17s, box-shadow 0.14s, border-color 0.12s;
}

@media (max-width: 992px) {
  .container { max-width: 100%; }
  footer .container { flex-direction: column; gap: 24px; align-items: flex-start; }
}
@media (max-width: 768px) {
  /* Nav: hide desktop, show mobile */
  header nav { display: none; }
  .btn-primary { margin-left: 0; }
  .mobile-menu-toggle { display: block; }
  header .container, footer .container { flex-direction: row; }
  .container { padding: 0 8px; }

  .hero {
    padding: 70px 0 40px 0;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 18px;
  }
}
@media (max-width: 600px) {
  .container, footer .container {
    padding: 0 2vw;
    flex-direction: column;
    gap: 20px;
  }
  .hero {
    padding: 44px 0 22px 0;
  }
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.12rem; }
  .section {
    padding: 18px 2vw;
    margin-bottom: 24px;
  }
  .testimonial-card {
    padding: 12px;
    font-size: 1rem;
    margin-bottom: 14px;
  }
}
.text-image-section, .content-grid {
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 769px) {
  .text-image-section, .content-grid {
    flex-direction: row;
    gap: 30px;
  }
}

/* === FORM ELEMENTS === */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 8px;
  border: 1.5px solid #23496544;
  background: #F9F9F9;
  color: #234965;
  font-size: 1rem;
  padding: 10px 16px;
  width: 100%;
  margin-bottom: 18px;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #85B753;
  outline: none;
}
::placeholder { color: #23496588; }

/* === Scrollbar for Futuristic Touch === */
::-webkit-scrollbar { width: 10px; background: #1e2531; }
::-webkit-scrollbar-thumb { background: #234965; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #85B753; }

/* === NEON DECOR EFFECTS === */
.btn-primary, .btn-secondary, .cookie-accept, .cookie-reject, .cookie-settings {
  box-shadow: 0 0 0 #85B75377, 0 0 5px #85B75322 inset, 0 2px 20px 0 #2349650b;
}
.btn-primary:hover, .btn-primary:focus,
.btn-secondary:hover, .btn-secondary:focus,
.cookie-accept:hover, .cookie-settings:hover {
  box-shadow: 0 0 0 #85B753, 0 0 14px #85B75377, 0 0 32px #85B7532c;
}

/* === ICON GLOW === */
header nav a.active, .mobile-nav a.active {
  color: #85B753;
  text-shadow: 0 0 14px #85B753, 0 0 10px #23496533;
  font-weight: 700;
}

/* === VISUAL HIERARCHY === */
.section h2 { color: #85B753; letter-spacing: 0.03em; }
.section h3 { color: #F9F9F9; font-size: 1.09rem; }
.section p, .card p, .text-section p { color: #F9F9F9; font-size: 1rem; }

/* === HIGHLIGHT SPANS === */
span, strong {
  color: #85B753;
  font-weight: 700;
}

/* === A11Y/FOCUS STATES === */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 3px solid #85B753;
  outline-offset: 1.5px;
}

/* === MODERN CARD/ELEMENT DECORATION === */
.card {
  border: 1.5px solid #23496544;
}

/* === MISC UTILITIES === */
.hide-on-mobile { display: block; }
@media (max-width: 768px) {
  .hide-on-mobile { display: none !important; }
}

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

/* === Z-INDEX LANDSCAPE === */
header { z-index: 1020; }
.mobile-menu { z-index: 1050; }
.cookie-banner { z-index: 1200; }
.cookie-modal-overlay { z-index: 1300; }

/* === END CSS === */
