/* Verdure Journey - Modern Bold Style 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, main,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 {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #222;
  min-height: 100vh;
  font-weight: 400;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section {
  display: block;
}
ul,ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
img,svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input,button,select,textarea {
  font-family: inherit;
  font-size: inherit;
}
*:focus-visible {
  outline: 2px solid #34A853;
  outline-offset: 2px;
}
/* --------------------------------------------------------- */
/* BRAND VARIABLES & UTILS */
:root {
  --vj-primary: #17697D;
  --vj-secondary: #34A853;
  --vj-accent: #E9F7FB;
  --vj-black: #181818;
  --vj-white: #ffffff;
  --vj-gray: #f5f7fa;
  --vj-dark-gray: #27323A;
  --vj-shadow: 0 4px 18px rgba(23, 105, 125, 0.10);
  --vj-radius: 18px;
  --vj-radius-sm: 10px;
  --vj-gap: 24px;
  --vj-gap-sm: 16px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vj-accent);
  border-radius: var(--vj-radius);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--vj-white);
  border-radius: var(--vj-radius-sm);
  box-shadow: var(--vj-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(23, 105, 125, 0.18);
}
.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;
  background: #fff;
  box-shadow: var(--vj-shadow);
  border-radius: var(--vj-radius-sm);
  margin-bottom: 20px;
  font-size: 18px;
  color: #181818;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--vj-white);
  box-shadow: var(--vj-shadow);
  border-radius: var(--vj-radius);
  padding: 30px 22px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 310px;
  transition: box-shadow .18s, transform .18s;
}
.feature-item:hover {
  box-shadow: 0 8px 32px rgba(23, 105, 125, 0.15);
  transform: translateY(-4px) scale(1.02);
}
.feature-grid, .service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: flex-start;
}
.service-item {
  background: var(--vj-accent);
  border-radius: var(--vj-radius);
  box-shadow: var(--vj-shadow);
  padding: 28px 20px;
  flex: 1 1 200px;
  min-width: 200px;
  transition: box-shadow .18s, transform .18s;
}
.service-item:hover {
  box-shadow: 0 8px 32px rgba(52, 168, 83, 0.15);
  transform: translateY(-4px) scale(1.015);
}
.review-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 12px 0;
  font-size: 18px;
  color: var(--vj-primary);
  font-weight: 700;
}
.trust-signs {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.customer-stories {
  margin-top: 42px;
  background: var(--vj-accent);
  padding: 24px 20px;
  border-radius: var(--vj-radius-sm);
  box-shadow: var(--vj-shadow);
}
/* --------------------------------------------------------- */
/* TYPOGRAPHY - Modern & Bold */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--vj-primary);
  letter-spacing: .02em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.13;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.23;
  margin-bottom: 10px;
}
.subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--vj-dark-gray);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 18px;
}
p,li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  line-height: 1.68;
  font-weight: 400;
  color: var(--vj-black);
  margin-bottom: 10px;
}
strong,b {
  font-weight: 700;
  color: var(--vj-primary);
}
ul li {
  margin-bottom: 8px;
  padding-left: 0;
}
ul li img {
  vertical-align: middle;
  margin-right: 7px;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--vj-secondary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-top: 14px;
  transition: color 0.18s;
}
.link-arrow:hover {
  color: var(--vj-primary);
  text-decoration: underline;
}
blockquote, .testimonial-card p:first-child {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  color: #262a2d;
  font-weight: 500;
}
.thank-you-message {
  font-size: 1.15rem;
  color: var(--vj-primary);
  margin-bottom: 18px;
  font-weight: 600;
}
.next-steps li {
  list-style: disc inside;
  margin-left: 20px;
}
/* --------------------------------------------------------- */
/* BUTTONS & CTAs */
.cta-btn, .mobile-menu .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: none;
  border-radius: var(--vj-radius-sm);
  background: var(--vj-primary);
  color: var(--vj-white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 32px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(23,105,125,.13);
  letter-spacing: 0.04em;
  margin-top: 10px;
  transition: background 0.18s, transform 0.16s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--vj-secondary);
  color: var(--vj-black);
  transform: translateY(-2px) scale(1.03);
}
button, .mobile-menu-close, .mobile-menu-toggle, .cookie-btn {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid var(--vj-secondary);
  outline-offset: 2px;
}
/* FAQ Toggle for Advice Page (Poradnik) */
.faq-section ul li strong {
  color: var(--vj-secondary);
  font-weight: bold;
}
/* --------------------------------------------------------- */
/* HEADER & NAVIGATION */
header {
  background: var(--vj-accent);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}
