/* RESET and 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,
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #131B23;
  color: #F2F6FA;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #E57C23;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #B25700;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
}

/* BRAND FONT AND METAL URBAN FLAVOR */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800|Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #F2F6FA;
  font-weight: 800;
  letter-spacing: 1px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 700;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol, blockquote {
  color: #E0E7EF;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

/* CONTAINER & LAYOUT WRAPPERS */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #19222C;
  border-radius: 14px;
  box-shadow: 0 2px 8px #17202455;
  border: 1px solid #324150;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #F2F6FA;
  color: #222;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 12px #17202432;
  min-width: 260px;
  max-width: 480px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #19222C;
  border-bottom: 2px solid #23506B;
  box-shadow: 0 2px 10px #17202430;
  position: sticky;
  top: 0;
  z-index: 2000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  height: 56px;
}
nav {
  display: flex;
  gap: 20px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #F2F6FA;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.24s, color 0.24s;
}
nav a:hover, nav a:focus {
  background: #23506B;
  color: #E57C23;
}
.btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 11px 28px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px #1A2028;
  transition: background 0.22s, color 0.22s, box-shadow 0.16s, transform 0.24s;
}
.btn-primary {
  background: #E57C23;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #B25700;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px #E57C2324;
}
.btn-secondary {
  background: #23506B;
  color: #fff;
  border: 2px solid #E57C23;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #1D3649;
  color: #E57C23;
  border-color: #B25700;
}

/* HAMBURGER MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.2rem;
  color: #E57C23;
  border: none;
  margin-left: 20px;
  cursor: pointer;
  z-index: 2100;
}
.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #131B23F2;
  z-index: 4000;
  animation: slideInMenu 0.32s cubic-bezier(0.6,0.12,0.27,1.27);
  box-shadow: 0 0 24px 0 #000C;
}
@keyframes slideInMenu {
  from { transform: translateX(-100vw); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  margin-top: 16px;
  margin-left: auto;
  margin-bottom: 18px;
  margin-right: 24px;
  cursor: pointer;
  z-index: 4100;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-left: 36px;
}
.mobile-nav a {
  color: #F2F6FA;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 10px 0;
  border-bottom: 1px solid #23506B44;
  width: 100%;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E57C23;
  background: none;
}

@media (max-width: 1020px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 1020px) {
  .mobile-menu {
    display: none;
  }
  .mobile-menu.open {
    display: flex;
  }
}

/* MAIN LAYOUT & SPACING */
main {
  width: 100%;
  padding-top: 6px;
}
section, .section {
  width: 100%;
  margin-bottom: 50px;
  padding: 38px 0 38px 0;
}
.hero {
  background: #23506B;
  color: #F2F6FA;
  box-shadow: 0 3px 14px #131B2330;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding: 16px 0 40px;
  gap: 22px;
  max-width: 600px;
}
.subheadline {
  font-size: 1.2rem;
  color: #D1DCF2;
  margin-bottom: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.4;
}

/* FEATURES GRID & SERVICES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-grid li {
  background: #19222C;
  border-radius: 10px;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 2px 8px #0002;
  border: 1px solid #324150;
  display: flex;
  flex: 1 1 200px;
  min-width: 210px;
  max-width: 330px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.21s, border-color 0.23s, transform 0.20s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 5px 24px #E57C2318, 0 2px 19px #18202A2b;
  border-color: #E57C23;
  transform: translateY(-3px) scale(1.02);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 3px;
  filter: grayscale(0.4) brightness(0.92); /* subtle metallic tint */
}

