/* 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,
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;
}
html {
  line-height: 1.15;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  color: #161616;
  min-height: 100vh;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #161616;
  margin-bottom: 16px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.75rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.375rem;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #242424;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}
blockquote {
  font-style: italic;
  border-left: 3px solid #444;
  padding-left: 20px;
  color: #313131;
  margin-bottom: 16px;
  background: #F8F9FA;
  border-radius: 5px;
  font-size: 1.08rem;
}

/* SECTIONS & CONTAINERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 111;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-start;
  padding: 20px 0 12px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.main-nav img {
  height: 38px;
  margin-right: 18px;
}
.main-nav a {
  color: #5cb485;
  padding: 4px 8px;
  border-radius: 3px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #232323;
  color: #fff;
}
.cta-button {
  color: #fff;
  background: #161616;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 18px 0 rgba(44,44,44, 0.08);
  margin-left: 16px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  letter-spacing: 0.03em;
}
.cta-button:hover,
.cta-button:focus {
  background: #204372;
  color: #fff;
  box-shadow: 0 5px 22px 0 rgba(32,67,114,0.13);
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 900px) {
  .main-nav {
    gap: 18px;
    font-size: 0.98rem;
  }
  .cta-button {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 0.96rem;
  }
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #222;
  cursor: pointer;
  margin-left: auto;
  z-index: 1001;
  padding: 6px 12px 6px 20px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #161616;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(12, 12, 14, 0.97);
  color: #fff;
  z-index: 1800;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.68,-.55,.27,1.55);
  box-shadow: -8px 0 32px rgba(0,0,0,0.22);
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #eee;
  margin: 26px 24px 0 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #d2d2d2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 38px 28px 10px 36px;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 30px;
}
.mobile-nav a {
  color: #fff;
  padding: 8px 4px;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s;
  font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #242424;
  color: #FAFAFA;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 9px;
  }
  .cta-button {
    margin-left: 4px;
  }
}
@media (max-width: 900px) {
  .main-nav a:not(:first-child), .main-nav .cta-button {
    display: none;
  }
  .main-nav img {
    margin-right: 0;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* HERO SECTION */
.hero {
  background: #181818 url('../assets/hero-bg.png') no-repeat center/cover;
  color: #fff;
  min-height: 330px;
  padding: 80px 0 70px 0;
  display: flex;
  align-items: center;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper h1 {
  color: #fff;
  font-size: 2.7rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.23);
  margin-bottom: 18px;
  font-weight: 800;
}
.hero .content-wrapper p {
  color: #ececec;
  margin-bottom: 32px;
  font-size: 1.09rem;
  max-width: 500px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.hero .cta-button {
  background: #204372;
  color: #fff;
  font-size: 1.14rem;
  font-weight: 700;
  padding: 14px 36px;
  margin: 0;
  box-shadow: 0 4px 26px 0 rgba(44,44,44, 0.16);
  letter-spacing: 0.04em;
}
.hero .cta-button:hover,
.hero .cta-button:focus {
  background: #5CB485;
  color: #161616;
}

@media (max-width: 600px) {
  .hero {
    padding: 48px 0 36px 0;
    min-height: unset;
  }
  .hero .content-wrapper h1 {
    font-size: 2rem;
    margin-bottom: 13px;
  }
  .hero .content-wrapper p {
    font-size: 0.99rem;
  }
}

/* FEATURES SECTION */
.features {
  background: #F5F6F7;
  border-bottom: 1px solid #e5e5e5;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 56px;
  margin: 30px 0 8px 0;
  justify-content: flex-start;
}
.features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  padding: 18px 22px;
  min-width: 240px;
  color: #1B1B1B;
  flex: 1 1 260px;
  margin-bottom: 20px;
}
.features img {
  width: 34px;
  height: 34px;
}
@media (max-width: 760px) {
  .features ul {
    flex-direction: column;
    gap: 15px;
  }
  .features li {
    min-width: 0;
    width: 100%;
    padding: 14px 12px;
    font-size: 1rem;
  }
}


/* SERVICES SECTION (Home) */
.services {
  background: #FFF;
}
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin: 30px 0 18px 0;
}
.services li {
  flex: 1 1 260px;
  min-width: 240px;
  background: #FAFAFA;
  padding: 18px 22px;
  border-radius: 8px;
  font-size: 1.07rem;
  margin-bottom: 20px;
  border-left: 5px solid #242424;
  box-shadow: 0 0 5px rgba(32,67,114,0.03);
}
.services .cta-button {
  background: #204372;
  color: #fff;
  font-weight: 700;
  margin-top: 20px;
}
.services .cta-button:hover,
.services .cta-button:focus {
  background: #5CB485;
  color: #161616;
}
@media (max-width: 760px) {
  .services ul {
    flex-direction: column;
    gap: 14px;
  }
  .services li {
    min-width: 0;
    width: 100%;
    font-size: 0.98rem;
    border-left-width: 3px;
  }
}

