/* RESET & BASE STYLES */
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,
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #1A2235;
  color: #FFF;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* Tech/Futuristic background accent */
  background-color: #1A2235;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #F7B500;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFF;
  outline: none;
}
ul, ol {
  margin: 0 0 1em 1.2em;
  padding: 0;
}
li {
  margin-bottom: 0.6em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F7B500;
  font-weight: bold;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.2rem; margin-bottom: 1.2rem; }
h2 { font-size: 1.6rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.9rem; }
h4, h5, h6 { font-size: 1.07rem; }
p {
  margin-bottom: 1.15em;
  font-size: 1rem;
  color: #e8ecfa;
}
strong, b { color: #F7B500; font-weight: bold; }

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(26,34,53, 0.95);
  border-radius: 24px;
  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.18);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 4vw;
    margin-bottom: 38px;
  }
}

/* FLEXBOX LAYOUTS */
.card-container,
.card-grid,
.feature-list,
.features,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #232b45;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 20px 0 rgba(20,40,80, 0.12);
  transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 36px 0 #f7b50044, 0 2px 24px 0 rgba(0,0,0,0.16);
  transform: translateY(-3px) scale(1.02);
}
.card-content {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .card-grid, .feature-list, .features {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  color: #1A2235;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 26px 0 #22306317, 0 0 6px #F7B50044 inset;
  position: relative;
  flex: 1 1 340px;
  min-width: 0;
  transition: transform 0.16s;
}
.testimonial-card p {
  color: #151b2a;
}
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 6px 38px 0 #f7b50033, 0 0 8px #1A223522;
}
.testimonial-meta {
  font-size: 0.95rem;
  color: #666f83;
  margin-left: auto;
  text-align: right;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
}
@media (max-width: 500px) {
  .testimonial-card {
    flex-direction: column;
    padding: 18px 14px;
    align-items: flex-start;
    min-width: 0;
    gap: 10px;
  }
  .testimonial-meta {
    margin-left: 0;
    text-align: left;
  }
}

/* TYPOGRAPHY SCALE */
.display, .cta-primary, .cta-secondary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
}
.cta-primary {
  background: linear-gradient(90deg,#F7B500 60%,#FFEC2F 100%);
  color: #1A2235;
  border: none;
  border-radius: 22px;
  padding: 13px 35px;
  font-size: 1.09rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 22px;
  cursor: pointer;
  box-shadow: 0 2px 12px #f7b50022;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg,#F7B500 10%,#FFF04C 90%);
  color: #181e2a;
  box-shadow: 0 4px 30px 0 #F7B50077;
  transform: translateY(-2px) scale(1.02);
}
.cta-secondary {
  background: none;
  color: #F7B500;
  border: 1.5px solid #F7B500;
  border-radius: 20px;
  padding: 10px 26px;
  font-size: 1rem;
  margin-top: 16px;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.15s, color 0.15s, border 0.12s;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #F7B500;
  color: #181e2a;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #151b2a;
  box-shadow: 0 4px 24px #181e2a1a;
  position: sticky;
  top: 0;
  z-index: 900;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 16px 0;
  gap: 26px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #e8ecfa;
  letter-spacing: 0.03em;
  position: relative;
  padding: 6px 8px;
  border-radius: 9px;
  transition: background 0.16s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #262d45;
  color: #F7B500;
}
.main-nav .cta-primary {
  margin: 0 0 0 18px;
  color: #181e2a !important;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F7B500;
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 16px;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 7px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
    z-index: 1101;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(26,34,53,0.98);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.69,.19,.48,.98);
  z-index: 2200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F7B500;
  font-size: 2.7rem;
  cursor: pointer;
  position: absolute;
  top: 24px; right: 24px;
  z-index: 2210;
  transition: color 0.16s;
}
.mobile-menu-close:hover {
  color: #ffd20b;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 100px 32px 32px 32px;
  width: 100vw;
  align-items: flex-start;
}
.mobile-nav a {
  color: #F7B500;
  font-size: 1.3rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 10px 2px;
  border-bottom: 1px solid #28285257;
  width: 100%;
  border-radius: 7px;
  transition: background 0.15s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #262d45;
  color: #FFF;
}

/* Show/hide mobile menu toggle for accessibility */
@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
  }
  .mobile-nav {
    padding-top: 74px;
  }
}

