/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #e7eaf0;
  background: #101728;
  line-height: 1.7;
  min-height: 100vh;
  background-color: #101728;
  /* subtle diagonal gradient for "futuristic feel" */
  background-image: linear-gradient(135deg, #0A2342 70%, #16213e 100%);
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #40C9A2;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #FCA311;
  outline: none;
}
ul, ol {
  padding-left: 1.25em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1.13;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }

p, ul, ol, li {
  font-size: 1rem;
  color: #c5cad8;
}
li {
  margin-bottom: 8px;
}
strong { color: #FCA311; }

.container {
  width: 100%;
  max-width: 1150px;
  padding: 0 18px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.subheadline {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #40C9A2;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.section, .hero-section, .features-section, .about-section, .facts-list-section, .about-story-section, .contact-short-section, .contact-info-section, .contact-form-section, .text-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 16px;
}
.hero-section {
  background: linear-gradient(135deg, #0A2342 80%, #263864 100%);
  box-shadow: 0 4px 28px 0 rgb(40 236 249 / 4%),0 1px 4px 0 rgb(10 35 66 / 10%);
  border-radius: 0 0 28px 28px;
}
.features-section, .about-section, .about-story-section, .facts-list-section, .contact-short-section, .contact-info-section, .contact-form-section, .text-section {
  background: #141c2b;
  box-shadow: 0 1px 4px 0 rgb(10 35 66 / 8%);
  border-radius: 18px;
}

/* FLEX LAYOUT PATTERNS */
.feature-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card-container {
  gap: 24px;
}
.card {
  background: #181e2d;
  border-radius: 18px;
  box-shadow:0 3px 18px 0 rgb(64 201 162 / 8%),0 1px 4px 0 rgb(10 35 66 / 6%);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  padding: 32px 24px;
  flex: 1 1 320px;
  min-width: 235px;
  transition: transform 0.18s cubic-bezier(.56,.11,.27,.96), box-shadow 0.23s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:0 6px 30px 0 rgb(252 163 17 / 12%),0 1px 6px 0 rgb(10 35 66 / 7%);
}

.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;
  background: #f7fafc;
  color: #222831;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow:0 3px 18px 0 rgb(40 236 249 / 12%);
}

.feature-item {
  background: #181e2d;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 16px;
  box-shadow: 0 1px 4px 0 rgb(40 201 162 / 9%);
  padding: 28px 20px 24px 20px;
  flex: 1 1 260px;
  min-width: 200px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid transparent;
  transition: border 0.2s, box-shadow 0.19s, transform 0.2s;
}
.feature-item:hover {
  border: 1.5px solid #FCA311;
  box-shadow: 0 2px 16px 0 rgb(252 163 17 / 19%);
  transform: translateY(-6px) scale(1.025);
}
.feature-item img {
  height: 48px;
  width: 48px;
  display: block;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 4px #40C9A2aa) drop-shadow(0 0 20px #01253526);
}
.feature-item h3 {
  color: #40C9A2;
  font-size: 1.1rem;
}
.feature-item p {
  color: #c5cad8;
  font-size: 1rem;
}

/* HERO LAYOUT */
.hero-section .container,
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero-section h1 {
  font-size: 2.8rem;
  color: #fff;
  text-shadow: 0 2px 18px #40C9A240;
  letter-spacing: 1px;
}
.hero-section .cta-btn {
  margin-top: 18px;
}

/* BUTTONS & INTERACTIONS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #40C9A2;
  color: #0A2342;
  padding: 12px 36px;
  border-radius: 36px;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.07em;
  border: none;
  box-shadow: 0 1px 12px 0 rgb(64 201 162 / 12%);
  cursor: pointer;
  outline: none;
  text-shadow: none;
  text-decoration: none;
  margin-top: 6px;
  margin-bottom: 6px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.14s;
  position: relative;
}
.cta-btn:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 36px;
  box-shadow: 0 0 14px 2px #FCA31144,0 0 38px 3px #40C9A244;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.26s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FCA311;
  color: #0A2342;
  box-shadow: 0 5px 36px 0 #FCA31134, 0 0 1px #000a;
  transform: translateY(-2px) scale(1.03);
}
.cta-btn:hover:before, .cta-btn:focus:before {
  opacity: 0.7;
}

button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* NAVIGATION & HEADER */
header {
  background: #0A2342;
  box-shadow: 0 2px 24px 0 rgb(64 201 162 / 6%);
  position: sticky;
  top: 0;
  z-index: 21;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1150px;
  margin: 0 auto;
  padding: 14px 18px 9px 18px;
  width: 100%;
}
.logo-link img {
  width: 143px;
  height: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #e7eaf0;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 10px;
  position: relative;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: background 0.15s, color 0.14s;
}
.main-nav a:hover, .main-nav a:active, .main-nav a:focus {
  color: #FCA311;
  background: #181e2d;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #FCA311;
  margin-left: 10px;
  transition: color 0.18s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #40C9A2;
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #101728ed;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.74,-0.01,.41,1.01);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #FCA311;
  background: none;
  border: none;
  padding: 28px 26px 18px 0;
  cursor: pointer;
  z-index: 1103;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #40C9A2;
}
.mobile-nav {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 20px 32px 0 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 8px;
  padding: 12px 0;
  display: block;
  width: 100%;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FCA311;
  background: #182439;
}

/* FOOTER */
footer {
  background: #11192b;
  border-radius: 18px 18px 0 0;
  margin-top: 60px;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 18px 14px 18px;
  max-width: 1150px;
  margin: 0 auto;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  align-items: center;
}
.footer-nav a {
  color: #c5cad8;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #FCA311;
}
.footer-info {
  color: #878dad;
  font-size: 0.98rem;
}

/* CARDS & FACT LISTS */
.facts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
  padding-left: 18px;
}
.facts-list li {
  background: #171f2e;
  color: #e7eaf0;
  border-left: 4px solid #40C9A2;
  padding: 16px 18px;
  border-radius: 10px 18px 14px 10px;
  margin-bottom: 8px;
  font-size: 1.08rem;
  box-shadow: 0 1px 4px 0 rgb(64 201 162 / 6%);
}
.facts-list .small {
  display: block;
  font-size: 0.98rem;
  color: #FCA311;
  margin-top: 5px;
}

/* ABOUT-STYLE LISTS */
.about-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.about-section ul li {
  background: #181e2d;
  padding: 12px 20px;
  border-radius: 8px;
  color: #40C9A2;
  font-size: 1.1rem;
  list-style: none;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 1px 5px 0 rgb(40 201 162 / 8%);
}

/* CONTACT INFO ICONS */
.contact-info-section p img {
  vertical-align: middle;
  margin-right: 8px;
  height: 25px;
  width: 25px;
  display: inline-block;
}
.contact-info-section p {
  display: flex;
  align-items: center;
}

/* MODALS & BANNERS */
/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #11192c;
  color: #e7eaf0;
  z-index: 12010;
  box-shadow: 0 -2px 24px 0 #40C9A209;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 22px 22px 22px;
  transition: transform 0.32s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #c5cad8;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}
.cookie-btn {
  border: none;
  border-radius: 36px;
  padding: 10px 28px;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.18s, color 0.14s;
  margin-right: 6px;
  box-shadow: 0 1px 10px 0 rgb(64 201 162 / 8%);
  cursor: pointer;
  outline: none;
}
.cookie-accept {
  background: #40C9A2;
  color: #0A2342;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #FCA311;
  color: #0A2342;
}
.cookie-reject {
  background: #FCA311;
  color: #0A2342;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #40C9A2;
  color: #0A2342;
}
.cookie-settings {
  background: #181e2d;
  color: #40C9A2;
  border: 1.2px solid #40C9A2;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #40C9A2;
  color: #0A2342;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 13000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #050814ea;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #181e2d;
  color: #e7eaf0;
  padding: 40px 28px 32px 28px;
  border-radius: 18px;
  max-width: 420px;
  min-width: 280px;
  box-shadow: 0 6px 30px 0 rgb(252 163 17 / 15%),0 1px 10px 0 rgb(64 201 162 / 8%);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.28rem;
  color: #FCA311;
}
.cookie-pref-list {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}
.cookie-pref-list li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 20px;
  background: #141c2b;
  transition: background 0.15s;
  position: relative;
  outline: none;
  cursor: pointer;
  border: 1.5px solid #40C9A2;
}
.cookie-toggle:checked {
  background: #40C9A2;
  border-color: #FCA311;
}
.cookie-toggle:before {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  top: 3px;
  border-radius: 50%;
  background: #FCA311;
  width: 16px;
  height: 16px;
  transition: left 0.19s cubic-bezier(.5,0,.28,1), background 0.16s;
}
.cookie-toggle:checked:before {
  left: 18px;
  background: #0A2342;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 16px;
  font-size: 1.6rem;
  color: #40C9A2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 100%;
  transition: color 0.16s, background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #222e44;
  color: #FCA311;
}