/* TESTIMONIALS */
.testimonials {
  background: #F3F4F6;
}
.testimonials h2, .testimonials h1 {
  color: #171717;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 26px 34px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 22px 0 rgba(32,67,114,0.07);
  margin-bottom: 24px;
  border-left: 6px solid #204372;
  position: relative;
  min-width: 200px;
  max-width: 630px;
}
.testimonial-meta {
  color: #5b5b5b;
  font-size: 1.004rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.rating-summary {
  background: #232323;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  padding: 12px 22px;
  border-radius: 18px;
  margin: 32px 0 0 0;
  box-shadow: 0 1px 14px 0 rgba(44,44,44, 0.09);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 20px 11px;
    font-size: 0.98rem;
    max-width: 100%;
  }
}

/* CTA BANNER */
.cta-banner {
  background: #181818;
  color: #fff;
  padding: 38px 0;
  margin-bottom: 0;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 4px 40px 0 rgba(22,22,22,0.09);
}
.cta-banner h2 {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 19px;
}
.cta-banner .cta-button {
  background: #5CB485;
  color: #181818;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  padding: 12px 30px;
}
.cta-banner .cta-button:hover,
.cta-banner .cta-button:focus {
  background: #204372;
  color: #fff;
}
@media (max-width: 600px) {
  .cta-banner h2 {
    font-size: 1.26rem;
    margin-bottom: 13px;
  }
}

/* ABOUT PAGE */
.about-section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0;
}
.about-section .text-section {
  font-size: 1.08rem;
  color: #161616;
}
.about-section ul {
  margin: 18px 0 8px 0;
}
.about-section li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 19px;
}
.about-section li:before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #204372;
  font-size: 1.2em;
}
.why-trust-section {
  background: #F6F7F9;
  border-top: 1px solid #e3e3e3;
  margin-bottom: 60px;
  padding: 40px 0;
}
.why-trust-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 0 0;
}
.why-trust-section li {
  background: #fff;
  border-radius: 8px;
  padding: 17px 26px;
  min-width: 210px;
  box-shadow: 0 0 8px rgba(32,67,114,.08);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.why-trust-section img {
  width: 29px;
  height: 29px;
}
@media (max-width: 700px) {
  .why-trust-section ul {
    flex-direction: column;
    gap: 13px;
  }
  .why-trust-section li {
    min-width: 0;
    width: 100%;
    font-size: 0.97rem;
    padding: 12px 13px;
  }
}

/* SERVICES FULL */
.services-full {
  background: #FFF;
  margin-bottom: 60px;
  padding: 40px 0 20px 0;
}
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FAFAFA;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 18px 0 rgba(32,67,114,0.06);
  margin: 22px 0 24px 0;
  font-size: 1.04rem;
}
.price-table th, .price-table td {
  padding: 19px 18px;
  text-align: left;
}
.price-table th {
  background: #232323;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.price-table tr + tr {
  border-top: 1px solid #dfdfdf;
}
.price-table tbody td {
  color: #1b1b1b;
}
.price-table tr:hover td {
  background: #ECECEC;
  transition: background 0.12s;
}
@media (max-width:600px) {
  .price-table th,
  .price-table td {
    padding: 12px 7px;
    font-size: 0.97rem;
  }
}

/* HOW WE HELP SECTION (oferta) */
.how-we-help ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin: 24px 0 0;
}
.how-we-help li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #f7f7f9;
  border-radius: 7px;
  padding: 18px 19px;
  font-size: 1.07rem;
  flex: 1 1 220px;
  margin-bottom: 20px;
  box-shadow: 0 0 7px rgba(32,67,114,0.04);
}
.how-we-help img {
  width: 30px;
  height: 30px;
}
@media (max-width:670px) {
  .how-we-help ul {
    flex-direction: column;
    gap: 11px;
  }
  .how-we-help li {
    width: 100%;
    min-width: 0;
    font-size: 0.98rem;
    padding: 12px 11px;
  }
}

