/* === CSS RESET & NORMALIZATION === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F3F6F4;
  color: #222;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 20px;
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* === BRAND & THEME COLORS === */
:root {
  --primary: #1F6F43;
  --secondary: #F9C70A;
  --accent: #F3F6F4;
  --electric-green: #37EE81;
  --electric-blue: #2096F3;
  --electric-orange: #FF6F2D;
  --text-dark: #171717;
  --white: #fff;
  --shadow: 0 6px 32px rgba(31,111,67,0.11), 0 2px 8px rgba(0,0,0,0.06);
  --border-radius: 20px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  line-height: 1.125;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
p, ul, ol, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
}
strong {
  color: var(--primary);
  font-weight: 700;
}

/* === CONTAINER & SECTIONS === */
.container {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    padding: 32px 10px;
    margin-bottom: 44px;
  }
  .container {
    padding: 0 10px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* === HEADER === */
header {
  background: var(--white);
  box-shadow: 0 2px 18px rgba(31, 111, 67, 0.10);
  position: sticky;
  top: 0;
  z-index: 110;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 20px;
}
.logo-link img {
  height: 44px;
  width: auto;
  display: block;
  margin-right: 12px;
}
@media (max-width: 768px) {
  .logo-link img {
    height: 36px;
  }
}

.main-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.18s, color 0.15s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cta-btn {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 11px 34px;
  border-radius: 99px;
  box-shadow: 0 4px 20px rgba(249, 199, 10, 0.18);
  margin-left: 16px;
  white-space: nowrap;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  border: none;
  outline: none;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--electric-green);
  color: var(--primary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 32px rgba(31, 111, 67, 0.22);
}

/* Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  padding: 8px 18px;
  margin-left: 12px;
  border-radius: 12px;
  transition: background 0.18s, color 0.14s;
  z-index: 112;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--electric-orange);
}
@media (max-width: 1023px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.65,.01,.73,1);
  box-shadow: 0 8px 56px rgba(31,111,67,0.13);
  z-index: 200;
  padding: 0 0 60px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.0rem;
  background: none;
  border: none;
  color: var(--primary);
  align-self: flex-end;
  margin: 24px 22px 6px 0;
  transition: color 0.18s;
  padding: 8px 10px;
  border-radius: 10px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--electric-orange);
  background: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 22px 36px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--primary);
  padding: 10px 0;
  border-radius: 8px;
  width: 100%;
  transition: background 0.15s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (min-width:1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(94deg, var(--secondary) 43%, var(--electric-green) 98%);
  color: var(--primary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: .8px;
  text-shadow: 0 10px 44px #fff9, 0 1px 1px #FCEB9D;
}
.hero p {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 500;
  max-width: 600px;
}
@media (max-width: 768px) {
  .hero {
    margin-bottom: 40px;
    padding: 26px 4px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero .container {
    min-height: 160px;
  }
}

/* === FLEXBOX LAYOUTS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 14px;
  min-width: 275px;
}
.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,
  .text-image-section {
    flex-direction: column !important;
    gap: 20px;
    align-items: flex-start;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .card {
    min-width: unset;
    padding: 24px 12px;
  }
}

/* === SERVICE CARDS (Oferta, Index) === */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 12px;
}
.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 23px 30px 23px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 330px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 2px solid var(--secondary);
}
.service-card:hover, .service-card:focus-within {
  transform: translateY(-6px) scale(1.024);
  box-shadow: 0 7px 48px rgba(31,111,67,.17);
  border-color: var(--electric-green);
}
.service-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.service-card h3 {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 900;
}
.service-card p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 7px;
}
.service-card .price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--electric-orange);
  background: var(--accent);
  border-radius: 12px;
  padding: 3px 16px;
  margin-top: 5px;
  margin-bottom: 8px;
  font-size: 1.03rem;
  letter-spacing: .03em;
}
.service-card a {
  margin-top: 8px;
  background: var(--electric-green);
  color: var(--primary);
  font-weight: 700;
  border-radius: 18px;
  padding: 7px 20px;
  box-shadow: 0 2px 8px rgba(31,111,67,.08);
  border: none;
  display: inline-block;
  transition: background 0.15s, color 0.13s, transform 0.13s;
}
.service-card a:hover {
  background: var(--electric-blue);
  color: var(--white);
  transform: scale(1.07);
}
@media (max-width: 1020px) {
  .service-grid {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .service-grid {
    flex-direction: column;
    gap: 14px;
  }
  .service-card {
    max-width: 100%;
    min-width: unset;
    width: 100%;
    padding: 20px 10px 22px 14px;
  }
}

/* === CARD/STORY/ARTICLE LAYOUTS === */
.article-card, .blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.17s, transform 0.13s;
  border-left: 5px solid var(--secondary);
}
.article-card:hover, .blog-card:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 4px 24px rgba(249,199,10,.16);
}
.article-card h3 {
  margin-bottom: 9px;
  color: var(--primary);
  font-weight: 900;
}
.article-card a {
  color: var(--electric-blue);
  font-weight: bold;
  transition: color 0.15s;
}
.article-card a:hover {
  color: var(--electric-orange);
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .blog-list {
    flex-direction: column;
    gap: 10px;
  }
  .article-card, .blog-card {
    padding: 16px 8px;
  }
}