.service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.service-card {
  background: #19222C;
  color: #F2F6FA;
  border: 1.5px solid #324150;
  border-left: 7px solid #E57C23;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 #20283816;
  padding: 26px 22px 22px 29px;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 185px;
  transition: box-shadow 0.19s, border-color 0.21s, transform 0.18s;
  margin-bottom: 20px;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 7px 26px #E57C2328, 0 2px 15px #18202A26;
  border-left-color: #B25700;
  transform: translateY(-2px) scale(1.025);
}
.service-card .price {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #E57C23;
  margin-top: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

/* TESTIMONIALS */
.testimonial-list, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 14px;
}
blockquote {
  font-size: 1.1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #222;
  font-style: italic;
  margin-bottom: 18px;
  padding-left: 0;
  position: relative;
}
.testimonial-card .reviewer {
  color: #23506B;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-align: right;
  margin-top: 6px;
}
.star-rating {
  color: #E57C23;
  font-size: 1.18rem;
  letter-spacing: 2px;
  margin: -4px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* CTA */
.cta {
  background: #E57C23;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 36px #E57C2327;
  text-align: center;
}
.cta h2 {
  color: #fff;
}
.cta .btn-primary {
  margin-top: 20px;
}

/* FOOTER */
footer {
  width: 100%;
  background: #161B22;
  border-top: 2.5px solid #23506B;
  padding: 38px 0 10px 0;
}
.footer-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #D2DFEA;
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
  padding: 6px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E57C23;
}
footer .text-section {
  text-align: center;
  font-size: 0.98rem;
  color: #BBB;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #19222C;
  color: #F2F6FA;
  margin-bottom: 26px;
  margin-top: 14px;
  border-radius: 10px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 12px;
  border-bottom: 2px solid #1f2938;
  font-size: 1.08rem;
  text-align: left;
}
.pricing-table th {
  background: #23506B;
  font-weight: 700;
  color: #fff;
}
.pricing-table tr:last-of-type td {
  border-bottom: none;
}

/* LEGAL PAGE STYLING */
.legal {
  background: #161B22;
  border-radius: 11px;
  padding: 26px 25px;
  font-size: 1.04rem;
  color: #E0E7EF;
  box-shadow: 0 2px 12px #18213717;
}
.legal h1 { color: #F2F6FA; }
.legal a {
  color: #E57C23;
  text-decoration: underline;
}
.legal ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #19222C;
  border-radius: 10px;
  border: 1px solid #2C3948;
  padding: 22px 23px;
  transition: box-shadow 0.19s, border-color 0.18s;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 8px 32px #E57C231A, 0 2px 8px #23506B22;
  border-color: #E57C23;
}
.faq-item h3 {
  margin-bottom: 10px;
  color: #E57C23;
  font-size: 1.12rem;
}
.faq-answer a { color: #23506B; }

/* ICON ROWS */
.icon-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 14px 0 0 0;
}
.icon-row img {
  width: 44px;
  height: 44px;
  filter: grayscale(0.25) brightness(0.98) drop-shadow(0 2px 4px #1f29381a);
}

/* SOCIAL-LINKS in THANK YOU */
.social-links {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #F2F6FA;
}

/* FEATURE + VALUE LISTS */
.feature-list, .value-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 20px;
  font-size: 1.1rem;
  margin-top: 10px;
}
.value-list li:before {
  content: '\2022';
  color: #E57C23;
  margin-right: 8px;
  font-size: 1.3em;
  vertical-align: baseline;
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.08rem;
  padding-left: 6px;
  margin-bottom: 10px;
}
.step-list li {
  background: #19222C;
  border-radius: 9px;
  padding: 16px 20px;
  border-left: 4px solid #E57C23;
}
.flexibility-highlight {
  color: #fff;
  background: #23506B;
  border-radius: 8px;
  padding: 16px 14px;
  font-size: 1.08rem;
  margin-top: 16px;
}

/* CONTACT PAGE */
.contact-details, .opening-hours, .map-placeholder {
  background: #19222C;
  border-radius: 9px;
  padding: 18px 18px 12px 22px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  border: 1.2px solid #324150;
}
.contact-details strong, .opening-hours h2 {
  color: #E57C23;
  font-size: 1.06rem;
}
.map-placeholder {
  font-style: italic;
  background: #1D262E;
  color: #E0E7EF;
}