/* BLOG PAGE */
.blog-list {
  background: #fafcfd;
  padding: 50px 0 30px 0;
}
.blog-filters {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #232323;
}
.blog-filters ul {
  display: flex;
  gap: 13px;
}
.blog-filters a {
  border-radius: 14px;
  background: #eee;
  padding: 5px 14px;
  transition: background 0.2s, color 0.2s;
  color: #232323;
  font-size: 0.97rem;
}
.blog-filters a:hover,
.blog-filters a:focus {
  background: #232323;
  color: #fff;
}
.popular-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: #767676;
  font-size: 0.98rem;
}
.popular-tags span {
  background: #eeeeee;
  border-radius: 9px;
  padding: 4px 10px;
  font-size: 0.93rem;
  margin-right: 5px;
}
.blog-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 11px;
}
.blog-preview article {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 12px rgba(32,67,114,0.07);
  padding: 18px 26px 14px 24px;
  flex: 1 1 280px;
  min-width: 220px;
  transition: box-shadow 0.18s, transform 0.17s;
  margin-bottom: 20px;
}
.blog-preview article:hover,
.blog-preview article:focus-within {
  box-shadow: 0 4px 32px 0 rgba(32,67,114,0.11);
  transform: translateY(-3px) scale(1.027);
}
.blog-preview h2 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.blog-preview h2 a {
  color: #161616;
  text-decoration: underline dashed #5CB485 1.5px;
  transition: color 0.18s, background 0.13s;
}
.blog-preview h2 a:hover,
.blog-preview h2 a:focus {
  color: #204372;
  background: #F4F8FB;
}
.blog-preview p {
  color: #4a4a4a;
  font-size: 0.98rem;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .blog-preview {
    flex-direction: column;
    gap: 10px;
  }
  .blog-preview article {
    min-width: 0;
    padding: 13px 10px 9px 10px;
  }
}

/* NEWSLETTER SECTION (Blog) */
.newsletter-section {
  background: #F7F8FB;
  border-top: 1px solid #eee;
  padding: 32px 0 24px 0;
}
.newsletter-section h2 {
  font-size: 1.36rem;
}
.newsletter-section ul {
  margin-top: 12px;
  margin-bottom: 0;
}
.newsletter-section li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 9px;
  color: #212121;
}
.newsletter-section li:before {
  content: '✓';
  position: absolute;
  color: #204372;
  left: 0;
  font-size: 1rem;
}

/* CONTACT */
.contact-section .text-section {
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.contact-section strong {
  color: #161616;
}
.contact-section a {
  color: #204372;
  text-decoration: underline;
}
.contact-section .cta-banner {
  background: #f7f7f7;
  border-radius: 11px;
  box-shadow: 0 1px 10px rgba(32,67,114,0.05);
  margin-top: 25px;
  padding: 12px 0 8px 0;
  text-align: left;
}
.company-info ul {
  margin: 17px 0 0 0;
}
.company-info li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.company-info a {
  color: #204372;
  text-decoration: underline;
  transition: color 0.14s;
}
.company-info a:hover,
.company-info a:focus {
  color: #5CB485;
}

/* STEPS SECTION (jak-to-dziala) */
.steps-section {
  background: #fff;
  padding: 40px 0 18px 0;
}
.steps-section ol {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  list-style: none;
}
.steps-section li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.09rem;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px 21px;
  margin-bottom: 18px;
  box-shadow: 0 0 7px rgba(32,67,114,0.03);
}
.steps-section img {
  width: 32px;
  height: 32px;
}

/* FAQ */
.faq-section {
  background: #F7F8FB;
  border-top: 1px solid #e4e4e4;
  padding: 40px 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 9px 0 rgba(32,67,114,0.05);
  padding: 16px 23px;
  margin-bottom: 14px;
}
.faq-item h3 {
  font-size: 1.13rem;
  margin-bottom: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-item p {
  color: #181818;
}

/* LEGAL POLICY PAGES */
.legal-policy {
  background: #f5f5f7;
  margin-bottom: 60px;
  padding: 48px 0 30px 0;
}
.legal-policy .text-section {
  background: #fff;
  border-radius: 8px;
  padding: 20px 29px;
  box-shadow: 0 1px 8px rgba(32,67,114,.05);
  font-size: 1.03rem;
  color: #202020;
}
.legal-policy ul, .legal-policy ol {
  margin: 14px 0 9px 0;
  padding-left: 1.6em;
}
.legal-policy li {
  margin-bottom: 13px;
}
.legal-policy a {
  color: #204372;
  text-decoration: underline;
}

/* THANK YOU PAGE */
.thank-you-message {
  background: #fbfbfc;
  margin-bottom: 60px;
  padding: 43px 0 34px 0;
}
.thank-you-message .thank_you_text {
  color: #191C1E;
  font-size: 1.13rem;
  margin-bottom: 19px;
  margin-top: 5px;
}
.next-steps ul {
  margin-top: 6px;
}
.next-steps li {
  padding-left: 17px;
  margin-bottom: 8px;
  position: relative;
}
.next-steps li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #204372;
}
.thank-you-message .cta-button {
  background: #204372;
  color: #fff;
  margin-top: 23px;
}
.thank-you-message .cta-button:hover,
.thank-you-message .cta-button:focus {
  background: #5CB485;
  color: #161616;
}

