/* ---------------------
   CSS RESET & BASELINE
------------------------*/
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,main,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;
}
html { box-sizing: border-box; font-size: 16px; }
*,*:before,*:after{box-sizing:inherit;}
body {
  line-height: 1.5;
  font-family: 'Lato', Arial, sans-serif;
  color: #F4F7F9;
  background: #141C27;
  min-height: 100vh;
  word-break: break-word;
  font-size: 1rem;
}
img {
  max-width:100%;
  display:block;
}
a { color: #57dcff; text-decoration: none; transition:.3s color; }
a:hover, a:focus { color: #D8B37B; text-decoration: underline; }

/* Hide outline except on keyboard focus */
:focus { outline:2px solid #D8B37B; outline-offset:2px; }
button { font-family: inherit; transition: background .3s, color .3s, box-shadow .3s;}

/* -------------------
   TYPOGRAPHY
----------------------*/
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #F4F7F9;
  text-shadow: 0 2px 24px #26517C80, 0 0 1px #141C27;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 8px; }
h4,h5,h6 {font-size:1.1rem;}
p, ul, ol { font-family: 'Lato', Arial, sans-serif; font-size:1rem; margin-bottom: 1em; }
strong { color: #D8B37B; font-weight: 700; }
ul,ol{ list-style: disc inside; margin-bottom: 1em; }
li { margin-bottom: 8px; }

/* ----------------------
   GLOBAL CONTAINERS
------------------------*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

/* ----------------------
   BRAND/TECH COLORS
-----------------------*/
:root {
  --bs-primary: #26517C; /* main blue */
  --bs-secondary: #D8B37B;
  --bs-accent-bg: #222C39;
  --bs-accent: #F4F7F9;
  --bs-neon: #3CF6FF;
  --bs-dark: #141C27;
  --bs-glow: 0 0 12px #3CF6FF,0 0 2px #D8B37B;
  --bs-card-shadow:0 4px 32px 0 #1a2233b8, 0 1.5px 5px 0 #1277a566;
  --bs-btn-shadow:0 2px 18px #3cf6ff55;
}

/* -----------------------------
   HEADER/NAVIGATION
-------------------------------*/
header {
  background: #222C39;
  box-shadow: 0 4px 12px #0f223c44;
  position: sticky;
  top: 0; z-index: 20;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 18px;
}
header img {
  height: 42px;
  margin-right: 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
header nav a {
  padding: 8px 18px;
  border-radius: 32px;
  font-family: 'Lato', Arial, sans-serif;
  color: #F4F7F9;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  position: relative;
}
header nav a.cta {
  color: #fff;
  background: linear-gradient(90deg,#3CF6FF 10%,#26517C 90%);
  box-shadow: var(--bs-btn-shadow);
  border-radius:30px;
  border:none;
  padding: 10px 28px;
  font-weight: 700;
  text-shadow: 0 1px 3px #0a1d2855;
  text-transform: uppercase;
  letter-spacing:0.06em;
  transition: box-shadow .23s, background .23s, color .23s;
}
header nav a.cta:hover, header nav a.cta:focus {
  box-shadow: 0 0 16px #3CF6FF77, 0 0 4px #D8B37B77;
  background: linear-gradient(90deg,#26517C 10%,#3CF6FF 90%);
  color: #D8B37B;
}
header nav a:hover, header nav a:focus {
  background: #151F2A;
  color: #3CF6FF;
  border-color: #3CF6FF40;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: transparent;
  border: none;
  color: #3CF6FF;
  margin-left: 18px;
  cursor: pointer;
  transition: color .25s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #D8B37B;
}

/* -----------------------------
   MOBILE MENU STYLES
-------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #171F29dd;
  z-index: 50;
  transform: translateX(105%);
  transition: transform .32s cubic-bezier(.55,0,.19,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: transform .37s cubic-bezier(.55,0,.19,1), opacity .20s;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: #D8B37B;
  background: none;
  border: none;
  margin: 32px 32px 6px 0;
  padding: 0 12px;
  cursor: pointer;
  transition: color .24s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #3CF6FF;
}
.mobile-nav{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.mobile-nav a {
  font-size:1.2rem;
  padding: 14px 0;
  color: #F4F7F9;
  border-radius: 16px;
  width: 80vw;
  text-align: center;
  background: none;
  transition: background .23s, color .23s;
}
.mobile-nav a.cta {
  background: linear-gradient(90deg,#3CF6FF 10%,#26517C 90%);
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin: 8px 0;
  box-shadow: 0 0 6px #3cf6ff55;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2c37519a;
  color: #D8B37B;
}


/* ---------------------
     HERO SECTION
------------------------*/
.hero {
  background: linear-gradient(120deg, #222C39 45%, #26517C 100%);
  padding: 54px 0 64px 0;
  margin-bottom: 54px;
  box-shadow: 0 3px 24px #32426338;
  position: relative;
}
.hero h1 {
  color: #3CF6FF;
  font-size: 2.6rem;
  margin-bottom: 18px;
  text-shadow: 0 4px 16px #3CF6FF22;
}
.hero p {
  color: #F4F7F9;
  font-size: 1.2rem;
  margin-bottom: 26px;
}
.hero .cta {
  display: inline-block;
  margin-top: 10px;
}

/* ---------------------
   FEATURES SECTION
-----------------------*/
.features {
  background: #151A23;
  border-radius: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 18px #15365f44;
}
.features h2 {
  color: #D8B37B;
}
.feature-grid, .features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
  justify-content: flex-start;
}
.feature-grid > div, .features ul > li {
  background: #151F2A;
  color: #F4F7F9;
  border-radius: 24px;
  box-shadow: 0 2px 16px #1923343c;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 290px;
  padding: 28px 18px 24px 18px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items:flex-start;
  gap: 10px;
  transition: box-shadow .24s, transform .21s;
}
.feature-grid > div:hover, .features ul > li:hover {
  box-shadow: 0 0 36px #3CF6FF55,0 0 6px #26517C33;
  transform: translateY(-3px) scale(1.03);
}
.features img {
  height: 38px; width: 38px;
  margin-bottom: 6px;
}

/* --------------------------------
   TESTIMONIALS SECTION
----------------------------------*/
.testimonials {
  margin-bottom: 32px;
}
.testimonials h2 {
  color: #3CF6FF;
  margin-bottom: 16px;
}
.testimonial-card {
  background: #F4F7F9;
  color: #17233A;
  font-family: 'Lato', Arial, sans-serif;
  border-radius: 22px;
  box-shadow: 0 2px 16px #3cf6ff25, 0 2px 12px #D8B37B33;
  padding: 20px 26px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 88px;
  font-size: 1.06rem;
  transition: box-shadow .22s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 0 36px #3CF6FF77, 0 0 8px #26517C44;
  transform: scale(1.02) translateY(-2px);
}
.testimonial-card p {
  color: #17233A; font-size: 1.04rem; margin-bottom:0; flex:1;
}
.testimonial-card span {
  display: block; font-weight: bold; color: #26517C; margin-left: 22px;
  font-size: .97rem; letter-spacing:.02em;
}

/* --------------------------------------
   ABOUT SECTION/GENERIC CARDS
-----------------------------------------*/
.about, .features, .section {
  margin-bottom: 60px; padding: 40px 20px; border-radius: 30px;
}
.text-section {
  color: #F4F7F9;
  font-size: 1.05rem;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #151F2A;
  border-radius:18px;
  margin-bottom: 20px;
  position:relative;
  box-shadow: var(--bs-card-shadow);
  color: #F4F7F9;
  flex: 1 1 260px;
  min-width: 240px; max-width: 320px;
  padding: 24px 20px;
  transition:box-shadow .24s,transform .18s;
}
.card:hover {
  box-shadow:0 0 36px #3CF6FF77, 0 0 8px #D8B37B44;
  transform: translateY(-3px) scale(1.03);
}
.card-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap:9px;
}

/* ---------------------------------
   CONTENT GRIDS / FLEX GROUPS
-----------------------------------*/
.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;
}

/* ---------------------------------
   CONTACT SECTION
-----------------------------------*/
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 1.4em;
  font-size: 1.1rem;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F4F7F9;
}
.contact-list a {
  color: #3CF6FF;
  text-decoration: underline;
  font-weight: 600;
}

/* -------------------------
   BUTTONS & CTA
---------------------------*/
.cta, .btn, button[type="submit"] {
  display:inline-block;
  background: linear-gradient(90deg,#3CF6FF 10%,#26517C 90%);
  color: #fff;
  padding: 13px 34px;
  border-radius: 30px;
  border:none;
  font-weight: bold;
  font-size: 1.09rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor:pointer;
  box-shadow: var(--bs-btn-shadow);
  margin-top:10px;
  margin-bottom:10px;
  transition: box-shadow .23s, background .22s, color .22s, transform .13s;
}
.cta:hover, .cta:focus, .btn:hover, .btn:focus, button[type="submit"]:hover, button[type="submit"]:focus {
  background: linear-gradient(90deg,#26517C 8%,#3CF6FF 88%);
  color: #D8B37B;
  box-shadow: 0 2px 24px #3CF6FFAA,0 1px 6px #D8B37B99;
  transform: translateY(-1.5px) scale(1.045);
}

/* ------------------------
   FOOTER
--------------------------*/
footer {
  background: #222C39;
  color: #F4F7F9;
  box-shadow: 0 -2px 16px #141c2730;
  padding-top: 30px;
  margin-top: 48px;
}
footer .container {
  padding-bottom: 0;
}
.footer-columns {
  display: flex;
  justify-content: flex-start;
  gap: 34px 60px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-columns nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-columns nav a {
  font-size: .98rem;
  color: #F4F7F9;
  padding: 5px 0;
  transition: color .21s;
}
.footer-columns nav a:hover, .footer-columns nav a:focus {
  color: #3CF6FF;
}
.footer-columns .contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .98rem;
}
.footer-columns .contact-info h3 {
  color: #D8B37B;
  margin-bottom: 7px;
}
.footer-columns .social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.footer-columns .social-links a img {
  width: 32px; height:32px;
  filter: drop-shadow(0 0 4px #3cf6ff55);
  transition: filter .2s;
}
.footer-columns .social-links a:hover img {
  filter: drop-shadow(0 0 12px #3cf6ffcc) drop-shadow(0 0 3px #D8B37B);
}
.footer-bottom {
  margin-top: 18px;
  text-align: center;
  font-size: .92rem;
  color: #9baab8;
  padding: 16px 0 8px 0;
}

/* ------------------------
 COOKIE CONSENT BANNER
-------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: #131B24ee;
  color: #fff;
  box-shadow: 0 0 8px #3cf6ff55;
  padding: 22px 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1rem;
  border-top: 3px solid #3CF6FF;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s cubic-bezier(.39,.58,.57,1);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-msg {
  flex: 1 1 260px;
  color: #F4F7F9;
}
.cookie-banner button {
  padding:10px 22px;
  font-size: .98rem;
  border-radius: 28px;
  background: #1e302e;
  border: 2px solid #3CF6FF;
  color: #3CF6FF;
  margin-left: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 0;
  box-shadow: 0 0 8px #3cf6ff33;
  transition:background .23s, color .18s, box-shadow .21s;
}
.cookie-banner button.accept {
  background:linear-gradient(100deg,#3CF6FF 70%,#26517C 99%);
  color:#fff;
  border:none;
}
.cookie-banner button.reject {
  background:#222c39;
  border-color:#D8B37B;
  color:#D8B37B;
}
.cookie-banner button.settings {
  background:#151F2A;
  border-color:#3CF6FF;
  color:#3CF6FF;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background:#3CF6FF;
  color:#222A36;
  box-shadow:0 0 16px #3CF6FF99;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 200;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(0.92);
  background: #111722ee;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 44px #3cf6ff57,0 1px 12px #D8B37B44;
  padding: 36px 28px 26px 28px;
  min-width: 290px;
  max-width: 98vw;
  max-height: 96vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .22s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  color: #3CF6FF;
}
.cookie-modal .category-list{
  display:flex;
  flex-direction:column;
  gap:13px;
}
.cookie-modal .category-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid #222C39;
}
.cookie-modal .category-label{font-size:1.03rem;}
.cookie-modal input[type="checkbox"]{
  width:1.3em;height:1.3em;border-radius:5px;background:#222C39;
  border:2px solid #3CF6FF; accent-color: #3CF6FF;
}
.cookie-modal .close-modal{
  align-self:flex-end;margin-bottom:-12px;margin-top:-18px;
  background:none;border:none;font-size:2.1rem;color:#D8B37B;
  cursor:pointer; transition:color .2s;
}
.cookie-modal .close-modal:hover { color:#3CF6FF; }
.cookie-modal .cookie-save-btn{
  margin-top:18px; background: #3CF6FF; color:#222A36; font-weight:bold;
  border-radius:29px; border:none; padding:12px 30px; font-size:1.01rem; box-shadow:0 0 8px #3cf6ff99;
  align-self:center; transition:background .2s, color .2s;
}
.cookie-modal .cookie-save-btn:hover{ background:#26517C; color:#fff;}

/* ---------------------
   RESPONSIVE QUERIES
------------------------*/
@media (max-width: 1100px){
  .footer-columns{
    gap:24px 30px;
  }
}
@media (max-width: 900px){
  .container{padding-left:10px; padding-right:10px;}
  .footer-columns{gap:18px 12px;}
}
@media (max-width: 820px){
  .footer-columns{flex-direction:column;gap:22px !important;}
}
@media (max-width: 768px){
  html{font-size: 15px;}
  header nav{display:none;}
  .mobile-menu-toggle{display:block;}
  .footer-columns{flex-direction: column; align-items:flex-start;}
  .section,.hero,.features, .about {padding: 28px 6px; margin-bottom: 36px;}
  .feature-grid, .features ul, .card-container,.content-grid{
    flex-direction:column;gap:17px;}
  .feature-grid > div,.features ul > li,.card{max-width:100vw;min-width: unset;}
  .testimonial-card{flex-direction:column;align-items:flex-start;gap:8px;}
  .hero h1{font-size:2.1rem;}
  .hero{padding:30px 0 44px 0; margin-bottom: 24px;}
  .about{margin-bottom: 38px;}
  .content-wrapper{gap:13px;}
  .footer-bottom{font-size:.96rem;}
}
@media (max-width: 480px){
  html{font-size: 14px;}
  .hero h1{font-size:1.4rem;}
  .footer-columns .social-links a img{ width: 24px; height:24px;}
  .cookie-modal {padding: 15vw 6vw 10vw 6vw;}
}

/*
-------------------------
 Accessibility and extras
-------------------------*/
::selection {background: #3CF6FF44; color: #222A36;}

/* Misc / Util classes */
.gap-30 {gap:30px;}
.bg-primary{background: #26517C !important; color:#fff !important;}
.bg-secondary{background: #D8B37B !important; color:#222A36 !important;}
.bg-accent{background: #3CF6FF !important; color:#222A36 !important;}
.rounded-36{border-radius:36px;}
.rounded-22{border-radius:22px;}
.text-center{text-align:center;}
.text-right{text-align:right;}
.text-accent{color:#3CF6FF;}
.text-secondary{color:#D8B37B;}

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


/* --------------
Fontface fallback
------------- */
@font-face {
  font-family: 'Playfair Display';
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src:local('Playfair Display'),local('PlayfairDisplay'),url('https://fonts.googleapis.com/css?family=Playfair+Display:700&display=swap');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:local('Lato'),url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');
}
