/*-----------------------------------------------
  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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  width: 100vw;
  background: #112F41;
  overflow-x: hidden;
  color: #FFFFFF;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
input, textarea, select {
  font: inherit;
}
*:focus {
  outline: 2px solid #F2C777;
  outline-offset: 2px;
}

/* ---------------------------------------------
  BRAND FONTS (Montserrat + Roboto) 
----------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #112F41;
  color: #FFFFFF;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #F2C777;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 15px; }
h4, h5, h6 { font-size: 1rem; }

p, ul, ol, li, span {
  font-family: 'Roboto', Arial, sans-serif;
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.6;
}
p { margin-bottom: 16px; }
strong {
  color: #F2C777;
}

/* ---------------------------------------------
  GLOBAL CONTAINERS & SPACINGS
----------------------------------------------*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(17,47,65, 0.00);
  border-radius: 20px;
}
.text-section {
  padding: 32px 24px;
  margin-bottom: 28px;
  background: rgba(17,47,65, 0.72);
  border-radius: 20px;
  box-shadow: 0 6px 28px 0 rgba(0, 0, 0, 0.24);
}

/*-----------------------------------------------
  SECTIONS, CARDS, FLEX LAYOUTS
------------------------------------------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #131F34;
  border-radius: 28px;
  box-shadow: 0px 8px 40px 0px rgba(22,39,56,0.22);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card {
  background: #183052;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(17,47,65,0.23);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 260px;
  transition: box-shadow 0.26s, transform 0.22s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 40px 0 #F2C77744, 0 1px 2px 0 #2222;
  transform: translateY(-5px) scale(1.025);
  z-index: 2;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.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: #FFF;
  color: #112F41;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 #F2C77766, 0 1px 2px 0 #2221;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 440px;
  font-size: 1.1rem;
  transition: box-shadow 0.22s, transform 0.18s;
}
.testimonial-card p {
  color: #183052;
}
.testimonial-card span {
  color: #442;
  opacity: 0.8;
  font-size: 0.98rem;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px 0 #badfff4c, 0 1px 2px 0 #0002;
  transform: translateY(-3px) scale(1.02);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #162941;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 #0015;
  padding: 26px 18px 22px 18px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  transition: box-shadow 0.22s, transform 0.2s;
  margin-bottom: 20px;
  border: 1.5px solid #1c4766;
  position: relative;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 24px 0 #F2C77755, 0 1px 2px 0 #1112;
  transform: translateY(-4px) scale(1.025);
  border-color: #F2C777;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.testimonial-slider {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #122232;
  padding: 32px 16px 18px 16px;
  border-radius: 24px 24px 0 0;
  align-items: center;
}
.footer-wrapper ul {
  display: flex;
  gap: 18px;
}
.footer-wrapper li {
  font-size: 1rem;
}
.footer-wrapper a {
  color: #F2C777;
  transition: color 0.12s;
}
.footer-wrapper a:hover, .footer-wrapper a:focus {
  color: #FFF;
  text-shadow: 0 0 10px #F2C77799;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #DDEFFC;
  font-size: 0.96rem;
  line-height: 1.5;
  margin-bottom: 8px;
}
.footer-contact img {
  width: 18px;
  vertical-align: middle;
  margin-right: 4px;
}

/*-----------------------------------------------
  HEADER & NAVBAR
------------------------------------------------*/
header {
  width: 100%;
  background: #131F34;
  position: sticky;
  top: 0;
  z-index: 38;
  border-bottom: 1.5px solid #15274e;
  box-shadow: 0px 2px 12px 0 #0b1234cc;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
nav img {
  width: 56px;
  height: auto;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
nav ul li {
  display: flex;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: #F2C777;
  padding: 7px 13px;
  border-radius: 5px;
  letter-spacing: 0.02em;
  transition: color 0.12s, background 0.15s;
  position: relative;
}
nav ul li a:hover, nav ul li a:focus,
nav ul li a.active {
  background: #F2C777;
  color: #112F41;
  box-shadow: 0 2px 10px #F2C77733;
}
.btn-primary {
  background: #F2C777;
  color: #112F41;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 8px;
  padding: 12px 30px;
  box-shadow: 0 4px 24px 0 #F2C77745;
  border: none;
  transition: background 0.18s, color 0.13s, box-shadow 0.22s, transform 0.14s;
  margin-left: 18px;
  position: relative;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFF;
  color: #112F41;
  box-shadow: 0 8px 32px 0 #F2C77743, 0 1px 2px 0 #2221;
  transform: scale(1.035);
}
.btn-secondary {
  background: transparent;
  border: 2px solid #F2C777;
  color: #F2C777;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  border-radius: 8px;
  padding: 10px 26px;
  transition: background 0.13s, color 0.13s, border 0.17s;
  margin-top: 8px;
  outline: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F2C777;
  color: #183052;
  border: 2px solid #FFF;
}

/*-----------------------------------------------
  MOBILE NAVIGATION
------------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  background: #183052;
  color: #F2C777;
  border-radius: 8px;
  font-size: 2.15rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 14px;
  z-index: 55;
  transition: background 0.16s, color 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F2C777;
  color: #112F41;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #112F41ee;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  transform: translateX(-102vw);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.53,.01,.21,1), opacity 0.25s;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  margin: 24px 32px 0 0;
  font-size: 2.1rem;
  color: #F2C777;
  background: transparent;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  transition: background 0.16s, color 0.13s;
  z-index: 62;
  align-self: flex-end;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2C77744;
  color: #FFF;
}
.mobile-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.21rem;
  color: #F2C777;
  padding: 14px 0;
  border-radius: 6px;
  width: 80vw;
  display: block;
  transition: background 0.16s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2C777;
  color: #112F41;
}

/*---------------------------------------------
  HERO SECTION (Landing CTA)
----------------------------------------------*/
section:first-of-type {
  background: linear-gradient(102deg, #122852 40%, #193550 80%);
  box-shadow: 0 10px 56px 0 #0b123456;
  padding: 64px 0 44px 0;
  margin-bottom: 54px;
}
section:first-of-type h1 {
  color: #F2C777;
  font-size: 2.7rem;
  text-shadow: 0 2px 14px #F2C77725, 0px 2px 0 #0009;
  margin-bottom: 12px;
}
section:first-of-type p {
  color: #DAF7FF;
  font-size: 1.25rem;
}

section .btn-primary, section .btn-secondary {
  margin-top: 18px;
}

/*-----------------------------------------------
  MICRO-ANIMATIONS, EFFECTS & UTILITY CLASSES
------------------------------------------------*/
.neon {
  text-shadow: 0 2px 10px #F2C777DD, 0 0 2px #FFF;
}
[data-visible='true'] {opacity:1;pointer-events:auto;}
[data-visible='false'] {opacity:0;pointer-events:none;}

.fade-in {
  animation: fadein 0.9s cubic-bezier(.53,.01,.21,1);
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

/*-----------------------------------------------
  RESPONSIVE BREAKPOINTS
------------------------------------------------*/
@media (max-width: 1100px) {
  .container, nav {
    max-width: 96vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  nav ul { gap: 8px; }
  .feature-grid {gap:12px;}
  .section{padding:32px 8px;}
}
@media (max-width: 768px) {
  nav ul, nav .btn-primary { display: none !important; }
  .mobile-menu-toggle { display: flex; }
  .container {
    padding: 0 7px;
  }
  .content-grid, .feature-grid, .testimonial-slider,
  .card-container {
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
    align-items: stretch;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 36px;
  }
  .testimonial-slider {
    gap: 12px;
  }
  .footer-wrapper ul {flex-direction: column;gap:6px;align-items:center;}
  .footer-contact {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
  .feature-grid > div, .card {
    min-width: 0;
    width: 100%;
    margin-bottom: 14px;
    padding: 22px 13px 18px 13px;
    font-size: 0.98rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  h1 {font-size:2.1rem;}
  h2 {font-size:1.4rem;}
  .footer-wrapper {padding:18px 2px 8px 2px;}
  .mobile-nav {padding-left:0;margin-top:20px;}
}

/*-----------------------------------------------
  COOKIE CONSENT BANNER & MODAL
------------------------------------------------*/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #222F40;
  color: #FFF;
  z-index: 95;
  box-shadow: 0 -3px 24px 0 #112F4180;
  padding: 22px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  animation: fadein 0.7s cubic-bezier(.53,.01,.21,1);
}
.cookie-consent-banner p {
  flex: 1 0 220px;
  color: #FAFDFF;
  margin-bottom: 0;
  font-size:1.03rem;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 22px;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
}
.cookie-accept {
  background: #F2C777;
  color: #112F41;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #FFE6B2;
  color: #162941;
  box-shadow: 0 2px 14px #F2C77755;
}
.cookie-reject {
  background: transparent;
  color: #F2C777;
  border: 2px solid #F2C777;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #1A3344;
  color: #FFF;
  border: 2px solid #FFF;
}
.cookie-settings {
  background: #162941;
  color: #F2C777;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #F2C777;
  color: #162941;
}

.cookie-preferences-modal {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(160%);
  z-index: 120;
  background: #183052;
  color: #FFF;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -8px 50px 0 #000B;
  width: 98vw;
  max-width: 380px;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(.53,.01,.21,1), opacity 0.33s;
}
.cookie-preferences-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0%);
}
.cookie-preferences-modal h3 {
  color: #F2C777;
  margin-bottom: 1px;
  font-size: 1.21rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1.06rem;
}
.cookie-category input[type='checkbox'] {
  width: 22px;
  height: 22px;
  accent-color: #F2C777;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal-actions button {
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-save {
  background: #F2C777;
  color: #112F41;
  border: none;
}
.cookie-modal-cancel {
  background: transparent;
  color: #F2C777;
  border: 2px solid #F2C777;
}
.cookie-modal-save:hover, .cookie-modal-save:focus {
  background: #FFF;
  color: #112F41;
}
.cookie-modal-cancel:hover, .cookie-modal-cancel:focus {
  background: #122232;
  color: #FFF;
}

/*-----------------------------------------------
  MISC: FORMS, GENERAL LISTS & TYPOGRAPHY
------------------------------------------------*/
main ul, main ol {
  padding-left: 22px;
  color: #F2C777;
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.7;
  font-family: 'Roboto',sans-serif;
}
main ul li, main ol li {
  margin-bottom: 8px;
  color: #FFFFFF;
  position: relative;
  padding-left: 10px;
}
main ul li:before {
  content: '\2022';
  color: #F2C777;
  position: absolute;
  left: 0;
  top: 0;
}
main ul li img {
  width: 22px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}

hr {
  border: none;
  height: 2px;
  background: #223354;
  margin: 24px 0;
}

/*-----------------------------------------------
  THANK YOU & CTA CARDS
------------------------------------------------*/
.cta-card {
  background: linear-gradient(90deg, #131F34 70%, #1d2840 100%);
  border-radius: 30px;
  box-shadow: 0 4px 40px 0 #F2C77722;
  margin: 36px auto;
  padding: 36px 24px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/*-----------------------------------------------
  SCROLLBAR (MODERN, SLEEK)
------------------------------------------------*/
body::-webkit-scrollbar {
  width: 8px;
  background: #222F40;
}
body::-webkit-scrollbar-thumb {
  background: #F2C77788;
  border-radius: 6px;
}

/*-----------------------------------------------
  CUSTOM NEON/TECH ACCENTS
------------------------------------------------*/
.feature-grid > div, .card {
  border-left: 5px solid #F2C777;
  box-shadow: 0 2px 12px 0 #F2C77722;
}
.testimonial-card {
  border-left: 5px solid #112F41;
  box-shadow: 0 2px 24px 0 #F2C77713;
}
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close {
  box-shadow: 0 0 10px 0 #F2C77755, 0 1px 2px 0 #0002;
}

/*-----------------------------------------------
  Z-INDEX STAGING REFERENCE
------------------------------------------------*/
/*
60: mobile menu
95: cookie banner
120: cookie modal
38: header
*/
