/* ==== 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;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #f9f7f4;
  background-color: #163447;
  background-image: linear-gradient(135deg, #163447 60%, #1b2940 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-x: hidden;
}
a {
  color: #7C9C6F;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #fff;
  outline: none;
}
ul, ol {
  padding-left: 22px;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

/* ==== BRAND TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
p, li, blockquote {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #f9f7f4;
  margin-bottom: 10px;
  line-height: 1.7;
}
strong {
  color: #7C9C6F;
}
blockquote {
  background: #f9f7f4;
  color: #163447;
  border-left: 3px solid #7C9C6F;
  padding: 18px 24px;
  margin: 0 0 10px 0;
  border-radius: 8px;
  font-style: italic;
  box-shadow: 0 1px 12px 0 rgba(22,52,71,0.07);
}

/* ==== LAYOUT CONTAINER ==== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 38px;
  }
}

/* ==== HEADER ==== */
header {
  background: #141d27;
  box-shadow: 0 4px 18px 0 rgba(22,52,71,0.07);
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  height: 74px;
  min-height: 74px;
}
header a img {
  height: 38px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #f9f7f4;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color 0.18s;
}
header nav a:hover, header nav a:focus {
  color: #7C9C6F;
}
.cta-btn {
  background: #7C9C6F;
  color: #163447;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 10px 38px;
  font-size: 1.05rem;
  border-radius: 28px;
  margin-left: 22px;
  box-shadow: 0 3px 18px 0 rgba(124,156,111,0.11);
  border: none;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #96be8e;
  color: #163447;
  box-shadow: 0 1px 24px 0 rgba(124,156,111,0.16);
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  color: #7C9C6F;
  border: none;
  cursor: pointer;
  margin-left: 22px;
  transition: color 0.16s;
  padding: 2px 8px;
  z-index: 101;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #7C9C6F;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; 
  width: 100vw; height: 100vh;
  background: #141d27;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.4,1.41,.55,.94);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  background: none;
  border: none;
  font-size: 2.35rem;
  margin: 26px 0 0 20px;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 202;
}
.mobile-menu-close:focus {
  outline: 2px solid #7C9C6F;
}
.mobile-nav {
  margin-top: 44px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  color: #f9f7f4;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #263247;
  width: 100%;
  display: block;
  border-radius: 0;
  transition: color 0.14s, background 0.19s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #21314b;
  color: #7C9C6F;
}
@media (max-width: 1000px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
@media (max-width: 600px) {
  .mobile-nav {
    padding: 0 16px;
  }
}

/* ==== HERO ==== */
.hero {
  background: linear-gradient(135deg, #163447 82%, #162533 100%);
  border-bottom: 4px solid #7C9C6F;
  padding: 56px 0 38px 0;
  margin-bottom: 0;
  min-height: 270px;
  width: 100%;
  box-shadow: 0 8px 44px 0 rgba(22,52,71,0.11);
}
.hero .container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 700px;
  align-items: center;
  text-align: center;
  gap: 16px;
}

/* ==== FEATURES, CARDS, AND FLEX STRUCTURE ==== */
.features-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-grid > div {
  flex: 1 1 230px;
  min-width: 230px;
  background: #1f334a;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(19,43,64,0.08);
  padding: 28px 16px 20px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, background 0.18s;
  border: 1.5px solid transparent;
}
.features-grid > div:hover, .features-grid > div:focus-within {
  box-shadow: 0 8px 32px 0 #7C9C6F33;
  border: 1.5px solid #7C9C6F55;
  background: #21314b;
}
.features-grid img {
  width: 40px; height: 40px;
  margin-bottom: 8px;
}

.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #1f334a;
  border-radius: 16px;
  box-shadow: 0 3px 14px 0 rgba(19,43,64,0.10);
  margin-bottom: 20px;
  padding: 28px 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 260px;
  transition: box-shadow 0.19s, border 0.19s;
  border: 1.5px solid transparent;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 33px 0 #7C9C6F33;
  border: 1.5px solid #7C9C6F55;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* ==== FLEX CONTENT GRIDS ==== */
.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: 900px) {
  .features-grid, .content-grid, .card-container, .card-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .features-grid, .content-grid, .card-container, .card-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ==== PROCESS STEPS LIST ==== */
.process-steps {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  margin: 0 0 14px 0;
  padding-left: 0;
  list-style: none;
}
.process-steps li {
  background: #223d60;
  color: #fff;
  border-radius: 12px;
  padding: 18px 15px;
  min-width: 140px;
  box-shadow: 0 3px 18px 0 rgba(22,52,71,0.08);
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1rem;
}
.process-steps img {
  width: 28px; height: 28px;
}
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 12px;
  }
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  background: #f9f7f4;
  padding: 36px 0 36px 0;
  margin-bottom: 60px;
}
.testimonials .container, .testimonials .content-wrapper {
  align-items: center;
  gap: 24px;
}
.testimonials h2 {
  color: #163447;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #163447;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(22,52,71,0.11);
  max-width: 580px;
  width: 100%;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 1.5px solid #7C9C6F22;
}
.testimonial-card blockquote {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border: none;
  color: #163447;
  font-size: 1.05rem;
}
.testimonial-card footer {
  font-weight: 600;
  color: #7C9C6F;
  font-size: 1rem;
  font-style: normal;
}
.testimonial-card:hover {
  transform: translateY(-5px) scale(1.0125);
  box-shadow: 0 8px 36px 0 #7C9C6F1A;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 16px;
  }
}

