/* -------------------------------------------------------------
  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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  background: #F6F8FB;
  color: #17191C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #163257;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #EED178;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  background: none;
}
button {
  cursor: pointer;
}

/* -------------------------------------------------------------
  VARIABLES & COLOR PALETTE
------------------------------------------------------------- */
:root {
  --brand-primary: #163257;
  --brand-primary-rgb: 22,50,87;
  --brand-secondary: #25A63A;
  --brand-accent: #F4F7FA;
  --gold: #EED178;
  --gold-dark: #BEA650;
  --offwhite: #F9FAFC;
  --text-main: #17191C;
  --text-light: #ffffff;
  --gray-light: #E4E8F0;
  --gray: #C9D0DD;
  --gray-dark: #697389;
  --error: #c23616;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
p, li, .text-section {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-main);
}
strong {
  font-weight: 700;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* -------------------------------------------------------------
  HEADER, NAV & CTA BUTTONS
------------------------------------------------------------- */
header {
  background: var(--text-light);
  border-bottom: 1px solid var(--gray-light);
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--brand-primary);
  padding: 8px 8px;
  border-radius: 4px;
  position: relative;
  transition: color 0.2s, background 0.2s;
}
nav a:hover,
nav a:focus {
  color: var(--gold-dark);
  background: var(--brand-accent);
}
nav .cta-nav {
  background: var(--brand-primary);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 22px;
  font-weight: 700;
  margin-left: 6px;
  border: 1.5px solid var(--gold);
  transition: background 0.2s, color 0.2s, border 0.2s;
}
nav .cta-nav:hover,
nav .cta-nav:focus {
  color: var(--brand-primary);
  background: var(--gold);
  border-color: var(--brand-primary);
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: var(--brand-primary);
  font-size: 2rem;
  border: none;
  padding: 4px 12px;
  border-radius: 50%;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-accent);
  color: var(--gold-dark);
}

