/* 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;
}
body {
  line-height: 1.5;
  box-sizing: border-box;
  background: #22282c;
  color: #F9F8F6;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #F9F8F6;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.2; letter-spacing: 2px; }
h2 { font-size: 2rem; line-height: 1.2; letter-spacing: 1px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
p, li, span, a, ul {
  font-size: 1rem;
  color: #D1D4D6;
}
strong { color: #F9F8F6; text-shadow: 0 1px 2px #22282c; }
img { max-width: 100%; display: block; }

/* COLORS for INDUSTRIAL MODERN */
:root {
  --clr-primary: #32657A;
  --clr-secondary: #F9F8F6;
  --clr-accent: #ACDCAE;
  --clr-bg: #22282c;
  --clr-bg-darker: #1A1E21;
  --clr-card: #2F353A;
  --clr-metal: #9498A3;
  --clr-border: #44494F;
  --clr-btn: #32657A;
  --clr-btn-text: #F9F8F6;
  --shadow-main: 0 4px 24px 0 rgba(49,64,74,0.20);
}

body {
  background: var(--clr-bg);
  color: var(--clr-secondary);
}

/* CONTAINERS & FLEX LAYOUTS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--clr-card);
  border-radius: 10px;
  box-shadow: var(--shadow-main);
  padding: 32px 20px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid var(--clr-border);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.card:hover, .card:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 6px 24px 0 rgba(172,220,174,0.15);
  transform: translateY(-4px) scale(1.01);
}
.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;
  padding: 20px;
  background: #F9F8F6;
  color: #22282c;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 3px 16px rgba(50,101,122,0.10);
  border: 1px solid #dedede;
}
.testimonial-footer span {
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #32657A;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(96deg, #262C31 70%, #32657A 100%);
  box-shadow: 0 8px 30px rgba(34,40,44,0.10);
  border-radius: 0 0 24px 24px;
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 60px 0 48px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}
.hero h1 {
  color: #F9F8F6;
  font-size: 2.4rem;
  letter-spacing: 2px;
  line-height: 1.15;
}
.hero p {
  color: #ACDCAE;
  font-size: 1.18rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

/* NAVIGATION - DESKTOP & MOBILE */
header {
  background: #2F353A;
  border-bottom: 2px solid var(--clr-border);
  box-shadow: 0 2px 20px rgba(50,101,122,0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 1rem;
  color: #F9F8F6;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.17s;
  padding: 8px 0;
  position: relative;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  color: #ACDCAE;
}
.main-nav img {
  height: 40px;
  margin-right: 24px;
}
.cta-btn {
  background: linear-gradient(93deg, #32657A 80%, #ACDCAE 130%);
  color: #F9F8F6;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1.3px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(50,101,122,0.10);
  transition: background 0.22s, box-shadow 0.22s, color 0.16s;
  outline: none;
  text-decoration: none;
  margin-left: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(93deg, #456d7c 70%, #90c6a7 140%);
  color: #101516;
  box-shadow: 0 6px 24px rgba(172,220,174,0.14);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #ACDCAE;
  cursor: pointer;
  margin-left: auto;
  z-index: 98;
  transition: color 0.17s;
}
.mobile-menu-toggle:focus { outline: 2px solid #32657A; }
.mobile-menu {
  display: none;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    background: #22282c;
    z-index: 999;
    transform: translateX(-100vw);
    transition: transform 0.35s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    box-shadow: 0 2px 20px rgba(50,101,122,0.15);
    padding: 0;
  }
  .mobile-menu.active {
    display: flex;
    transform: translateX(0);
  }
  .mobile-menu-close {
    background: none;
    border: none;
    color: #ACDCAE;
    font-size: 2.2rem;
    padding: 18px 30px 6px 12px;
    align-self: flex-end;
    cursor: pointer;
    z-index: 1000;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-top: 28px;
    padding: 0 30px 24px 32px;
  }
  .mobile-nav a {
    color: #F9F8F6;
    font-size: 1.22rem;
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid #31373d22;
    transition: color 0.17s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    color: #ACDCAE;
  }
}

/* FOOTER */
footer {
  background: var(--clr-card);
  border-top: 2px solid var(--clr-primary);
  padding: 28px 0 0 0;
  margin-top: 60px;
  width: 100%;
}
.footer-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 44px;
  align-items: flex-start;
  padding: 0 0 16px 0;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer-brand img {
  width: 44px;
  margin-bottom: 3px;
}
.footer-brand span {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #ACDCAE;
}
.footer-brand p {
  font-size: 0.98rem;
  color: #BFCAD1;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 0;
}
.footer-menu {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-menu a {
  text-decoration: none;
  color: #9498A3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  transition: color 0.17s;
  padding: 2px 0;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #ACDCAE;
}
.footer-social {
  display: flex;
  gap: 22px;
}
.footer-social a {
  transition: opacity 0.12s;
}
.footer-social a:hover, .footer-social a:focus {
  opacity: 0.6;
}
.footer-social img {
  height: 28px;
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* FEATURES, CARDS, SERVICE LISTS */
.features ul, .services ul, .contact-details ul, .categories ul, .styles ul, .tricks ul, .team-bios ul, .scope ul, .additional-knowledge ul, .posts ul, .features ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  margin-left: 0;
}
.features ul li, .services ul li, .contact-details ul li, .categories ul li, .styles ul li, .tricks ul li, .team-bios ul li, .scope ul li, .additional-knowledge ul li, .posts ul li {
  background: var(--clr-card);
  padding: 18px 18px 18px 52px;
  border-radius: 8px;
  border: 1px solid var(--clr-border);
  color: #D1D4D6;
  position: relative;
  min-height: 36px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: border-color 0.18s, background 0.15s;
}
.features ul li:hover, .services ul li:hover, .categories ul li:hover, .styles ul li:hover, .tricks ul li:hover, .team-bios ul li:hover, .scope ul li:hover, .additional-knowledge ul li:hover, .posts ul li:hover {
  border-color: #ACDCAE;
  background: #263137;
}
.features ul li img, .services ul li img, .contact-details ul li img {
  width: 28px;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  filter: grayscale(40%) contrast(140%);
}

/* QUOTED TEXT AND LINKS */
blockquote, .testimonial-card p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #22282c;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 0.5em;
}
a {
  color: #ACDCAE;
  text-decoration: underline;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #32657A;
  text-decoration: none;
}

/* CONTACT SECTIONS */
.contact-details,
.contact-info {
  margin-bottom: 24px;
}
.cta-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* MODALS & BANNERS: COOKIE BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #2F353A;
  color: #F9F8F6;
  box-shadow: 0 -2px 22px rgba(50,101,122,0.19);
  z-index: 10000;
  border-top: 2px solid #32657A;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  padding: 20px 30px 20px 20px;
  max-width: 100vw;
  animation: cookieBannerIn 0.36s cubic-bezier(.6,.3,.9,1.3);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-text {
  font-size: 1rem;
  color: #F9F8F6;
  margin-bottom: 6px;
  max-width: 550px;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-consent-banner .cookie-btn {
  background: #32657A;
  border: none;
  color: #F9F8F6;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.21s, color 0.13s;
  margin: 0 2px 0 0;
  outline: none;
}
.cookie-consent-banner .cookie-btn.settings {
  background: #ACDCAE;
  color: #22282c;
  border: 1px solid #32657A;
}
.cookie-consent-banner .cookie-btn.reject {
  background: #262C31;
  color: #BFCAD1;
  border: 1px solid #44494F;
}
.cookie-consent-banner .cookie-btn:hover,
.cookie-consent-banner .cookie-btn:focus {
  background: #ACDCAE;
  color: #22282c;
}
/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 20000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(34,40,44,0.84);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: cookieModalFadeIn 0.28s cubic-bezier(0.7,0.2,0.3,1.2);
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #2F353A;
  border-radius: 14px;
  padding: 30px 30px 28px 30px;
  max-width: 98vw;
  min-width: 320px;
  width: 420px;
  box-shadow: 0 8px 48px rgba(50,101,122,0.18);
  color: #F9F8F6;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  color: #ACDCAE;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-cat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #F9F8F6;
  font-weight: 500;
  line-height: 1.5;
}
.cookie-modal label.disabled {
  color: #9498A3;
  text-decoration: line-through;
}
.cookie-modal .toggle {
  width: 38px; height: 22px;
  background: #9498A3;
  border-radius: 11px;
  cursor: pointer;
  position: relative;
}
.cookie-modal .toggle[aria-checked='true'] {
  background: #ACDCAE;
}
.cookie-modal .toggle-thumb {
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #FFF;
  box-shadow: 0 1px 5px #22282c3a;
  transition: left 0.16s cubic-bezier(.6,.3,.9,1.29);
}
.cookie-modal .toggle[aria-checked='true'] .toggle-thumb {
  left: 19px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 16px; top: 13px;
  color: #ACDCAE;
  background: none;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 4px 8px;
  z-index: 1;
}
/* ANIMATIONS & MICRO-INTERACTIONS */
button, .cta-btn, .cookie-btn {
  transition: background 0.23s, color 0.18s, box-shadow 0.20s, border-color 0.17s, transform 0.15s;
}
button:active, .cta-btn:active, .cookie-btn:active {
  transform: scale(0.97);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container { max-width: 960px; }
  .hero { min-height: 260px; padding-top: 44px; }
  .card { padding: 26px 12px; }
}
@media (max-width: 900px) {
  .container { max-width: 730px; }
  .hero { min-height: 190px; padding-bottom: 36px; }
}
@media (max-width: 768px) {
  .container { max-width: 96vw; padding: 0 10px; }
  .hero { border-radius: 0 0 14px 14px; padding: 40px 0 26px 0; }
  .content-wrapper, .features ul, .services ul, .categories ul, .styles ul, .tricks ul, .team-bios ul, .scope ul, .additional-knowledge ul, .posts ul {
    gap: 14px;
  }
  .card-container, .content-grid { gap: 12px; }
  .footer-content {
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 13px 8px;
    font-size: 1rem;
  }
  .section {
    margin-bottom: 40px;
    padding: 30px 4px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.13rem; }
  .hero { padding: 18px 0 10px 0; border-radius: 0; }
  .section { padding: 20px 2px; margin-bottom: 30px; }
  .card { padding: 14px 5px; }
  .cookie-modal { min-width: 216px; width: 95vw; padding: 24px 8px 10px 16px; }
}
/* THANK YOU, PRIVACY, RODO, ETC PAGES */
.privacy, .rodo, .rules, .cookies, .thank-you, .what-next {
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: var(--clr-card);
  border-radius: 10px;
  padding: 32px 16px;
  margin-bottom: 40px;
  border: 1.5px solid var(--clr-border);
  box-shadow: 0 2px 10px rgba(50,101,122,0.07);
}

/* TYPOGRAPHY - INDUSTRIAL MODERN */
html {
  font-size: 16px;
}
body, p, span, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #D1D4D6;
}
h1,h2,h3,h4,h5,h6,.cta-btn, .main-nav a, .mobile-nav a, .footer-brand span {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
}

/* INDUSTRIAL TOUCHES */
.card, .features ul li, .testimonial-card, .privacy, .rodo, .rules, .cookies, .thank-you, .what-next {
  box-shadow: 0 2px 14px 0 rgba(49,64,74,0.12), 0 1.5px 0 0 #9498A322;
  border-left: 4px solid #9498A3;
}
.card:hover, .features ul li:hover {
  border-left: 4px solid #ACDCAE;
}
.main-nav a, .mobile-nav a, .cta-btn, .footer-menu a {
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* HIGH CONTRAST IN TESTIMONIALS/REVIEW SECTIONS */
.testimonials, .testimonial-card {
  color: #22282c;
  background: #F9F8F6;
}
.testimonial-card p, .testimonial-card .testimonial-footer {
  color: #22282c;
}

/* SELECTED ICON STYLING */
.features ul li img, .contact-details ul li img, .contact-info ul li img {
  filter: contrast(160%) grayscale(60%) brightness(1.25) drop-shadow(0 0 1px #32657A);
}

/* MICRO-INTERACTIONS: HOVER EFFECTS */
.features ul li, .services ul li, .categories ul li, .styles ul li, .tricks ul li, .scope ul li, .team-bios ul li, .additional-knowledge ul li {
  cursor: pointer;
}
.features ul li:active, .services ul li:active, .categories ul li:active, .styles ul li:active, .tricks ul li:active, .scope ul li:active, .team-bios ul li:active, .additional-knowledge ul li:active {
  transform: scale(0.98);
}

/* SCROLLBAR (INDUSTRIAL ACCENT) */
::-webkit-scrollbar {
  width: 12px;
  background: #262C31;
}
::-webkit-scrollbar-thumb {
  background: #32657A;
  border-radius: 8px;
  border: 2.5px solid #262C31;
}
::-webkit-scrollbar-thumb:hover {
  background: #ACDCAE;
}

/* Form Elements (if used in future) */
input[type='text'],input[type='email'],textarea {
  background: #22282c;
  border: 1.5px solid #9498A3;
  color: #F9F8F6;
  border-radius: 6px;
  padding: 11px 16px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
  width: 100%;
  transition: border 0.16s, background 0.13s;
  outline: none;
}
input[type='text']:focus,input[type='email']:focus,textarea:focus {
  border: 1.5px solid #ACDCAE;
  background: #233742;
}

/* Accessibility & Focus */
a:focus, button:focus, .cta-btn:focus, input:focus, .cookie-btn:focus {
  outline: 2px solid #ACDCAE;
  outline-offset: 2px;
}

/* Prevent absolute positioning overlap for content */
.card, .testimonial-card, .features ul li, .footer-content, .content-wrapper, .section {
  position: relative;
  z-index: 1;
}

/* Utilities for Spacing Consistency */
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-60 { margin-top: 60px !important; }
.mb-60 { margin-bottom: 60px !important; }
.gap-20 { gap: 20px !important; }

/* Prevent overlapping of cards/content */
.card + .card, .testimonial-card + .testimonial-card, .section + .section {
  margin-top: 24px;
}

/* Ensure min margins between cards, sections, and major blocks */
.section, .card, .testimonial-card, .features ul li, .footer-content {
  margin-bottom: 20px;
}

/* Hide elements visually when needed */
.hidden {
  display: none !important;
  visibility: hidden;
}

/* END OF CSS */