.logo-link {
  margin-right: 26px;
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-right: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--vj-primary);
  letter-spacing: 0.01em;
  padding: 9px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-bottom 0.2s;
}
.main-nav a:hover {
  color: var(--vj-secondary);
  border-bottom: 2px solid var(--vj-secondary);
}
/* HAMBURGER */
.mobile-menu-toggle {
  display: none;
  background: var(--vj-primary);
  color: var(--vj-white);
  border-radius: 50%;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  transition: background 0.15s;
  z-index: 111;
}
.mobile-menu-toggle:hover,.mobile-menu-toggle:focus {
  background: var(--vj-secondary);
  color: var(--vj-black);
}
/* --------------------------------------------------------- */
/* MOBILE MENU (SLIDE-IN) */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 49, 54, .92);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.52,.02,.23,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--vj-white);
  color: var(--vj-primary);
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 22px 28px 0 0;
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(23, 105, 125, 0.10);
  transition: background .14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--vj-secondary);
  color: var(--vj-black);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 26px;
  width: 100%;
  margin-top: 36px;
  padding-right: 36px;
}
.mobile-nav a {
  color: var(--vj-white);
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: .025em;
  padding: 13px 0;
  text-align: right;
  transition: color 0.16s;
}
.mobile-nav a:hover {
  color: var(--vj-secondary);
}
.mobile-menu .cta-btn {
  margin: 34px 42px 0 0;
  background: var(--vj-secondary);
  color: var(--vj-black);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .02em;
}