@media (max-width: 1023px) {
  nav {
    gap: 12px;
  }
  header .container {
    height: 72px;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* -------------------------------------------------------------
  MOBILE MENU
------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,50,87,0.97);
  box-shadow: -2px 0 16px 0 rgba(22,50,87,0.13);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,1,.4,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin: 24px 24px 0 24px;
  font-size: 2.3rem;
  color: var(--gold);
  background: transparent;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  border-radius: 50%;
  padding: 6px 14px;
  transition: background 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--gold);
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  margin: 40px 0;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  color: var(--text-light);
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  padding: 13px 0;
  border-radius: 4px;
  width: 100%;
  transition: background 0.15s, color 0.15s;
  text-align: left;
}
.mobile-nav a:not(.cta-nav) {
  border-bottom: 1px solid rgba(238,209,120,0.13);
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--gold);
  color: var(--brand-primary);
}
.mobile-nav .cta-nav {
  color: var(--brand-primary);
  background: var(--gold);
  font-weight: 700;
  text-align: center;
  margin-top: 24px;
  border: 1.5px solid var(--text-light);
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* -------------------------------------------------------------
  HERO, CTA BUTTONS, SECTION BASE
------------------------------------------------------------- */
.hero {
  background: linear-gradient(110deg, #f4f7fa 72%, #fff9df 100%);
  padding: 80px 0 60px 0;
  margin-bottom: 0;
  border-bottom: 2px solid var(--gold);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero p {
  color: var(--gray-dark);
  font-size: 1.15rem;
  max-width: 42rem;
}
.cta-primary {
  display: inline-block;
  background: var(--brand-primary);
  color: var(--text-light);
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  font-size: 1.13rem;
  letter-spacing: 0.01em;
  border: 2px solid var(--gold);
  border-radius: 26px;
  padding: 14px 38px;
  margin-top: 18px;
  box-shadow: 0 4px 16px 0 rgba(22,50,87,0.06);
  transition: background 0.23s, color 0.23s, border 0.15s, box-shadow 0.23s;
  text-align: center;
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--gold);
  color: var(--brand-primary);
  border-color: var(--gold-dark);
  box-shadow: 0 8px 36px 0 rgba(238,209,120,0.12);
}

/* -------------------------------------------------------------
  FEATURES, SERVICES, PRICING
------------------------------------------------------------- */
.features,
.services,
.pricing,
.faq,
.legal,
.blog_list {
  background: var(--offwhite);
}

.features .feature_grid,
.features .feature_list,
.services .service_list,
.pricing .price_table,
.faq_list,
.blog_list ul,
.services > .container > .content-wrapper > ul /* oferta-google-ads */ {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.features .feature_grid li,
.features .feature_list li,
.services .service_list li,
.services .content-wrapper > ul > li,
.pricing .pricing-item,
.faq_list li,
.blog_list ul li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px 0 rgba(22,50,87,0.07);
  padding: 32px 28px 26px 28px;
  flex: 1 1 260px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border: 1.5px solid var(--gray-light);
  position: relative;
  margin-bottom: 20px;
  transition: border-color 0.20s, box-shadow 0.22s, transform 0.15s;
}
.features .feature_grid li:hover,
.features .feature_grid li:focus-within,
.features .feature_list li:hover,
.features .feature_list li:focus-within,
.services .service_list li:hover,
.services .service_list li:focus-within,
.pricing .pricing-item:hover,
.pricing .pricing-item:focus-within,
.faq_list li:hover,
.faq_list li:focus-within,
.blog_list ul li:hover,
.blog_list ul li:focus-within {
  border-color: var(--gold-dark);
  box-shadow: 0 8px 36px 0 rgba(238,209,120,0.12);
  transform: translateY(-3px) scale(1.025);
}
.features .feature_grid img,
.features .feature_list img,
.services .service_list img,
.services .content-wrapper > ul > li img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}
.features h3,
.services h3 {
  color: var(--brand-primary);
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.features p,
.services p {
  color: var(--gray-dark);
  font-size: 0.99rem;
}

.services .content-wrapper > ul > li {
  gap: 9px;
}

/* Pricing Table */
.pricing .price_table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.pricing .pricing-item {
  flex: 1 1 260px;
  border: 2.5px solid var(--gold);
  transition: border 0.2s, box-shadow 0.2s;
}
.pricing .pricing-item strong {
  font-size: 1.3rem;
  color: var(--brand-secondary);
}

/* FAQ List */
.faq_list li strong {
  color: var(--brand-primary);
  margin-bottom: 2px;
  font-size: 1.12rem;
  display: block;
}

/* -------------------------------------------------------------
  CARDS, TESTIMONIALS, CTA
------------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(22,50,87,0.07);
  padding: 28px 22px 22px 22px;
  position: relative;
  border: 1.5px solid var(--gray-light);
  transition: border-color 0.20s, box-shadow 0.22s, transform 0.12s;
}
.card:hover,
.card:focus-within {
  border-color: var(--gold-dark);
  box-shadow: 0 8px 36px 0 rgba(238,209,120,0.12);
  transform: translateY(-3px) scale(1.017);
}

/* Testimonials Card & List */
.testimonials {
  background: var(--offwhite);
}
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(22,50,87,0.06);
  padding: 20px 26px;
  border-radius: 16px;
  margin-bottom: 20px;
  border-left: 7px solid var(--gold);
  max-width: 580px;
  transition: border-color 0.15s, box-shadow 0.18s;
}
.testimonials .testimonial-card p {
  color: #252525;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.7;
}
.testimonials .testimonial-meta {
  font-size: 0.95rem;
  color: var(--gray-dark);
  font-weight: 500;
  padding-left: 2px;
  margin-top: -10px;
}
.testimonials .testimonial-card strong {
  color: var(--brand-primary);
}

/* Visual CTA Section (below main) */
.cta {
  background: var(--brand-primary);
  color: var(--text-light);
  text-align: left;
  border-radius: 0 0 38px 38px;
  margin-bottom: 48px;
  padding: 56px 0 48px 0;
  box-shadow: 0 3px 18px 0 rgba(22,50,87,0.06);
}
.cta .content-wrapper h2 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 14px;
}
.cta .content-wrapper p {
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 15px;
}