/* FOOTER */
footer {
  background: #17181A;
  color: #DADADA;
  padding: 45px 0 17px 0;
  border-top: 1px solid #232425;
  font-size: 1rem;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
}
.footer-nav a {
  color: #dadada;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 3px;
  padding: 6px 12px;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #232323;
  background: #dadada;
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 17px;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: #DADADA;
  margin-top: 5px;
}
.brand-footer img {
  width: 32px;
  height: 32px;
}
@media (max-width: 700px) {
  .footer-nav {
    gap: 13px;
    font-size: 0.97rem;
  }
  .brand-footer span {
    font-size: 0.97rem;
  }
}

/* SPACING/ALIGNMENT UTILITY CLASSES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  padding: 22px 16px;
  transition: box-shadow 0.16s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 4px 28px rgba(32,67,114,0.13);
  transform: scale(1.018);
}
.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) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* BUTTONS & FORMS */
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.12s, box-shadow 0.18s;
}
button:focus {
  outline: 2px solid #204372;
  outline-offset: 2px;
}

/* TABLES (inherit design) */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
th, td {
  text-align: left;
}

/* Cookie Consent Banner & Modal */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #232323;
  color: #fff;
  padding: 24px 24px 24px 24px;
  box-shadow: 0 -4px 24px rgba(44,44,44,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  z-index: 2050;
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieBannerIn 0.32s ease;
}
@keyframes cookieBannerIn {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 5px;
}
.cookie-consent-banner button {
  padding: 9px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: #161616;
  margin: 0;
  min-width: 120px;
  transition: background 0.15s, color 0.14s;
  font-size: 1rem;
}
.cookie-consent-banner .accept-btn {
  background: #204372;
}
.cookie-consent-banner .accept-btn:hover,
.cookie-consent-banner .accept-btn:focus {
  background: #5CB485;
  color: #161616;
}
.cookie-consent-banner .reject-btn {
  background: #232323;
  border: 1.5px solid #fff;
  color: #fff;
}
.cookie-consent-banner .reject-btn:hover,
.cookie-consent-banner .reject-btn:focus {
  background: #fff;
  color: #232323;
}
.cookie-consent-banner .settings-btn {
  background: #5CB485;
  color: #161616;
  border: none;
}
.cookie-consent-banner .settings-btn:hover,
.cookie-consent-banner .settings-btn:focus {
  background: #204372;
  color: #fff;
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,32,32,0.66);
  z-index: 2030;
  justify-content: center;
  align-items: center;
  animation: cookieModalIn 0.27s cubic-bezier(.6,-.2,.11,1.08);
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #161616;
  border-radius: 17px;
  box-shadow: 0 4px 45px 0 rgba(32,67,114,0.18);
  max-width: 410px;
  width: 90vw;
  padding: 34px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #161616;
  margin-bottom: 13px;
  font-size: 1.18rem;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 14px;
  background: none;
  border: none;
  font-size: 1.58rem;
  color: #232323;
  cursor: pointer;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 19px;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 36px; height: 18px;
  background: #e2e9ef;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .cookie-toggle:checked {
  background: #204372;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 20px;
  background: #5CB485;
}
.cookie-modal .cookie-label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1B1B1B;
  font-weight: 500;
}
.cookie-modal .status {
  margin-left: auto;
  font-size: 0.97rem;
  color: #818181;
  font-style: italic;
}
.cookie-modal .cookie-toggle[disabled] {
  background: #e4e4e4;
  cursor: not-allowed;
}
.cookie-modal .cookie-toggle[disabled]:before {
  background: #bcbcbc;
}
.cookie-modal .modal-btn-group {
  display: flex;
  gap: 14px;
  margin-top: 11px;
}
.cookie-modal .save-btn {
  background: #204372;
  color: #fff;
  padding: 9px 23px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 999px;
  border: none;
  font-weight: 700;
}
.cookie-modal .cancel-btn {
  background: #EEE;
  color: #161616;
  padding: 9px 23px;
  border-radius: 999px;
  border: none;
}
.cookie-modal .save-btn:hover,
.cookie-modal .save-btn:focus {
  background: #5CB485;
  color: #161616;
}
.cookie-modal .cancel-btn:hover,
.cookie-modal .cancel-btn:focus {
  background: #232323;
  color: #fff;
}

@media (max-width: 600px) {
  .footer-nav,
  .brand-footer,
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .section,
  .legal-policy,
  .services-full,
  .about-section,
  .why-trust-section,
  .company-info,
  .steps-section,
  .cta-banner,
  .thank-you-message {
    padding-left: 0;
    padding-right: 0;
  }
}

/* MICRO-INTERACTIONS */
.cta-button, .cookie-consent-banner button, .cookie-modal .modal-btn-group .save-btn, .cookie-modal .modal-btn-group .cancel-btn {
  transition: background 0.16s, color 0.13s, box-shadow 0.18s, transform 0.13s;
}
.blog-preview article,
.card {
  transition: box-shadow 0.14s, transform 0.13s;
}

/* END CSS */