/* === TESTIMONIALS === */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 24px;
  border-radius: var(--border-radius);
  background: var(--accent);
  box-shadow: 0 2px 10px rgba(31,111,67,0.06);
  min-width: 250px;
  max-width: 390px;
  margin-bottom: 20px;
  border-left: 6px solid var(--electric-blue);
}
.testimonial-card p {
  color: var(--text-dark);
  font-size: 1.03rem;
  font-style: italic;
}
.client-name {
  color: var(--primary);
  font-weight: bold;
  font-size: .99rem;
  letter-spacing: 0.03em;
}
.star-rating-summary {
  margin-top: 12px;
  color: var(--electric-orange);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
}
@media (max-width: 768px) {
  .testimonial-list {
    flex-direction: column;
    gap: 10px;
  }
  .testimonial-card {
    padding: 14px 9px 14px 12px;
    min-width: unset;
    max-width: unset;
  }
}

/* === CASE STUDY CARDS (REALIZACJE) === */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.case-study-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 22px 18px 22px;
  margin-bottom: 20px;
  min-width: 270px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  border-bottom: 6px solid var(--electric-orange);
}
.case-study-card h3 {
  color: var(--primary);
  font-weight: 900;
  font-size: 1.18rem;
}
@media (max-width: 768px) {
  .case-study-list {
    flex-direction: column;
    gap: 12px;
  }
  .case-study-card {
    padding: 12px 7px 10px 9px;
    min-width: unset;
    max-width: unset;
  }
}

/* === CTA SECTIONS === */
.cta-section {
  padding: 40px 20px;
  background: var(--electric-green);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 22px rgba(49, 222, 131, 0.09);
}
.cta-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta-section p {
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 1.08rem;
}
.cta-section .cta-btn {
  margin-left: 0;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 26px 8px;
  }
}

/* === NEWSLETTER + SOCIAL FOLLOW === */
.newsletter-signup {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 20px 24px;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}
.social-follow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
}
.social-follow span {
  color: var(--primary);
  font-weight: 600;
}
.social-follow a img {
  width: 29px;
  height: 29px;
  display: block;
  margin-bottom: 0;
  transition: filter 0.15s, transform 0.13s;
}
.social-follow a:hover img {
  filter: brightness(1.1) drop-shadow(0 0 4px var(--electric-green));
  transform: scale(1.13) rotate(-6deg);
}

/* === FAQ ACCORDION/ITEMS === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  font-size: 1rem;
  color: var(--text-dark);
  transition: box-shadow 0.16s, transform 0.13s;
  border-left: 4px solid var(--primary);
}
.faq-item h3 {
  font-size: 1.07rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 6px;
}
.faq-item p, .faq-item a {
  font-size: 0.99rem;
  color: var(--text-dark);
}
.faq-item a {
  color: var(--electric-blue);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.14s;
}
.faq-item a:hover {
  color: var(--electric-orange);
}

/* === GENERAL BUTTON STYLES === */
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 99px;
  padding: 10px 28px;
  border: none;
  background: var(--secondary);
  color: var(--primary);
  margin: 0 10px 0 0;
  box-shadow: 0 2px 14px rgba(249,199,10,0.16);
  transition: background 0.16s, color 0.13s, transform 0.12s, box-shadow 0.16s;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--electric-blue);
  color: var(--white);
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 6px 24px rgba(32, 150, 243, 0.17);
}

/* === FEATURE ITEMS === */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 16px 20px;
  margin-bottom: 20px;
}

