/* DUSK Sportreflex - tech_futuristic Style CSS */
/* CSS RESET & BASELINE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #181C2A;
  color: #EAF2FD;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img, video {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
li {
  list-style: none;
}

/* BRAND COLORS - CSS VARIABLES */
:root {
  --primary: #14305C;
  --secondary: #F4A300;
  --accent: #FFFFFF;
  --surface: #212640;
  --card: #222B4E;
  --neon: #35E6FC;
  --contrast: #1A1C23;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem; /* 40px */
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px #14305C55;
}
h2 {
  font-size: 1.875rem; /* 30px */
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--secondary);
}
p, ul, ol, blockquote {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #EAF2FD;
}
em {
  color: var(--neon);
  font-style: italic;
}
strong {
  color: var(--secondary);
  font-weight: 700;
}

/* UTILITY CLASSES */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(110deg, #181C2A 60%, #14305C 100%);
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 #10224c40;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--card);
  border-radius: 14px;
  padding: 32px 24px;
  box-shadow: 0 2px 16px #1C3C5F66;
  transition: box-shadow 0.3s, transform 0.3s;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card:hover {
  box-shadow: 0 8px 24px var(--neon);
  transform: translateY(-6px) scale(1.03);
}
.content-grid,
.features {
  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: var(--accent);
  border-radius: 16px;
  box-shadow: 0 2px 18px #14305C33;
  margin-bottom: 24px;
  color: #181C2A;
  transition: box-shadow 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px var(--secondary);
}
.testimonial-stars img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 1px var(--secondary));
}
.testimonial-author {
  font-size: 1rem;
  color: var(--primary);
  font-weight: bold;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER - Desktop & Mobile */
header {
  background: #111425;
  padding: 0;
  border-bottom: 2px solid var(--neon);
  box-shadow: 0 2px 12px #14305C22;
  z-index: 200;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  position: relative;
}
header a img {
  height: 48px;
  margin-right: 22px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 20px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #EAF2FD;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 6px 2px 6px;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--neon);
  text-shadow: 0 0 4px var(--neon);
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--secondary);
  color: #181C2A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 8px;
  padding: 13px 26px;
  margin-left: 18px;
  box-shadow: 0 2px 14px #F4A30033;
  border: none;
  transition: background 0.25s, box-shadow 0.25s, filter 0.25s, color 0.2s;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--neon);
  color: #14305C;
  filter: brightness(1.05) drop-shadow(0 0 6px var(--neon));
  text-shadow: 0 1px 10px #14305C55;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--neon);
  background: transparent;
  border: none;
  margin-left: 20px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--secondary);
}

/* MOBILE NAVIGATION */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(20, 48, 92, 0.98);
  z-index: 8900;
  transition: transform 0.45s cubic-bezier(.4,1.2,.61,1), opacity 0.28s;
  transform: translateX(100%);
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  opacity: 1;
  transform: translateX(0%);
}
.mobile-menu-close {
  margin: 28px 24px 0 0;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: var(--neon);
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  margin: 50px 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-end;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 600;
  background: transparent;
  padding: 10px 18px;
  border-radius: 6px;
  transition: background 0.18s, color 0.16s;
  outline: none;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #14305C;
}

/* HERO & SECTION LAYOUTS */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
section .container {
  flex-direction: column;
}
section .content-wrapper {
  background: linear-gradient(100deg, #1E2344 60%, #14305C 100%);
  border-radius: 18px;
  box-shadow: 0 4px 28px #1E234455;
  padding: 40px 28px;
  margin-bottom: 8px;
  width: 100%;
}

/* FEATURE LISTS & ICONS */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0 0 0;
}
.feature-list li, .feature-list .text-section, .feature-list .feature-item {
  background: var(--surface);
  border-radius: 14px;
  padding: 24px 22px;
  min-width: 220px;
  flex: 1 1 230px;
  box-shadow: 0 2px 14px #222b4e33;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.2s, background 0.2s;
  margin-bottom: 20px;
}
.feature-list li img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px var(--neon));
  margin-bottom: 7px;
}
.feature-list li strong {
  font-size: 1.1rem;
  color: var(--secondary);
}
.feature-list li p {
  margin-bottom: 0 !important;
  color: #EAF2FD;
}
.feature-list li:hover {
  box-shadow: 0 6px 28px var(--neon);
  background: #1E2344;
}