/* --------------------------------------------------------- */
/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, var(--vj-accent) 85%, var(--vj-secondary) 240%);
  padding: 0;
}
.hero .container {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding: 46px 0 30px 0;
  max-width: 640px;
}
/* --------------------------------------------------------- */
/* SERVICE LIST, PROCESS STEPS, USER TIPS */
.service-list {
  margin: 20px 0 0 0;
  padding: 0;
  font-size: 1.15rem;
  color: var(--vj-primary);
  font-weight: 700;
  letter-spacing: .02em;
}
.service-list li {
  margin-bottom: 16px;
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '\2022';
  color: var(--vj-secondary);
  font-size: 1.7em;
  position: absolute;
  left: 0;
  top: -2px;
}
.process-steps, .user-tips {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 22px 0;
}
.process-diagram {
  margin: 30px auto;
  display: flex;
  justify-content: center;
}
.faq-snippet {
  background: var(--vj-accent);
  border-radius: var(--vj-radius-sm);
  padding: 20px 16px;
  margin-top: 20px;
}
.process-steps h3, .faq-snippet h3 {
  color: var(--vj-secondary);
  font-size: 1.18rem;
}
.faq-snippet ul, .user-tips ul {
  margin: 0 0 0 12px;
}
.faq-section ul{
  margin: 12px 0 0 14px;
}
.faq-section li{
  margin-bottom: 12px;
}
/* --------------------------------------------------------- */
/* TABLES AND SEARCH BAR (Poradnik) */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--vj-accent);
  box-shadow: var(--vj-shadow);
  border-radius: var(--vj-radius-sm);
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: 1rem;
  overflow: hidden;
}
table th, table td {
  padding: 15px 16px;
  text-align: left;
}
table th {
  background: var(--vj-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
table tr:nth-child(even) td {
  background: #eefefe;
}
table tr:nth-child(odd) td {
  background: var(--vj-accent);
}
.search-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--vj-accent);
  border-radius: var(--vj-radius-sm);
  box-shadow: var(--vj-shadow);
  padding: 10px 8px 10px 16px;
  margin-bottom: 22px;
  margin-top: 14px;
}
.search-bar input[type='text'] {
  border: none;
  background: transparent;
  font-size: 1.12rem;
  outline: none;
  flex: 1 1 0%;
  padding: 6px 12px 6px 0px;
  font-family: inherit;
  color: var(--vj-black);
}
.search-bar button {
  background: var(--vj-secondary);
  color: var(--vj-white);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
  margin-left: 5px;
}
.search-bar button:hover {
  background: var(--vj-primary);
}
.article-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 22px;
}
.article-list article {
  padding: 20px 0 8px 0;
  border-bottom: 2px solid var(--vj-accent);
}
.article-list h3 {
  color: var(--vj-secondary);
  margin-bottom: 6px;
}
.article-categories {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.article-categories a {
  color: var(--vj-primary);
  font-weight: 700;
  background: var(--vj-accent);
  padding: 6px 16px;
  border-radius: var(--vj-radius-sm);
  font-size: 1rem;
  transition: background 0.12s, color 0.1s;
}
.article-categories a:hover {
  background: var(--vj-secondary);
  color: var(--vj-white);
}
/* --------------------------------------------------------- */
/* CONTACT SECTION */
.contact-section {
  background: var(--vj-accent);
  border-radius: var(--vj-radius);
  padding: 40px 0 24px 0;
  margin-bottom: 42px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.14rem;
  margin-bottom: 22px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0;
}
.map {
  width: 100%;
  max-width: 340px;
  margin-top: 14px;
  box-shadow: var(--vj-shadow);
  border-radius: var(--vj-radius-sm);
  overflow: hidden;
}

/* --------------------------------------------------------- */
/* CTA SECTIONS */
.cta-section {
  background: var(--vj-primary);
  color: var(--vj-white);
  border-radius: var(--vj-radius);
  margin-bottom: 60px;
  padding: 48px 22px;
}
.cta-section h2 {
  color: var(--vj-white);
}
.cta-section p {
  color: var(--vj-accent);
  font-weight: 500;
}
.cta-section .cta-btn {
  margin-top: 20px;
}
/* --------------------------------------------------------- */
/* FOOTER */
footer {
  background: var(--vj-dark-gray);
  color: var(--vj-white);
  padding: 0 0 0 0;
}
footer li {
  color: white !important;
}
footer .container {
  flex-direction: column;
  gap: 0;
  max-width: 1200px;
}
.footer-top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 0 38px 0;
  border-bottom: 1.5px solid #425569;
}
.footer-brand {
  min-width: 210px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand img {
  width: 58px;
  height: 58px;
}
.footer-desc {
  font-size: 0.98rem;
  color: #d7f6ff;
  font-weight: 500;
}
.footer-contact, .footer-nav, .footer-legal {
  min-width: 180px;
}
.footer-contact h3, .footer-nav h3, .footer-legal h3 {
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--vj-secondary);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 8px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a, .footer-legal a {
  color: #d7f6ff;
  font-size: 0.97rem;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--vj-secondary);
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 18px 0 16px 0;
  justify-content: space-between;
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.footer-social a {
  display: flex;
}
.footer-social img {
  width: 26px;
  height: 26px;
  filter: brightness(97%) drop-shadow(0 0 2px #0008);
  transition: filter 0.12s;
}
.footer-social a:hover img {
  filter: brightness(62%) drop-shadow(0 0 3px #43a859);
}
.footer-bottom span {
  font-size: 0.97rem;
  color: #d7f6ff;
}
/* --------------------------------------------------------- */
/* LEGAL/TEXT PAGES (rodo, privacy, policy, rules) */
.legal-policy {
  background: var(--vj-accent);
  border-radius: var(--vj-radius);
  margin: 60px 0;
  padding: 38px 18px;
  color: #222;
}
.legal-policy h1, .legal-policy h2 {
  color: var(--vj-primary);
  margin-bottom: 14px;
}
.legal-policy ul {
  margin-left: 22px;
  margin-bottom: 12px;
}
.legal-policy ul li {
  margin-bottom: 7px;
  list-style-type: disc;
}
.legal-policy p {
  margin-bottom: 14px;
}
/* --------------------------------------------------------- */
/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99999;
  width: 100vw;
  padding: 24px 16px 18px 16px;
  background: var(--vj-accent);
  border-top: 3px solid var(--vj-primary);
  box-shadow: 0 -2px 20px rgba(23,105,125,0.10);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  transition: transform 0.22s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner p {
  flex: 1 1 320px;
  color: var(--vj-black);
  margin-bottom: 6px;
  font-size: 1.08rem;
}
.cookie-btn {
  display: inline-block;
  border-radius: var(--vj-radius-sm);
  padding: 12px 23px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  border: none;
  margin-right: 10px;
  transition: background 0.16s, color 0.17s, box-shadow 0.13s;
  box-shadow: 0 1px 7px rgba(23, 105, 125, 0.06);
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--vj-secondary);
  color: var(--vj-white);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--vj-primary);
  color: var(--vj-white);
}
.cookie-btn.reject {
  background: var(--vj-primary);
  color: var(--vj-white);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ec4242;
  color: var(--vj-white);
}
.cookie-btn.settings {
  background: var(--vj-accent);
  color: var(--vj-primary);
  border: 2px solid var(--vj-primary);
  margin-right: 0;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--vj-primary);
  color: var(--vj-white);
}
/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  z-index: 100009;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24,49,54,.8);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: var(--vj-accent);
  box-shadow: 0 6px 32px rgba(23,105,125,0.13);
  border-radius: var(--vj-radius);
  padding: 30px 36px 26px 36px;
  min-width: 280px;
  max-width: 92vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--vj-primary);
  font-size: 1.35rem;
  margin-bottom: 9px;
}
.cookie-modal-content .close-modal {
  position: absolute;
  right: 18px; top: 14px;
  background: var(--vj-secondary);
  color: var(--vj-white);
  border-radius: 50%;
  font-size: 1.3rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.13s;
}
.cookie-modal-content .close-modal:hover,.cookie-modal-content .close-modal:focus {
  background: var(--vj-primary);
  color: var(--vj-white);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-switch {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #deeef5;
  position: relative;
  transition: background .13s;
  margin-right: 12px;
}
.cookie-switch input[type='checkbox'] {
  display: none;
}
.cookie-switch span {
  position: absolute;
  top: 3px; left: 3px;
  background: var(--vj-secondary);
  border-radius: 50%;
  width: 16px; height: 16px;
  transition: left .16s;
}
.cookie-switch input[type='checkbox']:checked + span {
  left: 19px;
  background: var(--vj-primary);
}
.cookie-category .label {
  font-size: 1.05rem;
  color: var(--vj-primary);
}
.cookie-category .readonly {
  font-weight: bold;
  color: var(--vj-secondary);
}
/* --------------------------------------------------------- */
/* RESPONSIVE DESIGN - MOBILE FIRST, FLUID SPACING */
/* ------------ MOBILE (< 768px) ------------ */
@media (max-width: 1020px) {
  .footer-top {flex-wrap: wrap;gap: 28px;}
}
@media (max-width: 900px) {
  .footer-top {flex-direction: column;gap: 28px;padding: 36px 0 28px 0;}
  .footer-bottom {flex-direction: column;gap: 10px;align-items:flex-start;}
}
@media (max-width: 800px) {
  .container {padding: 0 7px;}
  .content-wrapper {padding: 0;}
  .footer-brand, .footer-contact, .footer-nav, .footer-legal {min-width: 0;max-width:100%;}
  .footer-top {gap:18px;}
}
@media (max-width: 768px) {
  html {font-size: 15px;}
  header .container {flex-direction: row;flex-wrap:wrap;justify-content:space-between;}
  .main-nav {display:none;}
  .mobile-menu-toggle {display: flex;}
  .logo-link {margin-right: 12px;}
  h1 {font-size: 2.2rem;}
  h2 {font-size: 1.45rem;}
  .hero .content-wrapper {max-width:100%;padding:40px 0 16px 0;}
  .feature-grid, .service-categories {flex-direction:column;gap:18px;}
  .feature-item, .service-item {max-width:100%;padding:20px 14px;}
  .testimonial-card {font-size: 1rem;padding: 13px 7px;}
  .testimonial-card span {font-size: 0.98rem;}
  .section,.cta-section,.legal-policy {padding: 26px 9px;}
  .footer-top {padding:24px 0 17px;}
  .footer-bottom {padding:13px 0 13px 0;gap:8px;}
  .review-summary {margin:20px 0 10px 0;}
}
@media (max-width: 600px) {
  .container { padding: 0 3px; }
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.17rem; }
  .section,.cta-section,.legal-policy {padding:15px 2px;}
  .feature-item, .service-item {padding:10px 5px;font-size:.93rem;}
  .footer-brand img {width:38px;height:38px;}
  .footer-social img {width:18px;height:18px;}
  .hero .container {min-height: 140px;}
  .footer-contact h3, .footer-nav h3, .footer-legal h3 {margin-bottom:4px;}
}
@media (max-width: 540px) {
  .mobile-menu-close {
    margin: 14px 12px 0 0;
    width: 36px; height: 36px; font-size: 1.3rem;
  }
  .mobile-nav {gap:20px;padding-right: 12px;margin-top: 24px;}
  .mobile-menu .cta-btn {margin:22px 12px 0 0;font-size:.97rem;}
  .cookie-modal-content {padding: 22px 7px 20px 7px;}
}
/* Vertically center in flex containers, mobile column orientation */
.text-image-section, .content-grid, .feature-grid, .service-categories, .card-container {
  flex-direction: column;
}
@media (min-width: 600px) {
  .feature-grid, .service-categories, .card-container, .content-grid, .text-image-section {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {flex-direction: column;gap:16px;}
  .feature-grid,.service-categories,.card-container {flex-direction:column;gap:16px;}
}

/* MINIMUM SPACING and CARD RULES */
.section, .cta-section, .legal-policy {
  margin-bottom: 60px !important;
}
.card, .feature-item, .service-item, .testimonial-card, .faq-snippet, .customer-stories {
  margin-bottom: 20px !important;
}
.card-container, .feature-grid, .service-categories, .content-grid {
  gap: 24px !important;
}
.text-image-section, .testimonial-card, .feature-item {
  gap: 20px !important;
}
.testimonial-card, .faq-snippet {
  align-items: flex-start;
}

/* Prevent overlaps and ensure breathing room */
main > section, .section-testimonials {margin-bottom: 60px;}
main > section:last-child,.section-testimonials:last-child {margin-bottom: 0;}

/* SUBTLE ANIMATIONS for cards */
.card, .feature-item, .service-item, .testimonial-card, .faq-snippet, .customer-stories {
  transition: box-shadow 0.20s, transform 0.18s;
}
.card:hover, .feature-item:hover, .service-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(23, 105, 125, 0.13);
  transform: translateY(-3px) scale(1.02);
}

/* --------------------------------------------------------- */
/* END OF CSS */
