/* --- 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, 
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #1A242F;
  color: #EAF0F6;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  overscroll-behavior: none;
}
a {
  color: #FFD07E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fffbe3;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #FFD07E;
  text-shadow: 0 4px 24px rgba(255, 215, 126, 0.06);
  line-height: 1.15;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.55rem; margin-bottom: 18px; }
h3 { font-size: 1.22rem; margin-bottom: 14px; }
@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.4rem; }
}
p, li, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  color: #EAF0F6;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
strong { color: #FFD07E; font-weight: 700; }

/* --- BRAND & ACCENT COLOR VARIABLES --- */
:root {
  --color-primary: #273B4D;
  --color-secondary: #87A0B4;
  --color-accent: #FFD07E;
  --color-bg-dark: #1A242F;
  --color-bg-light: #253247;
  --color-text: #EAF0F6;
  --color-card-bg: #232F3D;
  --color-card-bg-hover: #303B4A;
  --color-shadow: 0 6px 32px 0 rgba(39,59,77,0.16);
}


/* --- COMMON CONTAINERS & SECTIONS --- */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-light);
  border-radius: 20px;
  box-shadow: var(--color-shadow);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 32px;
  }
}
.content-wrapper, .text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  background: none;
  box-shadow: none;
  padding: 0;
}

@media (min-width: 900px) {
  .content-wrapper {
    gap: 28px;
  }
}

/* Flexible content grid layouts */
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

.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;
  }
}

.card {
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: var(--color-shadow);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover, .card:focus-within {
  background: var(--color-card-bg-hover);
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 12px 44px 0 rgba(255, 208, 126, 0.13), var(--color-shadow);
  z-index: 2;
}

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

/* --- MAIN NAVIGATION / HEADER --- */
header {
  background: rgba(26,36,47, 0.99);
  box-shadow: 0 2px 18px 0 rgba(0,0,0,0.10);
  z-index: 12;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.main-nav .logo img {
  height: 40px;
  width: auto;
  margin-right: 18px;
  vertical-align: middle;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 6px 14px;
  border-radius: 7px;
  transition: background 0.23s, color 0.18s, box-shadow 0.17s;
}
.main-nav a:not(.logo):hover, .main-nav a:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 2px 10px 0 rgba(255,208,126,0.13);
}
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 32px;
  top: 19px;
  background: var(--color-accent);
  border-radius: 6px;
  padding: 8px 13px;
  color: var(--color-primary);
  font-size: 2.2rem;
  z-index: 31;
  box-shadow: 0 2px 10px 0 rgba(255, 208, 126, 0.14);
}
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(29,37,56, 0.98);
  z-index: 50;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.79,.14,.15,.86);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 26px 40px 26px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-card-bg);
  color: var(--color-accent);
  border-radius: 50%;
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: 24px;
  padding: 8px 10px;
  box-shadow: 0 4px 24px 0 rgba(255, 208, 126, 0.11);
  transition: background 0.19s, color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  padding: 12px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.18s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* --- SECTION CONTENT STYLES --- */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
@media (max-width: 768px) {
  section {
    padding-top: 24px;
    margin-bottom: 36px;
  }
}

/* --- LISTS WITH ICONS --- */
ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  margin-bottom: 14px;
  background: none;
  color: #EAF0F6;
}
ul li img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px #0002) drop-shadow(0 0 6px #FFD07E50);
}
ul li:last-child {
  margin-bottom: 0;
}