/* CARD LISTS */
.card-container .card {
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 420px;
}

/* TEXT SECTIONS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section ul, .text-section ol {
  margin-left: 0px;
  padding-left: 0px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 8px;
  padding-left: 0px;
  list-style: none;
  position: relative;
  color: var(--accent);
  font-size: 1rem;
}
.text-section ul li:before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--secondary);
  margin-right: 15px;
  margin-bottom: 1px;
  vertical-align: middle;
}
.text-section ol {
  counter-reset: item;
}
.text-section ol li {
  counter-increment: item;
  margin-bottom: 10px;
  padding-left: 0px;
  position: relative;
  color: var(--neon);
}
.text-section ol li:before {
  content: counter(item) '.';
  margin-right: 12px;
  color: var(--secondary);
  font-weight: bold;
}

/* BLOCKQUOTE (Testimonial) */
blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  color: #181C2A;
  background: transparent;
  quotes: "\201C" "\201D";
  margin-bottom: 12px;
  font-style: italic;
}

/* BUTTONS */
button, .btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  padding: 12px 24px;
  background: var(--secondary);
  color: #181C2A;
  border: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(.46,1.48,.3,.98);
  margin-right: 11px;
  margin-bottom: 7px;
}
button:hover,.btn:hover,
button:focus,.btn:focus {
  background: var(--neon);
  color: #14305C;
  box-shadow: 0 0 18px var(--neon);
}

/* FOOTER */
footer {
  background: #131832;
  color: #EAF2FD;
  border-top: 2px solid var(--neon);
  padding: 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 5px 20px;
}
footer .content-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  border-radius: 16px;
  padding: 22px 14px;
  background: rgba(28,36,60,0.97);
  box-shadow: 0 2px 24px #14305C33;
  margin-bottom: 0;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
