/* ==== CSS RESET AND NORMALIZE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body, html {
  min-height: 100vh;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #161e2a;
  color: #E9E6DF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #6efff6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E08532;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 16px;
}
img {
  max-width: 100%;
  display: block;
}
/* Hide tap highlight on touch */
a, button {
  -webkit-tap-highlight-color: transparent;
}

/* ==== BRAND TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.375rem; margin-bottom: 16px; }
h2 { font-size: 1.625rem; margin-bottom: 12px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }

p, li, div, span, strong, em {
  font-family: 'Roboto', Arial, sans-serif;
}
strong { color: #E08532; font-weight: bold; }
em { color: #6efff6; font-style: italic; }

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
}

/* ==== UTILITY LAYOUT CLASSES AND CONTAINER ==== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}
.text-section {
  margin-bottom: 16px;
  padding: 0;
}
section {
  background: #232e3e;
  border-radius: 20px;
  box-shadow: 0 2px 32px 2px #0d1623;
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: #1C3552;
  box-shadow: 0 3px 48px #0e1931aa;
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 0;
}
header img {
  height: 48px;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #E9E6DF;
  font-size: 1rem;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  transition: color 0.18s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  margin: 0 auto;
  background: linear-gradient(90deg, #E08532 0%, #6efff6 100%);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.6,0,0.4,1);
}
.main-nav a:hover, .main-nav a:focus {
  color: #E08532;
}
.main-nav a:hover:after, .main-nav a:focus:after { width: 80%; }

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #E08532 0%, #6efff6 100%);
  color: #1C3552;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 12px 32px;
  margin-left: 32px;
  margin-right: 0;
  border-radius: 36px;
  box-shadow: 0 0 24px #6efff663, 0 2px 8px #0002;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #6efff6 0%, #E08532 100%);
  color: #161e2a;
  box-shadow: 0 2px 16px #E0853288, 0 4px 32px #6efff622;
  transform: translateY(-3px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: #E9E6DF;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  min-width: 44px;
  min-height: 44px;
  margin-left: 18px;
  transition: background 0.1s, color 0.15s;
  z-index: 1101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #6efff6;
  background: #21344a77;
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,53,82,0.98);
  box-shadow: 0 0 88px 0 #000a;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.5, 0.2, 0.2, 1.2);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 28px 24px 28px;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 8px;
  padding: 8px;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 32px;
  transition: background 0.12s, color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E08532;
  color: #232e3e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  width: 100%;
}
.mobile-nav a {
  color: #6efff6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 14px 14px 14px 0;
  border-radius: 12px;
  text-transform: uppercase;
  transition: background 0.16s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(111,255,246,0.13);
  color: #fff;
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .cta-button { margin-left: 0; }
}
@media (max-width: 600px) {
  header img { height: 36px; }
  .mobile-menu {
    padding: 16px 8px 16px 18px;
  }
  .mobile-nav a {
    font-size: 1.05rem;
    padding: 12px 12px 12px 0;
  }
}

/* ==== FOOTER NAVIGATION ==== */
footer {
  background: #162844;
  padding: 32px 0 18px 0;
  box-shadow: 0 -2px 24px #0d191f89;
  position: relative;
  z-index: 900;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 25px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #6efff6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E08532;
}
footer p {
  color: #9fb1c9;
  font-size: 0.98rem;
}

@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    gap: 13px;
    align-items: center;
  }
  footer {
    padding: 24px 0 10px 0;
  }
}