/* MAIN SECTIONS & EFFECTS */
main {
  background: linear-gradient(130deg, #232b45 0%, #202e4a 80%, #1A2235 100%);
  min-height: 100vh;
  position: relative;
}
main .section h1, main .section h2, main .section h3 {
  color: #F7B500;
  text-shadow: 0 4px 15px #f7b5000d, 0 1px 0 #232b45;
}
main .section ul, main .section ol {
  color: #e8ecfa;
}
.section a.cta-primary {
  margin-top: 16px;
}
.text-section {
  margin-bottom: 20px;
  background: #232b4566;
  border-radius: 12px;
  padding: 18px 18px 10px 18px;
  box-shadow: 0 1px 7px #222b3226 inset;
}

/* FOOTER */
footer {
  background: #181e2a;
  box-shadow: 0 -4px 24px #1a223518;
  color: #e8ecfa;
  margin-top: 70px;
  padding-top: 38px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid #292c3c;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-main nav a {
  color: #F7B500;
  font-size: 0.98rem;
  transition: color 0.18s;
  border-radius: 6px;
  padding: 4px 0;
}
.footer-main nav a:hover, .footer-main nav a:focus {
  color: #FFEC2F;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97rem;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff6dc;
  margin-bottom: 0;
}
.footer-copy {
  margin: 0 auto;
  text-align: center;
  color: #F7B500;
  font-size: 0.97rem;
  padding: 18px 0 10px 0;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
}

/* CARDS & MICRO-INTERACTIONS */
.card, .testimonial-card, .text-section {
  transition: box-shadow 0.16s, transform 0.14s;
}
.card:hover, .testimonial-card:hover, .text-section:hover {
  box-shadow: 0 6px 26px #f7b50040, 0 2px 18px #1A2235AA;
  transform: translateY(-2px) scale(1.015);
}

/* ICON STYLING */
img[alt^="Telefon"],
img[alt^="E-mail"],
img[alt^="Adres"],
img[alt^="Godziny"],
img[alt^="Nagroda"],
img[alt^="Certyfikat"],
img[alt^="Gwarancja"],
img[alt^="Konsultacje"],
img[alt^="Dostawa"],
img[alt^="Wsparcie"] {
  height: 1.4em;
  width: 1.4em;
  vertical-align: middle;
  margin-right: 6px;
  filter: drop-shadow(0 0 2px #F7B50077);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2999;
  background: #232b45;
  color: #fff;
  box-shadow: 0 -2px 30px #14192b88, 0 0 1px #f7b500cc inset;
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: cookie-slidein 0.68s cubic-bezier(.77,.08,.16,1);
}
@keyframes cookie-slidein {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  font-size: 1rem;
  color: #fffbe2;
  margin-bottom: 0;
  text-align: center;
}
.cookie-banner-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-btn {
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 10px 30px;
  box-shadow: 0 1px 8px #1A223555;
  margin-top: 0;
  transition: background 0.18s, color 0.14s, transform 0.13s;
}
.cookie-btn.accept {
  background: #F7B500;
  color: #1A2235;
}
.cookie-btn.accept:hover {
  background: #ffe02f;
  color: #181e2a;
}
.cookie-btn.reject {
  background: #1A2235;
  color: #F7B500;
  border: 1.5px solid #F7B500;
}
.cookie-btn.reject:hover {
  background: #262e44;
  color: #fff;
}
.cookie-btn.settings {
  background: #232b45;
  color: #F7B500;
  border: 1.5px solid #F7B500;
}
.cookie-btn.settings:hover {
  background: #F7B500;
  color: #1A2235;
}
@media (max-width: 500px) {
  .cookie-banner {
    padding: 18px 7vw 13px 7vw;
    gap: 12px;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    gap: 13px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,32,60, 0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(.93,0,.68,1);
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #232b45;
  color: #FFF;
  border-radius: 18px;
  box-shadow: 0 12px 54px #1A2235cc;
  padding: 38px 30px 28px 30px;
  min-width: 270px;
  max-width: 97vw;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  opacity: 1;
  animation: modal-fadein 0.35s cubic-bezier(.77,.08,.16,1);
  position: relative;
}
@keyframes modal-fadein {
  0% { transform: translateY(24px) scale(0.95); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 2rem;
  color: #ffe027;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 5px;
  border-radius: 50%;
  transition: background 0.15s;
  z-index: 10;
}
.cookie-modal-close:hover {
  background: #F7B50033;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #181e2a;
  padding: 13px 17px;
  border-radius: 12px;
  color: #ffeec2;
}
.cookie-category input[type="checkbox"] {
  width: 1.2em;
  height: 1.2em;
  accent-color: #F7B500;
  margin-right: 5px;
}
.cookie-category label {
  font-size: 1rem;
  color: #FFEC2F;
}
.cookie-category .category-desc {
  font-size: 0.96rem;
  color: #f4f7fa;
  margin-left: 7px;
}
/* Always enabled style */
.cookie-category.essential label {
  color: #F7B500;
  opacity: 1;
}
.cookie-category.essential input {
  display: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 7px;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 21px 4vw 17px 4vw;
    min-width: 0;
    width: 99vw;
  }
  .cookie-modal-actions {
    flex-direction: column;
    gap: 11px;
    align-items: stretch;
  }
}

/* RESPONSIVE TYPOGRAPHY & SPACING */
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.1rem; }
}

/* SCROLLBAR FUTURISTIC-TECH */
body::-webkit-scrollbar {
  width: 10px;
  background: #202e4a;
}
body::-webkit-scrollbar-thumb {
  background: #F7B50055;
  border-radius: 7px;
}
body {
  scrollbar-width: thin;
  scrollbar-color: #F7B500 #202e4a;
}

/* SELECTION */
::selection {
  background: #F7B500;
  color: #1A2235;
}

/* FIXED DECORATIVE BORDER GLOW FOR CTA */
.cta-primary {
  box-shadow: 0 0 0 2px #F7B50044, 0 4px 14px #F7B50033;
}

/* ADD NEON SHADOWS FOR FUTURISTIC ACCENT */
.card:hover, .cta-primary:hover, .cta-primary:focus {
  box-shadow: 0 0 18px 2px #f7b50044, 0 4px 30px 0 #F7B50055;
  outline: none;
}

/* ACCENT BORDERS HERE AND THERE */
.section {
  border: 1.5px solid #232a38;
  border-bottom: 2.5px solid #F7B50022;
}

/* Ensure no overlap, proper vertical spacing */
.section + .section { margin-top: 24px; }
.card + .card, .testimonial-card + .testimonial-card, .feature-item + .feature-item { margin-top: 20px; }

/* UTILITIES */
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* ACCESSIBILITY */
:focus {
  outline: 2px solid #F7B500;
  outline-offset: 2px;
}

/* Hide visually but accessible */
.sr-only { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }

/* BRAND CUSTOM FONT DECLARATIONS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');