/* --- CTA BUTTONS --- */
.cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 15px 38px;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 4px 28px 0 rgba(255,208,126,0.16);
  transition: background 0.19s, color 0.17s, box-shadow 0.2s, transform 0.18s;
  letter-spacing: 0.03em;
  outline: none;
  display: inline-block;
}
.cta.primary {
  background: linear-gradient(90deg, #FFD07E 0%, #FFE39C 100%);
  color: var(--color-primary);
  text-shadow: 0 2px 12px rgba(255,255,255,0.09);
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFDC99;
  color: #1A242F;
  transform: scale(1.055);
  box-shadow: 0 8px 28px 0 rgba(255,208,126,0.22);
}
.cta.secondary {
  background: var(--color-bg-dark);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border-color: var(--color-accent);
  transform: scale(1.05);
}

/* --- TESTIMONIAL CARDS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  background: #fffbe3;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(255, 215, 126, 0.10), var(--color-shadow);
  color: #111C30;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #273B4D;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #273B4D;
  font-size: 0.97rem;
  font-style: italic;
  opacity: 0.88;
}

/* --- FOOTER --- */
footer {
  background: var(--color-bg-light);
  color: #EAF0F6;
  padding: 48px 0 30px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-menu a {
  color: var(--color-accent);
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
  transition: color 0.17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fffbe3;
  text-decoration: underline;
}
.footer-contact {
  font-size: 1.01rem;
  color: #BCCDDB;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 3px;
}
.footer-logo img {
  width: 65px;
  height: auto;
  opacity: 0.88;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 98;
  background: #232F3D;
  color: #fffbe3;
  font-size: 1.09rem;
  padding: 22px 16px 12px 16px;
  box-shadow: 0 -4px 32px 0 rgba(39,59,77,0.20);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: cookie-banner-fadein 0.4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes cookie-banner-fadein {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner__text {
  flex: 1 1 250px;
  margin-bottom: 8px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-accent);
  color: #273B4D;
  font-size: 1rem;
  border-radius: 9px;
  border: none;
  box-shadow: 0 2px 14px 0 rgba(255,208,126,0.10);
  padding: 10px 20px;
  margin: 0 2px 0 0;
  font-weight: 600;
  transition: background 0.18s, color 0.14s, transform 0.13s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fffbe3;
  color: #1a242f;
  transform: scale(1.06);
}
.cookie-btn.outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cookie-btn.outline:hover, .cookie-btn.outline:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn.settings {
  background: var(--color-secondary);
  color: #fffbe3;
  border: none;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFD07E;
  color: #273B4D;
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  width:100vw; height:100vh;
  background: rgba(30,34,50,0.92);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #273B4D;
  color: #fffbe3;
  box-shadow: 0 8px 62px 0 rgba(255,208,126,0.16);
  border-radius: 16px;
  padding: 36px 26px 30px 26px;
  max-width: 400px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal-bounce 0.33s cubic-bezier(.42,2,.36,1.01);
}
@keyframes cookie-modal-bounce {
  from { transform: translateY(90px) scale(0.8); opacity:0; }
  to { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h2 {
  color: var(--color-accent);
  font-size: 1.18rem;
  margin-bottom: 7px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--color-card-bg);
  border-radius: 12px;
  padding: 14px 12px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-option label {
  flex: 1;
  color: #FFD07E;
  font-weight: 700;
}
.toggle-switch {
  width: 44px;
  height: 22px;
  background: var(--color-secondary);
  border-radius: 15px;
  position: relative;
  transition: background 0.18s;
}
.toggle-switch input[type=checkbox] {
  display: none;
}
.toggle-switch span {
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #FFD07E;
  border-radius: 50%;
  transition: left 0.2s;
}
.toggle-switch input:checked + span {
  left: 24px;
  background: #33ffb1;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

/* MODAL CLOSE BUTTON */
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  color: #FFD07E;
  background: none;
  border: none;
  font-size: 1.9rem;
  border-radius: 7px;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFD07E;
  color: #273B4D;
}

/* --- MISC/UTILITY CLASSES --- */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-8 { margin-top: 8px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.gap-20 { gap: 20px; }

/* --- SCROLLBAR STYLE (tech/futuristic accent) --- */
::-webkit-scrollbar {
  width: 10px;
  background: #242A33;
}
::-webkit-scrollbar-thumb {
  background: #273B4D;
  border-radius: 6px;
  box-shadow: 0 2px 10px #FFD07E10 inset;
}

/* --- FOCUS VISIBLE --- */
button:focus-visible, a:focus-visible {
  box-shadow: 0 0 0 2px #FFD07E, 0 4px 24px 0 rgba(255, 208, 126, 0.09);
  outline: none;
}

/* --- NEON & FUTURISTIC ACCENTS --- */
h1, h2, h3, .cta.primary, .testimonial-card {
  text-shadow:
    0 0 8px #FFD07E55,
    0 0 18px #FFE39C33,
    0 2px 8px #1A242F18;
}
.cta.primary {
  box-shadow:
    0 2px 12px 2px #FFD07E25,
    0 0px 40px 0 #FFD07E25,
    0 4px 24px 0 #FFD07E10;
  border: 2px solid #fffbe3;
  filter: drop-shadow(0 0 10px #FFD07E77);
}
.main-nav .logo img, .footer-logo img {
  filter: drop-shadow(0 0 8px #FFD07E33);
}
ul li img {
  filter: drop-shadow(0 0 4px #FFD07E90);
}

/* --- ANIMATIONS FOR INTERACTION --- */
.cta, button, a {
  transition: background 0.18s, color 0.14s, box-shadow 0.13s, transform 0.14s;
}
.card, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.16s, background 0.13s;
}
.card:hover, .testimonial-card:hover {
  box-shadow:
    0 8px 46px 0 #FFD07E14,
    0 2px 18px 0 #253247;
  transform: translateY(-4px) scale(1.01);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 768px) {
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.1rem; margin-bottom: 10px; }
  .main-nav {
    display: none !important;
  }
  .mobile-menu {
    padding: 16px 9px 30px 14px;
  }
  .section {
    margin-bottom: 24px;
    padding: 20px 4px;
  }
  .card {
    padding: 18px 11px;
    font-size: 0.98rem;
  }
  .footer-logo img {
    width: 47px;
  }
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 20px 6px 18px 10px;
    max-width: 98vw;
  }
}

/* --- END --- */