/* Blog Cards & Filters */
.blog_list ul {
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.blog_list ul li {
  min-width: 240px;
  border-left: 5px solid var(--gold);
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(22,50,87,0.07);
  position: relative;
  transition: border-color 0.16s, box-shadow 0.18s;
  padding: 18px 18px 16px 28px;
}
.blog_list ul li h3 {
  color: var(--brand-primary);
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.blog_list ul li a {
  color: var(--brand-primary);
  text-decoration: underline;
}
.blog-filters {
  margin-top: 10px;
}
.blog-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
}
.blog-filters li {
  display: inline;
}
.blog-filters a {
  color: var(--brand-primary);
  background: var(--brand-accent);
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  padding: 6px 20px;
  transition: background 0.13s, color 0.13s, border 0.13s;
}
.blog-filters a:hover,
.blog-filters a:focus {
  background: var(--gold);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

/* -------------------------------------------------------------
  CONTACT & FOOTER
------------------------------------------------------------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 16px;
  margin-top: 6px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 500;
}
.contact-info img {
  width: 22px;
  height: 22px;
}
.contact .content-wrapper,
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer {
  background: var(--brand-primary);
  color: var(--text-light);
  padding: 52px 0 28px 0;
  margin-top: 72px;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -3px 16px 0 rgba(22,50,87,0.08);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
}
footer .footer-main,
footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer .footer-main a,
footer .footer-nav a {
  color: var(--gold);
  font-family: 'Montserrat',sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.17s, text-decoration 0.13s;
}
footer .footer-main a:hover,
footer .footer-nav a:hover,
footer .footer-main a:focus,
footer .footer-nav a:focus {
  color: var(--brand-secondary);
  text-decoration: underline;
}
footer .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
footer .footer-contact img {
  width: 52px;
  height: 52px;
}
footer .contact-snippet {
  font-size: 0.97rem;
  color: var(--text-light);
  margin-top: 3px;
  line-height: 1.7;
}
footer .contact-snippet img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
footer .social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
footer .social-links a img {
  width: 24px;
  height: 24px;
  filter: grayscale(1) brightness(5.5);
  transition: filter 0.17s, transform 0.13s;
}
footer .social-links a:hover img,
footer .social-links a:focus img {
  filter: none;
  transform: scale(1.15) rotate(-3deg);
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 34px;
    align-items: flex-start;
  }
  footer .footer-contact {
    margin-top: 12px;
  }
}


/* -------------------------------------------------------------
  LEGAL/TEXT SECTIONS
------------------------------------------------------------- */
.legal .text-section,
section .text-section {
  background: #fff;
  padding: 28px 26px;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(22,50,87,0.04);
  border: 1.5px solid var(--gray-light);
  margin-bottom: 18px;
  color: var(--brand-primary);
}

.legal ul,
.text-section ul {
  margin: 14px 0 0 0;
  padding-left: 18px;
  list-style: disc;
  color: var(--brand-primary);
  font-size: 1rem;
}
.legal ul li,
.text-section ul li {
  padding-bottom: 6px;
  margin-left: 4px;
}

/* -------------------------------------------------------------
  THANK YOU PAGE
------------------------------------------------------------- */
.thank_you .content-wrapper {
  align-items: center;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 30px 0 rgba(22,50,87,0.09);
  padding: 44px 20px 36px 20px;
  max-width: 600px;
  margin: 0 auto;
  gap: 18px;
}
.thank_you h1 {
  color: var(--brand-secondary);
  font-size: 2rem;
}
.thank_you ul {
  margin: 13px 0 0 0;
  padding-left: 18px;
  list-style: disc;
  color: var(--brand-primary);
  font-size: 1rem;
}

/* -------------------------------------------------------------
  FLEXBOX-BASED UTILITY CLASSES
------------------------------------------------------------- */
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Spacing for all content cards/sections */
.card,
.card-container > *:not(:last-child),
.testimonial-card,
.features li,
.services li,
.blog_list ul li,
.pricing-item {
  margin-bottom: 20px;
}

/* -------------------------------------------------------------
  RESPONSIVE (MOBILE-FIRST ADJUSTMENTS)
------------------------------------------------------------- */
@media (max-width: 1023px) {
  .container {
    max-width: 870px;
  }
}
@media (max-width: 900px) {
  .content-wrapper,
  .card-container,
  .content-grid,
  .features .feature_grid,
  .features .feature_list,
  .services .service_list,
  .blog_list ul,
  .pricing .price_table {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .section,
  .hero,
  .cta {
    padding: 36px 0 32px 0;
  }
  .hero .content-wrapper,
  .cta .content-wrapper {
    align-items: flex-start;
    gap: 12px;
  }
  .card,
  .testimonials .testimonial-card,
  .features .feature_grid li,
  .features .feature_list li,
  .services .service_list li,
  .blog_list ul li,
  .pricing .pricing-item {
    padding: 18px 12px 14px 12px;
  }
  .pricing .price_table {
    flex-direction: column;
    gap: 20px;
  }
  footer {
    border-radius: 20px 20px 0 0;
    padding: 30px 0 16px 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1.04rem; }
  .cta-primary { padding: 12px 18px; font-size: 1rem; }
  .hero { padding: 32px 0 18px 0; }
  .cta { padding: 32px 0 20px 0; }
  .thank_you .content-wrapper, .legal .text-section { padding: 16px 8px; }
}

/* -------------------------------------------------------------
  FORMS (if needed for blog/comments/newsletter)
------------------------------------------------------------- */
input, textarea, select {
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
  color: var(--brand-primary);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold-dark);
  outline: none;
}
label {
  font-weight: 500;
  font-size: 1rem;
  color: var(--brand-primary);
}

/* -------------------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 24px 0 rgba(22,50,87,.07);
  border-top: 2.5px solid var(--gold);
  z-index: 3000;
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 24px 36px;
  transition: transform 0.35s, opacity 0.3s;
  font-size: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  max-width: 620px;
  color: var(--brand-primary);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat',sans-serif;
  border-radius: 24px;
  font-size: 1rem;
  padding: 8px 24px;
  border: 2px solid var(--gold);
  margin-left: 0;
  transition: background 0.19s, color 0.19s, border 0.15s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--brand-primary);
  color: var(--text-light);
  border-color: var(--gold);
  font-weight: 700;
}
.cookie-banner .cookie-btn.accept:hover,
.cookie-banner .cookie-btn.accept:focus {
  background: var(--gold);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.cookie-banner .cookie-btn.reject {
  background: var(--offwhite);
  color: var(--brand-primary);
}
.cookie-banner .cookie-btn.reject:hover,
.cookie-banner .cookie-btn.reject:focus {
  background: var(--gold);
  color: var(--brand-primary);
}
.cookie-banner .cookie-btn.settings {
  border-color: var(--gray-light);
  background: var(--offwhite);
  color: var(--gray-dark);
  font-weight: 500;
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: var(--gold);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
@media (max-width: 700px){.cookie-banner {flex-direction: column;gap:16px;padding:19px 8px;}}
/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top:0; right: 0; bottom: 0;
  background: rgba(22,50,87,0.46);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.24s;
  pointer-events: all;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 38px 0 rgba(22,50,87,0.17);
  max-width: 450px;
  width: 90vw;
  padding: 38px 28px 26px 28px;
  color: var(--brand-primary);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position:relative;
  animation: slideCookieModalIn 0.42s cubic-bezier(.33,1.25,.48,1) both;
  z-index: 4100;
}
@keyframes slideCookieModalIn {
  from { transform: translateY(70px) scale(0.92); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gold-dark);
  cursor: pointer;
  border-radius: 50%;
  padding: 2px 16px;
  transition: background 0.16s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus { background: var(--offwhite); color: var(--brand-primary); }
.cookie-modal h2 { font-size: 1.2rem; color: var(--brand-primary); }
.cookie-modal .category {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-modal .category input[type=checkbox]{
  accent-color: var(--gold);
  width: 22px;
  height: 22px;
  margin-right: 4px;
}
.cookie-modal .category.essential input[type=checkbox]{
  accent-color: var(--gold-dark);
}
.cookie-modal .category-label {
  font-weight: 500;
}
.cookie-modal .category.essential .category-label:after {
  content: ' (zawsze włączone)';
  font-weight: 400;
  color: var(--gray-dark);
  font-size: 0.92em;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
}
.cookie-modal .cookie-btn {
  font-family: 'Montserrat',sans-serif;
  border-radius: 19px;
  font-size: 1rem;
  padding: 8px 20px;
  border: 2px solid var(--gold);
  background: var(--brand-primary);
  color: var(--text-light);
  font-weight: 600;
  transition: background 0.16s, color 0.16s, border 0.15s;
}
.cookie-modal .cookie-btn.accept:hover,
.cookie-modal .cookie-btn.accept:focus {
  background: var(--gold);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.cookie-modal .cookie-btn.reject,
.cookie-modal .cookie-btn.save {
  background: var(--offwhite);
  color: var(--brand-primary);
  border-color: var(--gold-dark);
}
.cookie-modal .cookie-btn.reject:hover,
.cookie-modal .cookie-btn.reject:focus,
.cookie-modal .cookie-btn.save:hover,
.cookie-modal .cookie-btn.save:focus {
  background: var(--gold);
  color: var(--brand-primary);
}
@media (max-width:440px){
  .cookie-modal{padding:18px 5px 10px 6px;}
  .cookie-modal-overlay {align-items: flex-end;}
}

/* -------------------------------------------------------------
  MISCELLANEOUS
------------------------------------------------------------- */
::-webkit-scrollbar {width:10px;background:var(--brand-accent);}
::-webkit-scrollbar-thumb {background:var(--gold-dark);border-radius:8px;}
a, button {outline:none;}
*::selection {
  background: var(--gold);
  color: var(--brand-primary);
}

/* -------------------------------------------------------------
  MICROINTERACTIONS & TRANSITIONS
------------------------------------------------------------- */
.card, .cta-primary, .pricing-item, nav a, .blog_list ul li, .cookie-banner .cookie-btn, .cookie-modal .cookie-btn, .mobile-nav a, .mobile-menu-close, .mobile-menu-toggle {
  transition: box-shadow 0.2s, border 0.24s, background 0.19s, color 0.17s, transform 0.13s;
}

/* ----------------------------------------------------------- */