/* ==== MAIN CONTENT & CARDS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #222d39;
  border-radius: 18px;
  box-shadow: 0 2px 14px #E0853244, 0 4px 48px #0d192488;
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  color: #e1ecf6;
  transition: box-shadow 0.19s, transform 0.17s;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 36px #6efff688, 0 2px 16px #E0853255;
  transform: translateY(-5px) scale(1.016);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 14px;
}

.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: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #1c2636;
  border-radius: 12px;
  padding: 20px 18px;
  box-shadow: 0 2px 10px #1c355244;
}

ul, ol {
  line-height: 1.7;
  color: #eaeaea;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
li > img {
  width: 24px;
  height: 24px;
  margin-right: 11px;
  vertical-align: middle;
  display: inline-block;
}
li {
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding-bottom: 3px;
}
@media (max-width: 600px) {
  ul, ol {
    gap: 13px;
  }
  li {
    font-size: 0.98rem;
    gap: 8px;
  }
}

.text-section ul,
.text-section ol {
  margin-bottom: 0;
  gap: 8px;
}
.text-section {
  background: none;
  border-radius: 0;
  color: #eef2fa;
  box-shadow: none;
  padding: 0;
}

/* ==== TESTIMONIAL CARDS ==== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #f7fafc;
  border-radius: 17px;
  box-shadow: 0 2px 16px #E0853250;
  color: #1C3552;
  font-size: 1.1rem;
  position: relative;
  transition: box-shadow 0.19s, transform 0.17s;
  min-width: 230px;
}
.testimonial-card p {
  color: #222f3c;
}
.testimonial-card div {
  font-size: 1rem;
  color: #E08532;
  font-weight: 700;
  letter-spacing: 1px;
}
.testimonial-card span {
  color: #1C3552;
  font-weight: 500;
  margin-left: 7px;
}
.testimonial-card:hover, 
.testimonial-card:focus-within {
  box-shadow: 0 7px 36px #E0853288;
  transform: translateY(-4px) scale(1.02);
}
@media (max-width: 950px) {
  .content-wrapper { flex-direction: column; }
}
@media (max-width: 600px) {
  .testimonial-card {
    font-size: 1rem;
    padding: 13px;
  }
}

/* ==== BUTTONS & INTERACTIONS ==== */
button, .cta-button, .mobile-menu-close, .mobile-menu-toggle {
  outline: none;
  transition: filter 0.14s, box-shadow 0.14s, color 0.16s, background 0.14s;
}
button:active, .cta-button:active {
  filter: brightness(0.98) contrast(1.08);
  box-shadow: 0 0 7px #E0853299;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; }

  .main-nav, .cta-button:not(.in-mobile) {
    display: none;
  }
  .cta-button.in-mobile {
    display: block;
    margin: 17px 0 0 0;
  }
}
@media (max-width: 520px) {
  section { padding: 18px 3px; }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #232e3e;
  color: #fff;
  box-shadow: 0 -2px 32px #1c355277;
  z-index: 3000;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  animation: fadeInSlideUp 0.6s cubic-bezier(0.7,0,0.3,1) 0.1s backwards;
}
@keyframes fadeInSlideUp {
  from { opacity: 0; transform: translateY(64px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.cookie-consent-text {
  max-width: 500px;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-left: 20px;
}
.cookie-btn {
  display: inline-block;
  background: linear-gradient(90deg, #E08532 0%, #6efff6 100%);
  color: #1C3552;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 23px;
  border-radius: 22px;
  border: none;
  box-shadow: 0 0 10px #E085326a;
  cursor: pointer;
  margin-right: 0;
  transition: background 0.22s, color 0.21s, box-shadow 0.15s, transform 0.14s;
}
.cookie-btn.settings {
  background: #232e3e;
  color: #6efff6;
  border: 2px solid #6efff6;
  box-shadow: none;
}
.cookie-btn.reject {
  background: #1C3552;
  color: #fff;
  border: 2px solid #E08532;
  box-shadow: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: linear-gradient(90deg, #6efff6 0%, #E08532 100%);
  color: #232e3e;
  box-shadow: 0 4px 22px #E0853239;
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn.settings:hover {
  background: #1C3552;
  color: #E08532;
  border: 2px solid #E08532;
}
.cookie-btn.reject:hover {
  background: #232e3e;
  color: #6efff6;
  border: 2px solid #6efff6;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 19px 11px 13px 11px;
  }
  .cookie-consent-actions {
    margin-left: 0;
    gap: 11px;
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3500;
  left: 0; top:0; width: 100vw; height: 100vh;
  background: rgba(22,40,68,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.4s cubic-bezier(.45,0,.45,1) backwards;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #232e3e;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 40px #0e193099;
  padding: 40px 34px 34px 34px;
  max-width: 90vw;
  min-width: 340px;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: slideUpModal 0.3s cubic-bezier(.45,0,.45,1) backwards;
  position: relative;
}
@keyframes slideUpModal {
  from { opacity: 0; transform: translateY(48px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.cookie-modal h3 {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  background: none;
  color: #6efff6;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 4px;
  transition: background 0.14s, color 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #6efff6;
  color: #232e3e;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 19px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #E08532;
}
.cookie-switch {
  position: relative;
  width: 40px;
  height: 22px;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute; cursor: pointer;top: 0;left: 0;right: 0;bottom: 0;
  background: #1C3552;
  border-radius: 18px;
  transition: background 0.22s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #6efff6;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-btn {
  margin-top: 10px;
}
@media (max-width: 520px) {
  .cookie-modal {
    padding: 20px 8px 13px 8px;
    min-width: 80vw;
    width: 97vw;
    max-width: 99vw;
  }
}

/* ==== GENERAL ANIMATIONS ==== */
[tabindex]:focus,
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid #6efff6;
  outline-offset: 1px;
}

/* ==== CUSTOM SCROLLBAR ==== */
::-webkit-scrollbar {
  width: 10px;
  background: #1C3552;
}
::-webkit-scrollbar-thumb {
  background: #E08532EE;
  border-radius: 6px;
}

/* ==== ADDITIONAL STYLE DETAILS ==== */
/* Selection color */
::selection { background: #6efff6; color: #1C3552; }
::-moz-selection { background: #6efff6; color: #1C3552; }

/* Focus/active states for accessibility */
input:focus, textarea:focus, select:focus {
  outline: 2px solid #E08532;
  outline-offset: 2px;
}

/* Decorative: neon accent under h1 & h2 */
h1, h2 {
  position: relative;
  z-index: 1;
}
h1:after, h2:after {
  content: '';
  display: block;
  height: 4px;
  width: 50px;
  margin-top: 5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #E08532 0%, #6efff6 100%);
  box-shadow: 0 0 9px #6efff699;
}

/* Section highlighting - neon border on hover */
section:hover, section:focus-within {
  box-shadow: 0 4px 44px #6efff670, 0 1px 8px #E0853263;
}

/* Responsive adjustment for .card-container and .content-grid */
@media (max-width: 900px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* Hide show elements for print, accessibility etc. */
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap; border:0; padding:0; margin:0;}

/* End of style.css */