footer nav a {
  color: var(--secondary);
  font-size: 15px;
  padding: 3px 8px;
  opacity: 0.95;
  border-radius: 4px;
  transition: color 0.2s, background 0.18s;
}
footer nav a:hover,footer nav a:focus {
  color: var(--neon);
  background: #222B4E88;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-info img {
  height: 34px;
  width: auto;
}
.brand-info span {
  font-size: 1.06rem;
  color: var(--accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  color: var(--neon);
}
.footer-contact a {
  color: var(--secondary);
  font-size: inherit;
  margin-left: 4px;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  margin-right: 6px;
  vertical-align: middle;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.social-links a img {
  width: 27px;
  height: 27px;
  filter: brightness(1.2) drop-shadow(0 0 5px var(--neon));
  transition: filter 0.2s;
}
.social-links a:hover img,.social-links a:focus img {
  filter: brightness(1.8) drop-shadow(0 0 9px var(--secondary));
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #131832f2;
  color: #fff;
  border-top: 3px solid var(--neon);
  box-shadow: 0 -2px 16px #14305C55;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 22px 18px 22px;
  gap: 13px;
  animation: fadeInCookie 0.5s;
}
@keyframes fadeInCookie { from { opacity: 0; transform: translateY(44px);} to {opacity: 1;transform: translateY(0);}}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button, .cookie-banner .btn {
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  background: var(--secondary);
  color: #181C2A;
  box-shadow: 0 1px 8px #F4A30033;
  transition: background 0.17s, color 0.1s;
}
.cookie-banner button.reject, .cookie-banner .btn.reject {
  background: #222B4E;
  color: #fff;
  border: 1px solid var(--neon);
}
.cookie-banner button.settings, .cookie-banner .btn.settings {
  background: var(--neon);
  color: #181C2A;
}
.cookie-banner button:hover, .cookie-banner .btn:hover,
.cookie-banner button:focus, .cookie-banner .btn:focus {
  filter: brightness(1.15) drop-shadow(0 0 7px var(--neon));
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(24, 28, 42, 0.90);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #212640;
  color: #EAF2FD;
  border-radius: 18px;
  padding: 38px 26px 26px 26px;
  min-width: 270px;
  max-width: 99vw;
  box-shadow: 0 2px 24px #14305C55;
  position: relative;
  z-index: 10010;
  animation: fadeInCookie 0.4s;
}
.cookie-modal h3 {
  color: var(--neon);
  margin-top:0;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-modal .category-label {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--secondary);
}
.cookie-modal .category-toggle {
  margin-left: auto;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #444B67;
  border-radius: 22px;
  transition: 0.2s;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--neon);
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(16px);
  background: var(--secondary);
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 22px;
}
.cookie-modal .btn {
  padding: 8px 16px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px;
  right: 18px;
  font-size: 1.5rem;
  color: var(--neon);
  background: transparent;
  border: none;
  cursor: pointer;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--secondary);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1060px) {
  .container {
    max-width: 96vw;
    padding: 0 2vw;
  }
  .main-nav {
    gap: 18px;
  }
  header .container {
    min-height: 68px;
  }
}
@media (max-width: 900px) {
  .feature-list{
    gap: 18px;
  }
  .content-wrapper, section .content-wrapper {
    padding: 26px 8px;
  }
  .card {
    padding: 20px 14px;
  }
}
@media (max-width: 768px) {
  /* Stack layout to column */
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: inline-block; }
  header .cta-primary {
    display: none !important;
  }
  .footer-contact, .brand-info, .social-links, footer nav {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .content-grid, .card-container, .feature-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .section {
    margin-bottom: 38px;
    padding: 28px 7px;
  }
  section {
    margin-bottom: 38px;
    padding: 19px 0;
  }
  .card {
    min-width: 0;
    width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }
  .content-wrapper, section .content-wrapper {
    padding: 18px 6px;
    border-radius: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.12rem; }
  .brand-info img { height: 23px; }
  .cookie-modal { padding: 20px 4vw 22px 4vw;}
  .social-links a img { width: 22px; height: 22px; }
}

/* MICROINTERACTIONS & HOVER STATES */
a, button, .cta-primary, .card, .feature-list li, .testimonial-card, .cookie-banner button, .cookie-banner .btn {
  transition: box-shadow 0.2s, background 0.15s, color 0.12s, opacity 0.23s, filter 0.2s, transform 0.16s;
}
a:focus, button:focus, .cookie-banner button:focus, .cookie-banner .btn:focus {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

/* OTHER STYLES */
::-webkit-scrollbar {
  width: 8px;
  background: #151A2E;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 6px;
}

/* Visual Neon edge for futuristic look */
.card, .feature-list li, .testimonial-card, .content-wrapper {
  border: 1.5px solid rgba(53,230,252,0.04);
  box-shadow: 0 2px 18px #1C3C5F22, 0 0 0px 1.5px var(--neon) inset;
}
.card:hover, .feature-list li:hover {
  box-shadow: 0 0 10px var(--neon), 0 8px 36px #14305C44;
  border-color: var(--secondary);
}

/* LIST DEFAULTS */
ul, ol {
  margin-left: 0;
  padding-left: 0;
}

/* FOCUS STATES FOR ACCESSIBILITY */
:focus-visible {
  outline: 2px solid var(--neon) !important;
  outline-offset: 1px;
}

/* Z-INDEXS */
header { z-index: 100; }
.mobile-menu { z-index: 9000; }

/* END OF CSS */