/* ==== CTA BAR ==== */
.cta-bar {
  background: #7C9C6F;
  padding: 36px 0 24px 0;
  margin-bottom: 0;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 0px 32px 0 rgba(124,156,111,0.16);
}
.cta-bar h2 {
  color: #163447;
  text-align: center;
}
.cta-bar .cta-btn {
  background: #163447;
  color: #fff;
  border: 2px solid #7c9c6f;
  margin: 0 auto;
  display: inline-block;
  min-width: 200px;
  margin-top: 14px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cta-bar .cta-btn:hover {
  background: #1b2940;
  color: #7C9C6F;
}
@media (max-width: 600px) {
  .cta-bar {
    padding: 22px 0 16px 0;
    border-radius: 0 0 16px 16px;
  }
}

/* ==== TEXT SECTION / FAQ / INFO ==== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  color: #f9f7f4;
}
.text-section img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.faq-list > div {
  background: #1f334a;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(22,52,71,0.07);
  padding: 18px 18px 18px 22px;
  border-left: 4px solid #7C9C6F;
  margin-bottom: 16px;
  transition: box-shadow 0.13s;
}
.faq-list > div:hover, .faq-list > div:focus-within {
  box-shadow: 0 8px 28px 0 #7C9C6F33;
}

/* ==== FEATURE ITEM ==== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== FOOTER ==== */
footer {
  background: #141d27;
  padding: 38px 0 18px 0;
  width: 100%;
  border-top: 4px solid #7C9C6F;
  box-shadow: 0 -1px 22px 0 rgba(22,52,71,0.11);
  color: #f9f7f4;
  margin-top: auto;
}
footer .container {
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
footer a img {
  height: 38px;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #7C9C6F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
}
footer .contact-info {
  font-size: 0.98rem;
  color: #f9f7f4;
}
footer .contact-info a {
  color: #7C9C6F;
}
footer small {
  display: block;
  text-align: center;
  color: #ccc;
  margin-top: 18px;
  font-size: 0.96rem;
  opacity: 0.82;
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    gap: 23px;
    align-items: flex-start;
    text-align: left;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #1f334a;
  color: #f9f7f4;
  box-shadow: 0 -2px 18px 0 rgba(22,52,71,0.12);
  z-index: 3000;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 18px 24px;
  font-size: 1rem;
  transition: transform 0.33s cubic-bezier(.4,1.41,.55,.94);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-text {
  flex: 1;
  font-size: 1rem;
  color: #f9f7f4;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn {
  padding: 8px 18px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  outline: none;
  background: #7C9C6F;
  color: #163447;
  font-weight: 700;
  margin-right: 8px;
  transition: background 0.16s, color 0.16s, box-shadow 0.19s;
}
.cookie-btn.reject {
  background: #f16464;
  color: #fff;
}
.cookie-btn.settings {
  background: #163447;
  color: #fff;
  border: 1.5px solid #7C9C6F;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #96be8e;
  color: #163447;
  box-shadow: 0 3px 18px 0 rgba(124,156,111,0.16);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b32626;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #264262;
  color: #7C9C6F;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 8px 14px 8px;
    font-size: 0.99rem;
  }
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(16,24,36,0.74);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.22s cubic-bezier(.35,1.3,.6,.97);
}
.cookie-modal.hide {
  pointer-events: none;
  opacity: 0;
}
.cookie-modal-content {
  background: #1f334a;
  color: #f9f7f4;
  border-radius: 19px;
  box-shadow: 0 8px 44px 0 rgba(22,52,71,0.16);
  padding: 36px 26px 28px 26px;
  min-width: 290px;
  width: 95vw;
  max-width: 430px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 3110;
  animation: cookieModalIn 0.22s cubic-bezier(.55,1.6,.6,.97);
}
@keyframes cookieModalIn {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.23rem;
  color: #7C9C6F;
  margin-bottom: 6px;
}
.cookie-modal-content .cookie-category {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-modal-content label {
  color: #f9f7f4;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cookie-modal-content input[type=checkbox] {
  accent-color: #7C9C6F;
  width: 18px; height: 18px;
  margin-right: 7px;
}
.cookie-modal-content .cookie-btn-row {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-content .cookie-btn {
  margin: 0;
}
.cookie-modal-content .close-cookie-modal {
  position: absolute;
  top: 9px; right: 13px;
  background: none;
  color: #7C9C6F;
  border: none;
  font-size: 2rem;
  font-weight: 800;
  padding: 0 3px;
  cursor: pointer;
}
.close-cookie-modal:focus {
  outline: 2px solid #7C9C6F;
}

/* ==== FORM & INPUT BASIC STYLES ==== */
input, textarea, select {
  width: 100%;
  padding: 9px 14px;
  border-radius: 14px;
  border: 1.5px solid #7C9C6F66;
  background: #141d27;
  color: #f9f7f4;
  font-size: 1rem;
  transition: border 0.16s, box-shadow 0.14s;
  margin-bottom: 12px;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #7C9C6F;
  box-shadow: 0 1px 9px 0 #7C9C6F22;
}

/* ==== ANIMATED NEON ACCENTS ==== */
.features-grid > div, .card, .testimonial-card, .faq-list > div, .process-steps li {
  box-shadow: 0 7px 25px rgba(124,156,111,0.08), 0 0 0 1.2px #7C9C6F20;
  position: relative;
  overflow: hidden;
}
.features-grid > div::after, .card::after, .testimonial-card::after, .faq-list > div::after, .process-steps li::after {
  content: '';
  position: absolute;
  left: -80px; top: -80px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, #7C9C6FAA 0%, transparent 70%);
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
  filter: blur(4px);
  transition: opacity 0.19s;
}
.features-grid > div:hover::after, .card:hover::after, .testimonial-card:hover::after, .faq-list > div:hover::after, .process-steps li:hover::after {
  opacity: 0.17;
}

/* ==== SPACING HELPERS ==== */
.mb-2 {margin-bottom: 14px;}
.mb-3 {margin-bottom: 22px;}

/* ==== RESPONSIVE TYPOGRAPHY SCALE ==== */
@media (max-width: 700px) {
  h1 {font-size: 1.55rem;}
  h2 {font-size: 1.25rem;}
  .hero {min-height: 160px;}
}

/* ==== MICRO-INTERACTIONS ==== */
.card, .features-grid > div, .faq-list > div, .testimonial-card {
  transition: box-shadow 0.17s, border 0.17s, transform 0.16s;
}
.card:active, .features-grid > div:active, .faq-list > div:active, .testimonial-card:active {
  transform: scale(0.97);
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* ==== SCROLLBAR ==== */
::-webkit-scrollbar {
  width: 10px;
  background: #141d27;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #2a4a60;
  border-radius: 6px;
  border: 2px solid #141d27;
}

/* ==== UTILITIES ==== */
.hide {
  display: none !important;
}
.visible {
  display: block !important;
}

/* ==== FOCUS VISIBLE ACCESSIBILITY ==== */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid #7C9C6F;
  outline-offset: 2px;
}

/* ==== SELECTIVE DARK TEXT FOR TESTIMONIALS ==== */
.testimonials, .testimonials h2, .testimonial-card, .testimonial-card blockquote {
  color: #163447 !important;
}


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