/* SPECIAL: Confirmation and banners */
.confirmation {
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #19222C;
  border-radius: 12px;
  box-shadow: 0 5px 26px #23506B16;
  padding: 40px 20px;
}
.confirmation h1 { color: #E57C23; }
.confirmation .btn-primary { margin-top: 16px; }

/* RESPONSIVENESS/MOBILE */
@media (max-width: 940px) {
  .container {
    padding: 0 10px;
  }
  .feature-grid,
  .service-cards,
  .service-list,
  .testimonial-list, .testimonial-slider {
    gap: 16px;
  }
}
@media (max-width: 820px) {
  .feature-grid,
  .service-cards, .service-list {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .testimonial-list, .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid, .icon-row {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  header .container {
    min-height: 64px;
  }
  .section, section {
    padding: 28px 2vw;
    margin-bottom: 34px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .hero .content-wrapper {
    max-width: 98vw;
    padding: 12px 0 22px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.4rem;
    margin-bottom: 13px;
  }
  .feature-grid,
  .service-cards, .service-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-list, .testimonial-slider {
    flex-direction: column;
    gap: 13px;
  }
  .content-grid, .icon-row {
    flex-direction: column;
    gap: 13px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .confirmation, .legal {
    padding: 22px 7px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 4px;
  }
  .cta {
    border-radius: 6px;
    padding: 18px 0;
  }
}

/* ANIMATIONS, TRANSITIONS, MICRO-INTERACTIONS */
a, .btn-primary, .btn-secondary, .feature-grid li, .service-card, .faq-item, .testimonial-card {
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.18s, transform 0.15s;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #161B22;
  color: #F2F6FA;
  box-shadow: 0 -3px 18px #131B238a;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 22px 20px 18px 20px;
  gap: 20px;
  z-index: 5000;
  font-size: 1rem;
  animation: fadeInBanner 0.3s;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  flex: 1 0 140px;
  color: #F2F6FA;
  font-size: 1rem;
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner .btn-cookie {
  padding: 8px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  background: #23506B;
  color: #fff;
  transition: background 0.2s, color 0.23s, transform 0.17s;
}
.cookie-banner .btn-cookie.accept {
  background: #E57C23;
  color: #fff;
}
.cookie-banner .btn-cookie.accept:hover {
  background: #B25700;
}
.cookie-banner .btn-cookie.reject {
  background: #324150;
  color: #fff;
}
.cookie-banner .btn-cookie.reject:hover {
  background: #8c1a21;
  color: #fff;
}
.cookie-banner .btn-cookie.settings {
  background: #19222C;
  color: #F2F6FA;
  border: 1.6px solid #E57C23;
}
.cookie-banner .btn-cookie.settings:hover {
  background: #E57C23;
  color: #fff;
}
@media (max-width: 580px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.97rem;
    padding: 14px 7px 12px 8px;
  }
  .cookie-banner__buttons {
    flex-direction: column;
    gap: 9px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #131B23E5;
  z-index: 7000;
  align-items: center;
  justify-content: center;
  animation: fadeInBanner 0.22s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-box {
  background: #19222C;
  border-radius: 16px;
  box-shadow: 0 8px 48px #1A232E85;
  padding: 38px 24px 26px 24px;
  min-width: 324px;
  max-width: 98vw;
  width: 100%;
  color: #F2F6FA;
  position: relative;
  animation: slideInModal 0.33s cubic-bezier(.7,-0.01,.29,1.09);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@keyframes slideInModal {
  from { transform: scale(0.8) translateY(30px); opacity: 0.1; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-box h2 {
  color: #E57C23;
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 17px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-switch {
  appearance: none;
  width: 36px;
  height: 18px;
  background: #374151;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.21s;
  margin-right: 7px;
}
.cookie-switch:checked {
  background: #E57C23;
}
.cookie-switch:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 1px;
  top: 1px;
  transition: left 0.2s;
  box-shadow: 0 1px 4px #2C394855;
}
.cookie-switch:checked:before {
  left: 19px;
}
.cookie-category--essential label:after {
  content: ' (wymagane)';
  color: #E57C23;
  font-size: 0.95em;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 8000;
  padding: 2px 8px;
  transition: color 0.14s;
}
.cookie-modal-close:hover {
  color: #E57C23;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-actions .btn-cookie {
  padding: 9px 19px;
}

/* OVERLAY for MODALS (hamburger menu, cookie modal) */
.overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #1a202ab2;
  z-index: 3900;
  display: none;
}
.overlay.open {
  display: block;
}

/* UTILITIES & METAL HINTS */
.metallic {
  color: #B9C5CE;
  text-shadow: 0 1px 1px #131B236f;
  letter-spacing: 1px;
}
.urban {
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
::-webkit-scrollbar {
  width: 9px;
  background: #19222C;
}
::-webkit-scrollbar-thumb {
  background: #E57C23;
  border-radius: 5px;
}

/* SPACING - enforced as per requirements */
.card, .service-card, .feature-grid li, .testimonial-card, .faq-item {
  margin-bottom: 20px;
}

/* NO GRID OR COLUMNS USED, FLEXBOX EVERYWHERE */

/* END OF STYLE.CSS */
