/* CSS RESET & NORMALIZE */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  line-height: 1.15;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #181D23;
  color: #EFF2F4;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1B9F91;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4F8FB;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li + li {
  margin-top: 8px;
}
::-webkit-input-placeholder { color: #5F6773; }
:-ms-input-placeholder { color: #5F6773; }
::placeholder { color: #5F6773; }

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.015em;
  color: #E3E8EF;
  font-weight: 700;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.subhead {
  font-size: 1.125rem;
  color: #C5CFDA;
  margin-bottom: 18px;
}
p {
  margin-bottom: 18px;
  color: #D2D8DE;
  line-height: 1.6;
}
strong {
  color: #F4F8FB;
  font-weight: 700;
}

/* LAYOUT CONTAINERS */
.container {
  max-width: 1120px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

/* BUTTONS */
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #24507A;
  color: #F4F8FB;
  border: 2px solid #3C4B5A;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-top: 16px;
  box-shadow: 0 2px 14px 0 rgba(27,159,145,0.10);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s, transform 0.16s;
  text-shadow: 0 1px 4px rgba(34,36,38,0.24);
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #1B9F91;
  color: #181D23;
  border-color: #1B9F91;
  box-shadow: 0 4px 18px 0 rgba(36,80,122,0.18);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

/* HEADER & NAVIGATION */
header {
  background: #1A222B;
  border-bottom: 2px solid #223047;
  box-shadow: 0 2px 10px 0 rgba(44,52,65,0.15);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
.logo img {
  max-height: 44px;
  width: auto;
  filter: grayscale(30%) brightness(0.94) contrast(1.04);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: #D2D8DE;
  transition: color 0.15s, background 0.2s;
  padding: 8px 0;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #1B9F91;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F4F8FB;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  margin-left: 14px;
  transition: color 0.18s;
  z-index: 302;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #1B9F91;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #23292F;
  box-shadow: 0 0 32px 0 rgba(20,32,39, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.90, 0, 0.29, 1);  
  z-index: 301;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: none;
  border: none;
  color: #F4F8FB;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 304;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #1B9F91;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 44px;
}
.mobile-nav a {
  color: #EFF2F4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
  width: 100%;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #1B9F91;
  color: #20252B;
  outline: none;
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 8px;
  }
  .main-nav a {
    font-size: 0.90rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    padding: 12px 18px;
    font-size: 0.98rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO SECTION */
.hero {
  background: #232B31;
  border-bottom: 2px solid #223047;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
}
.hero h1 {
  color: #F4F8FB;
  text-shadow: 0 2px 8px rgba(38,54,77,0.12);
}
.hero .subhead {
  color: #B3C7D2;
}

/* FLEXBOX LAYOUTS */
.card-container, .card-grid, .feature-grid, .service-grid, .blog-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #232A2E;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(36,80,122,0.10);
  padding: 28px 24px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 8px 25px rgba(27,159,145,0.17);
  transform: translateY(-2px) scale(1.015);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* FEATURES & SERVICES */
.features, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid, .service-grid {
  gap: 24px;
}
.feature-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #232A2E;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(36,80,122,0.10);
  padding: 20px 24px;
  min-width: 240px;
  flex: 1 1 220px;
  transition: box-shadow 0.16s;
}
.feature-item:hover, .service-item:hover {
  box-shadow: 0 8px 25px rgba(27,159,145,0.14);
}
.feature-item img, .service-item img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  filter: grayscale(60%) brightness(1.09) contrast(1.12);
}

/* CARD & ARTICLE STYLES */
article {
  background: #21262C;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(36,80,122,0.08);
  padding: 20px 18px 18px 18px;
  margin-bottom: 20px;
}
.article h2 {
  color: #F2F6F8;
  font-size: 1.18rem;
}
.category {
  background: #24507A;
  color: #F4F8FB;
  border-radius: 6px;
  font-size: 0.85rem;
  padding: 2px 10px;
  margin-top: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* TESTIMONIAL CARDS */
.testimonials {
  background: #21262C;
  border-radius: 14px;
  padding: 40px 24px;
  box-shadow: 0 2px 14px rgba(27,159,145,0.07);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 36px 20px 28px;
  margin-bottom: 24px;
  background: #F8F9FA;
  color: #232B31;
  border-left: 6px solid #1B9F91;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(36,80,122,0.09);
  transition: box-shadow 0.16s;
}
.testimonial-card .author {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #24507A;
  font-weight: 600;
  font-size: 0.98rem;
  margin-top: -6px;
}
.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.testimonial-card p {
  color: #21262C;
  font-size: 1.05rem;
  line-height: 1.65;
}
@media (max-width: 650px) {
  .testimonial-card {
    padding: 16px 12px;
  }
}

/* TABLES (CENNIK, GODZINY) */
.pricing-table, .hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  color: #D2D8DE;
  font-size: 1rem;
  border-radius: 8px;
  overflow: hidden;
}
.pricing-table th, .hours-table th {
  background: #21262C;
  color: #B3C7D2;
  font-weight: 700;
  padding: 12px 8px;
  border-bottom: 2px solid #223047;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table td, .hours-table td {
  background: #232A2E;
  padding: 12px 8px;
  border-bottom: 1px solid #223047;
}
.pricing-table tr:last-child td, .hours-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tbody tr:hover td {
  background: #253D51;
  color: #F4F8FB;
}

/* FOOTER */
footer {
  background: #20242B;
  border-top: 2px solid #223047;
  color: #768085;
  font-size: 0.98rem;
  padding-top: 26px;
  padding-bottom: 16px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #8DA4B5;
  transition: color 0.12s;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #1B9F91;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.footer-contact img {
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-bottom {
  margin-top: 20px;
  color: #5A6E7B;
  font-size: 0.92rem;
  text-align: left;
}

@media (max-width: 768px) {
  .footer-nav, .footer-contact {
    flex-direction: column;
    gap: 8px;
    font-size: 1rem;
    align-items: flex-start;
  }
}

/* ABOUT PAGE / VALUES */
.about .text-section, .legal .text-section {
  padding: 16px 0;
  max-width: 880px;
  color: #BCC8D6;
}
.certifications p {
  color: #B3C7D2;
  font-size: 1rem;
  margin-top: 12px;
}
.values ul {
  list-style: disc;
  padding-left: 26px;
  margin-bottom: 12px;
}
.values ul li {
  margin-bottom: 10px;
  color: #D2D8DE;
}

/* SERVICES PAGE LAYOUTS */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #232A2E;
  border-radius: 6px;
  padding: 12px 18px;
  color: #BFD0DE;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.benefit-list li img {
  height: 22px;
  width: 22px;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #232A2E;
  border-radius: 10px;
  box-shadow: 0 2px 7px rgba(36,80,122,0.07);
  padding: 18px 22px;
  transition: box-shadow 0.18s;
  margin-bottom: 6px;
}
.faq-item:hover {
  box-shadow: 0 6px 20px rgba(27,159,145,0.10);
}
.faq-item h3 {
  color: #F4F8FB;
  font-size: 1.06rem;
  margin-bottom: 6px;
}
.faq-item p {
  color: #B3C7D2;
  font-size: 1rem;
  margin-bottom: 0;
}

/* BLOG & NEWSLETTER */
.blog-intro .blog-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.newsletter {
  background: #21262C;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(36,80,122,0.07);
  padding: 40px 16px;
}
.newsletter-text p {
  color: #B3C7D2;
  margin-bottom: 8px;
}
.categories {
  margin-top: 20px;
  font-size: 1rem;
  color: #B3C7D2;
}
.categories a {
  color: #24507A;
  font-weight: 600;
  margin-right: 6px;
  transition: color 0.14s;
}
.categories a:hover {
  color: #1B9F91;
}

/* CONTACT PAGE */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-top: 18px;
}
.contact-details ul {
  margin-bottom: 18px;
}
.contact-details li, .contact-details p {
  color: #D2D8DE;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-details img {
  height: 20px;
  width: 20px;
  flex-shrink: 0;
}
.map {
  background: #21262C;
  border-radius: 6px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}
.map p {
  color: #B3C7D2;
}
.map a {
  background: #24507A;
  color: #F4F8FB;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
}
.map a:hover, .map a:focus {
  background: #1B9F91;
  color: #232A2E;
}

@media (max-width: 700px) {
  .contact-details {
    flex-direction: column;
    gap: 22px;
  }
}

.hours-table {
  width: auto;
  min-width: 240px;
  font-size: 1rem;
  background: #232A2E;
}
.hours-table td {
  padding: 10px 18px;
  border-bottom: 1px solid #223047;
  color: #C5CFDA;
}
.hours-table tr:last-child td {
  border-bottom: none;
  color: #777;
}

/* CTA SECTIONS */
.cta {
  background: #262F36;
  border-radius: 12px;
  box-shadow: 0 4px 18px 0 rgba(36,80,122,0.10);
  padding: 40px 20px;
  margin-bottom: 42px;
  text-align: center;
}
.cta h2 {
  color: #F4F8FB;
  margin-bottom: 24px;
}
.cta .cta-button {
  margin-top: 10px;
}

/* PLAN FEATURES IN PRICING */
.plan-features {
  margin-top: 34px;
  background: #232A2E;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(36,80,122,0.07);
  padding: 22px 18px;
}
.plan-features ul {
  padding-left: 24px;
}
.plan-features li {
  color: #B3C7D2;
  margin-bottom: 7px;
}

/* LEGAL PAGES */
.legal {
  background: #232A2E;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(36,80,122,0.07);
  margin-bottom: 48px;
  padding: 38px 20px 42px 20px;
}
.legal h1, .legal h2 {
  color: #EFF2F4;
}
.legal a {
  text-decoration: underline;
  color: #1B9F91;
}

/* THANK-YOU / SUCCESS */
.thank-you {
  background: #21262C;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(27,159,145,0.07);
  padding: 48px 20px;
  margin-bottom: 40px;
  text-align: center;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #232B31;
  color: #EFF2F4;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 18px;
  font-size: 0.98rem;
  box-shadow: 0 -4px 16px rgba(36,80,122,0.08);
  z-index: 9000;
  animation: banner-fade-in 0.8s cubic-bezier(0.6,0.08,0.17,1);
}
@keyframes banner-fade-in {
  from { opacity: 0; transform: translateY(90px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-btn {
  background: #1B9F91;
  color: #EFF2F4;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  padding: 10px 18px;
  margin-left: 9px;
  cursor: pointer;
  outline: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.14s;
  box-shadow: 0 2px 8px rgba(27,159,145,0.11);
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #24507A;
  color: #F4F8FB;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  color: #1B9F91;
  border: 2px solid #1B9F91;
  transition: background 0.17s, color 0.17s;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #1B9F91;
  color: #232B31;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,29,35,0.73);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.25s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-dialog {
  background: #232B31;
  color: #EFF2F4;
  border-radius: 9px;
  max-width: 420px;
  width: 95vw;
  padding: 32px 20px 18px 20px;
  box-shadow: 0 8px 44px rgba(36,80,122,0.25);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-pop 0.32s cubic-bezier(0.7,0.09,0.14,1);
}
@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.92) translateY(70px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-dialog h2 {
  color: #EFF2F4;
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.cookie-modal-dialog label {
  font-size: 1rem;
  color: #EFF2F4;
  font-weight: 600;
  margin-right: 9px;
}
.cookie-modal-dialog .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 15px;
  justify-content: flex-end;
}
.cookie-modal-dialog .modal-actions .cookie-btn {
  min-width: 80px;
}

.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #1B9F91;
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.cookie-category .description {
  font-size: 0.99rem;
  color: #CCE7DF;
  margin-left: 2px;
  font-style: italic;
}
.cookie-modal-dialog .close-modal {
  background: none;
  color: #EFF2F4;
  font-size: 2rem;
  position: absolute;
  top: 18px;
  right: 20px;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-dialog .close-modal:hover,
.cookie-modal-dialog .close-modal:focus {
  color: #1B9F91;
}

/* RESPONSIVENESS */
@media (max-width: 1060px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 720px;
  }
  .feature-grid, .service-grid, .blog-snippets {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.19rem; }
  .content-wrapper,
  .testimonials,
  .newsletter,
  .cta,
  .thank-you,
  .legal,
  .features, .service-grid, .feature-grid, .card-grid, .card-container, .blog-snippets {
    padding: 0;
    gap: 12px;
  }
  .feature-item, .service-item {
    font-size: 0.98rem;
    padding: 16px;
    min-width: 160px;
  }
}
@media (max-width: 550px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .feature-item, .service-item {
    min-width: 100px;
    padding: 10px 6px;
  }
}

/* VISUAL ACCENTS (INDUSTRIAL MODERN) */
.card, .feature-item, .service-item, .testimonial-card, .cta, .plan-features, .legal, .newsletter, .thank-you {
  border: 1.5px solid #232E40;
}
hr {
  border: 0;
  height: 1px;
  background: #232E40;
  margin: 24px 0;
}

/* UTILITIES */
.text-center { text-align: center; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-20 { gap: 20px; }

/* SHADOW/METALLIC ACCENTS */
.card, .feature-item, .service-item, .testimonial-card {
  box-shadow: 0 2px 10px rgba(36,80,122,0.13), 0 1px 2px #20232a inset;
}
.card-title, .feature-item h3, .service-item h3, .faq-item h3 {
  color: #A5BDCC;
  letter-spacing: 0.03em;
}

/* MICRO-INTERACTIONS */
.card, .faq-item, .service-item, .feature-item, .testimonial-card {
  transition: box-shadow 0.15s, transform 0.13s;
}
.card:hover, .faq-item:hover, .service-item:hover, .feature-item:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 6px 18px rgba(36,80,122,0.14);
}

/* SCROLLBAR (INDUSTRIAL FEEL) */
::-webkit-scrollbar { width: 10px; background: #232A2E; }
::-webkit-scrollbar-thumb { background: #24507A; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #1B9F91; }

/* END CSS */
