/*---------------------------------------------------
  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;
}

html { 
  scroll-behavior: smooth;
  background: #181e28;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #181e28;
  color: #F6F3EB;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
}
 
*, *:before, *:after {
  box-sizing: inherit;
}

img { max-width: 100%; display: block; border: 0; }
a { text-decoration: none; color: #D98F19; transition: color .2s; }
a:focus, a:hover { color: #fff200; outline: none; }
ul, ol { list-style: none; }

/*---------------------------------------------------
  BRAND TYPOGRAPHY
---------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #fff;  
  letter-spacing: .04em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }
h4,h5,h6 { font-size: 1.125rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}

p, li, .text-section, .content-wrapper {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #ecedee;
  font-size: 1rem;
  line-height: 1.75;
}

strong, b {
  font-weight: 700;
  color: #D98F19;
}

/*---------------------------------------------------
  FLEX LAYOUTS (ONLY FLEXBOX)
---------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(35,45,63,0.96);
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,.15);
}

.card-container, .features, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #232d3f;
  border-radius: 18px;
  padding: 28px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 rgba(33,207,255,.08);
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 4px 36px 0 #19fff2;
  transform: translateY(-4px) scale(1.02);
}

.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: #fff;
  color: #222;
  border-radius: 18px;
  margin: 0 0 20px 0;
  box-shadow: 0 2px 14px 0 rgba(41,56,69,0.10);
}
.testimonial-card p {
  color: #232d3f;
  font-size: 1.125rem;
  font-style: italic;
}
.testimonial-card strong {
  color: #D98F19;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*---------------------------------------------------
  HEADER, NAV & HERO
---------------------------------------------------*/
header {
  background: #212b33;
  border-bottom: 2px solid #293845;
  box-shadow: 0 6px 24px rgba(41,56,69,0.10);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 80px;
  min-height: 64px;
}
header img {
  height: 38px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
header nav a {
  color: #F6F3EB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 14px;
  border-radius: 7px;
  transition: color .20s, background .20s;
}
header nav a:hover,
header nav a:focus {
  color: #19fff2;
  background: rgba(255,255,255,0.045);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #D98F19;
  font-size: 2.1rem;
  padding: 10px 12px;
  border-radius: 7px;
  cursor: pointer;
  transition: background .18s, color .18s;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #fff200;
  background: rgba(41,56,69,0.18);
}

/*---------------------------------------------------
  MOBILE MENU
---------------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(32,38,50,0.98);
  z-index: 200;
  transform: translateX(105%);
  transition: transform .35s cubic-bezier(.47,1.24,.41,1.01);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #fff;
  align-self: flex-end;
  margin: 20px 20px 0 0;
  cursor: pointer;
  border-radius: 7px;
  padding: 6px 14px;
  transition: background .16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(217,143,25,0.17);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0 0 0;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F6F3EB;
  padding: 16px 12px;
  border-radius: 8px;
  transition: background .18s, color .18s;
  text-align: left;
  margin-bottom: 8px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #D98F19;
  color: #212b33;
}

@media (max-width: 1020px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/*---------------------------------------------------
  BUTTONS & CTA's
---------------------------------------------------*/
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #181e28;
  background: linear-gradient(90deg,#19fff2 20%,#D98F19 90%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  border: none;
  border-radius: 99px;
  padding: 13px 36px;
  margin-top: 6px;
  margin-bottom: 10px;
  box-shadow: 0 6px 22px 0 rgba(25,255,242,0.08);
  cursor: pointer;
  letter-spacing: .08em;
  transition: background-position 0.3s, box-shadow .21s, color .14s;
  text-shadow: 0 1px 13px rgba(41,56,69,0.10);
}
.btn-primary:hover, .btn-primary:focus {
  background-position: 100% 50%;
  color: #fff;
  box-shadow: 0 8px 36px 0 #19fff2;
  outline: none;
}

/* Inline links & alternate CTAs (keep within brand) */
.text-section a {
  text-decoration: underline;
  font-weight: 500;
  color: #19fff2;
  transition: color .22s;
}
.text-section a:hover { color: #fff200; }

input[type="search"] {
  width: 100%;
  max-width: 450px;
  font-size: 1.15rem;
  padding: 10px 18px;
  margin: 18px 0 0 0;
  border-radius: 12px;
  outline: none;
  background: #212b33;
  color: #F6F3EB;
  border: 1.5px solid #2ee2d6;
  transition: border .17s;
}
input[type="search"]:focus {
  border: 1.5px solid #D98F19;
}

/*---------------------------------------------------
  SECTIONS, CARDS, HIERARCHY
---------------------------------------------------*/
ul, li {
  list-style: disc inside;
  color: #F6F3EB;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.6;
}
ul li strong {
  color: #19fff2;
  font-weight: 700;
}
.text-section {
  margin-bottom: 10px;
  padding: 0;
}

/*---------------------------------------------------
  FOOTER
---------------------------------------------------*/
footer {
  background: #212b33;
  color: #ece7de;
  border-top: 2px solid #293845;
  padding: 38px 0 22px 0;
  margin-top: 56px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
footer img {
  margin-bottom: 15px;
  height: 34px;
}
footer nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  flex-wrap: wrap;
}
footer nav a {
  color: #F6F3EB;
  opacity: 0.84;
  margin: 0 4px;
  border-radius: 3px;
}
footer nav a:hover {
  opacity: 1; color: #19fff2; background: #293845;
}
footer .text-section {
  margin-top: 12px;
  text-align: center;
  font-size: .97rem;
  color: #b6b5ae;
}

@media(max-width: 610px) {
  footer .container { padding: 0 6px; }
}

/*---------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
---------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: #293845;
  color: #fff;
  padding: 22px 16px 16px 16px;
  box-shadow: 0 -3px 22px rgba(25,255,242,0.07);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  animation: fadeInBanner .7s cubic-bezier(.23,1.1,.17,1);
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-text {
  flex: 1 1 0%;
  margin-right: 14px;
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow.19s;
}
.cookie-btn.accept {
  background: linear-gradient(90deg,#19fff2 0%,#D98F19 100%);
  color: #222;
  box-shadow: 0 2px 9px #19fff2a1;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #D98F19;  color: #fff;
}
.cookie-btn.reject {
  background: #293845;
  color: #fcfcfc;
  border: 2px solid #19fff2;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #19fff2; color: #232d3f;
}
.cookie-btn.settings {
  background: transparent;
  color: #D98F19;
  border: 2px solid #D98F19;
}
.cookie-btn.settings:hover,.cookie-btn.settings:focus {
  background: #D98F19; color: #232d3f;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,30,40,0.88);
  backdrop-filter: blur(1.5px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .27s cubic-bezier(.74,-0.06,.64,1.1);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #232d3f;
  border-radius: 22px;
  min-width: 320px;
  max-width: 98vw;
  color: #fff;
  padding: 36px 26px 26px 26px;
  box-shadow: 0 16px 54px 0 #19fff254;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modalPop .25s cubic-bezier(.74,-0.06,.64,1.1);
}
@keyframes modalPop {
  0%   { transform: translateY(80px) scale(.94); }
  100% { transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  color: #19fff2;
  margin-bottom: 18px;
  font-size: 1.2rem;
}
.cookie-category-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 22px;
}
.cookie-modal .cookie-category {
  display: flex; align-items: center; gap: 13px;
  justify-content: space-between;
  padding: 7px 0 7px 3px;
}
.cookie-modal .cookie-category label {
  font-weight: 500; color: #f6f3eb; cursor: pointer;
}
.cookie-modal .cookie-category .cookie-switch {
  width: 44px;
  height: 23px;
  border-radius: 23px;
  background: #212b33;
  position: relative;
  transition: background .18s;
  display: flex; align-items: center;
  border: 1px solid #D98F19;
}
.cookie-modal .cookie-category .cookie-switch input {
  display: none;
}
.cookie-modal .cookie-category .cookie-slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 17px; height: 17px;
  background: #D98F19;
  border-radius: 50%;
  transition: transform .16s, background .16s;
}
.cookie-modal .cookie-category .cookie-switch input:checked + .cookie-slider {
  transform: translateX(19px);
  background: #19fff2;
}
.cookie-modal .cookie-category.essential .cookie-switch {
  background: #bdbdbd55;
  border: 1.7px dashed #19fff2;
}
.cookie-modal .cookie-category.essential label {
  color: #19fff2;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
}
@media (max-width:720px) {
  .cookie-modal { min-width: 96vw; padding: 22px 6px; }
  .cookie-banner { flex-direction: column; gap: 10px; font-size: .97rem; }
}

/*---------------------------------------------------
  RESPONSIVE DESIGN (MOBILE-FIRST)
---------------------------------------------------*/
@media (max-width: 1020px) {
  .container { padding: 0 8px; }
  header .container { padding: 0 8px; }
}
@media (max-width: 900px) {
  .section { padding: 28px 6px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 3vw; }
  .content-wrapper { gap: 16px; }
  .section { margin-bottom: 36px; padding: 20px 0; border-radius: 12px; }
  .content-grid, .card-container { gap: 12px; }
  .testimonial-card { gap: 8px; padding: 14px; font-size: .98rem; }
  .feature-item { gap: 8px; }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .footer .text-section { font-size: .9rem; }
}

/*---------------------------------------------------
  ANIMATIONS & MICRO-INTERACTIONS
---------------------------------------------------*/
.card,
.btn-primary,
input[type="search"],
a {
  transition: box-shadow .18s, background .19s, color .14s, border-color .16s, transform .21s;
}

.btn-primary:active {
  box-shadow: 0 2px 8px #19fff270;
  transform: scale(0.97);
}
input[type="search"]:focus {
  box-shadow: 0 0 0 2px #19fff2a1;
}

/* Neon lines for accent — can be added via pseudo-elements to sections (future improvement) */
.section {
  position: relative;
}
.section:before {
  content: '';
  position: absolute;
  left: 6px; right: 6px; top: 7px;
  height: 3px;
  border-radius: 6px;
  background: linear-gradient(90deg,#19fff2 0%,#D98F19 100%);
  opacity: 0.17;
  z-index: 1;
}
.section > * {
  position: relative;
  z-index: 2;
}
@media(max-width:700px){
.section:before{left: 0; right:0;}}

/*---------------------------------------------------
  UTILITY & ACCESSIBILITY
---------------------------------------------------*/
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/*---------------------------------------------------
  END
---------------------------------------------------*/