/* TYPOGRAPHY SCALE FOR RESPONSIVE */
@media (max-width: 600px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.06rem; }
  .subheadline { font-size: 1.05rem; }
  .feature-item h3 { font-size: 1rem; }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1023px) {
  .header-container, .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 11px;
  }
  .footer-nav {
    gap: 16px;
  }
  .feature-grid {
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .hero-section .container, .hero-section .content-wrapper {
    padding: 0 !important;
  }
  .feature-grid, .card-container, .content-grid, .about-section ul {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .section, .hero-section, .features-section, .about-section, .facts-list-section, .about-story-section, .contact-short-section, .contact-info-section, .contact-form-section, .text-section {
    margin-bottom: 36px;
    padding: 24px 7px;
    border-radius: 12px;
  }
  .facts-list li,
  .about-section ul li,
  .feature-item {
    min-width: 0;
    font-size: 1rem;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .cookie-modal {
    padding: 26px 10px 20px 10px;
    max-width: 96vw;
  }
  .cookie-banner {
    padding: 20px 8px 17px 8px;
    font-size: 1rem;
  }
}

/* VISUAL EFFECTS: NEON ACCENTS, SHADOWS */
.feature-item, .card, .facts-list li, .about-section ul li {
  box-shadow: 0 1.5px 8px 0 #40C9A228;
}
.feature-item:after {
  content: '';
  display: block;
  width: 70%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #40C9A2, #FCA311);
  position: absolute;
  bottom: 16px;
  left: 15%;
  opacity: 0.25;
}
.card {
  border-radius: 18px;
  border: 1.2px solid #181e2d;
}
.card:hover {
  border-color: #40C9A2;
}

/* TEXT SECTIONS (POLICY PAGES ETC.) */
.text-section {
  background: #16213e;
  box-shadow: 0 1px 6px 0 rgb(40 201 162 / 6%);
  color: #c5cad8;
}
.text-section h1, .text-section h2, .text-section h3 {
  color: #FCA311;
}
.text-section ul {
  padding-left: 28px;
  margin-top: 10px;
}
.text-section ul li {
  margin-bottom: 8px;
}

/* ACCESSIBILITY HELPERS */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .cookie-settings:focus {
  outline: 2px solid #FCA311;
  outline-offset: 1.6px;
}

/* Z-INDEX LAYERING */
header, .header-container { z-index: 51; position: relative; }
footer { z-index: 10; position: relative; }
.mobile-menu { z-index: 999; }


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