/* === MAP PLACEHOLDER === */
.map-placeholder {
  width: 100%;
  min-height: 200px;
  background: var(--accent);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  font-size: 1.03rem;
  box-shadow: var(--shadow);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 -4px 32px rgba(31,111,67,.13);
  z-index: 400;
  border-top: 5px solid var(--electric-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px 20px 24px 20px;
  animation: cookieAppear 0.5s ease;
}
@keyframes cookieAppear {
  from {transform: translateY(150px); opacity: 0;}
  to   {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 8px;
  text-align: center;
  max-width: 750px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  justify-content: center;
  margin-top: 3px;
}
.cookie-banner button {
  padding: 10px 24px;
  font-size: 1rem;
  border-radius: 28px;
  font-weight: 700;
  border: none;
  margin: 0;
}
.cookie-banner .accept {
  background: var(--electric-green);
  color: var(--primary);
}
.cookie-banner .accept:hover,.cookie-banner .accept:focus{
  background: var(--electric-blue);
  color: var(--white);
}
.cookie-banner .reject {
  background: var(--electric-orange);
  color: var(--white);
}
.cookie-banner .reject:hover,.cookie-banner .reject:focus{
  background: var(--electric-blue);
  color: var(--white);
}
.cookie-banner .settings {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-banner .settings:hover,.cookie-banner .settings:focus{
  background: var(--electric-blue);
  color: var(--white);
  border-color: var(--electric-blue);
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  max-width: 370px;
  width: 92vw;
  min-width: 220px;
  background: var(--white);
  transform: translate(-50%, 100vh);
  box-shadow: 0 8px 56px rgba(31,111,67,0.19);
  border-radius: 30px;
  z-index: 410;
  padding: 36px 30px 28px 30px;
  opacity: 0;
  transition: transform 0.37s cubic-bezier(.7,0,.85,1), opacity 0.2s;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
.cookie-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.cookie-modal h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 5px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--electric-blue);
  width: 18px;
  height: 18px;
}
.cookie-modal .essential {
  color: var(--electric-green);
  font-weight: 700;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  color: var(--primary);
  font-size: 1.3rem;
  border: none;
}
.cookie-modal .close-cookie-modal:hover {
  color: var(--electric-orange);
}
@media (max-width: 400px) {
  .cookie-modal {
    padding: 20px 8px 18px 9px;
    max-width: 100vw;
    min-width: unset;
  }
}

/* Cookie modal backdrop */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(21,49,37,0.38);
  z-index: 409;
  display: none;
}
.cookie-modal.open ~ .cookie-modal-backdrop {
  display: block;
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 36px 0 12px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 3px;
  transition: color 0.13s;
}
footer nav a:hover {
  color: var(--electric-green);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.99rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social a img {
  width: 31px;
  height: 31px;
  filter: saturate(1.2);
  border-radius: 9px;
  background: var(--accent);
  transition: box-shadow 0.14s, filter 0.13s, transform 0.13s;
}
.footer-social a:hover img {
  filter: brightness(1.14) drop-shadow(0 0 5px var(--electric-green));
  box-shadow: 0 2px 22px var(--electric-green);
  transform: scale(1.12) rotate(-6deg);
}
.footer-logo img {
  width: 54px;
  height: 54px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 520px) {
  footer .container {
    padding: 0 8px;
  }
}

/* === GENERAL TEXT SECTION === */
.text-section {
  margin-bottom: 20px;
}
.text-section ul, .text-section ol {
  margin-top: 11px;
  margin-bottom: 11px;
  padding-left: 20px;
}
.text-section li {
  margin-bottom: 8px;
}
.text-section strong {
  color: var(--primary);
}

/* === BLOG CATEGORY FILTERS === */
.blog-category-filters {
  display: flex;
  gap: 13px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.blog-category-filters button {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: .99rem;
  border-radius: 13px;
  padding: 6px 18px;
  border: none;
  box-shadow: 0 1px 8px rgba(249,199,10,0.13);
  transition: background 0.15s, color 0.12s, transform 0.11s;
}
.blog-category-filters button:hover, .blog-category-filters button:focus {
  background: var(--electric-orange);
  color: var(--white);
  transform: scale(1.05);
}

/* === LISTS === */
ul, ol {
  margin-bottom: 12px;
}
li {
  line-height: 1.6;
  margin-bottom: 7px;
  font-size: 1.01rem;
}

/* === VISUAL HIERARCHY & SPACING === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 1023px) {
  .container { max-width: 95vw; }
}
@media (max-width: 900px) {
  .footer-logo img { width: 43px; height: 43px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.23rem; }
  .cta-btn { font-size: 1rem; padding: 9px 19px; }
  .content-wrapper { gap: 16px; }
  .section { padding: 28px 6px; margin-bottom: 38px; }
}

/* === MICRO-INTERACTIONS === */
a, button, .cta-btn, .service-card, .testimonial-card, .case-study-card, .article-card, .faq-item {
  transition-property: box-shadow, transform, background, color, border;
  transition-duration: .18s;
  transition-timing-function: cubic-bezier(.85,-0.01,.48,1.06);
}

/* === VISUAL EFFECTS === */
@media (hover: hover) {
  a[href]:hover { color: var(--electric-orange); }
}

/* === ACCESSIBILITY, CONTRAST === */
.testimonial-card, .testimonial-list .testimonial-card {
  background: var(--accent) !important;
  color: var(--primary) !important;
  box-shadow: 0 2px 10px rgba(31,111,67,0.06);
}

/* === HIDE ELEMENTS THAT SHOULD ONLY APPEAR ON INTERACTION === */
.cookie-modal:not(.open) { pointer-events: none; }
.cookie-modal.open { pointer-events: all; }

/* === OVERRIDES: PREVENT ABSOLUTE FOR CONTENT === */
.card, .service-card, .testimonial-card, .case-study-card, .article-card {
  position: relative !important;
}

/* === UTILITIES === */
.hidden { display: none !important; }
.show { display: block !important; }

/* === END OF CSS === */
