/* 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;
  background: #13181a;
  color: #f4efeb;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #a6b42c;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,1,.5,1);
}
a:hover, a:focus {
  color: #ffe661;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button, .btn {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  line-height: 1;
}

/* BRAND COLOR SYSTEM */
:root {
  --color-primary: #225c39;
  --color-primary-dark: #1f4a2f;
  --color-secondary: #f4efeb;
  --color-accent: #a6b42c;
  --color-accent-alt: #7d8f1c;
  --color-bg: #181d1f;
  --color-bg-alt: #232a2e;
  --color-card: #212325;
  --color-card-alt: #252d30;
  --color-muted: #7ca38b;
  --color-error: #d43e3e;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--color-secondary);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-wrap: balance;
}
h1 {
  font-size: 2.5rem;
  color: #ffe661;
  text-shadow: 0 2px 16px rgba(163, 196, 26, 0.11), 0 0 2px #a6b42c;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
  color: var(--color-accent);
}
h3 {
  font-size: 1.26rem;
  margin-bottom: 10px;
  color: var(--color-secondary);
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #ddebee;
}
p, li, td, th, span, strong, label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--color-secondary);
  font-weight: 400;
  font-size: 1rem;
}
strong, b {
  font-weight: 600;
  color: #ffe661;
}

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

@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 32px;
  }
}

/* HEADER: NAVIGATION */
header {
  width: 100%;
  background: #161c17;
  border-bottom: 1px solid #2a4038;
  box-shadow: 0 2px 12px 0 rgba(65,120,44,0.09);
  position: relative;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 70px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo img {
  height: 46px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1 1 auto;
  margin-left: 24px;
}
.main-nav a {
  color: #d6fbe6;
  font-family: 'Montserrat',sans-serif;
  font-size: 16px;
  letter-spacing: .01em;
  font-weight: 600;
  transition: color 0.22s cubic-bezier(.4,1,.7,1);
  position: relative;
  padding: 2px 0;
}
.main-nav a:after {
  content: "";
  display: block;
  margin: 4px auto 0 auto;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,#a6b42c,#225c39);
  border-radius: 2px;
  opacity: .8;
  transition: width 0.19s cubic-bezier(.7,0,.5,1);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 90%;
}

.btn {
  border: none;
  outline: none;
  background: var(--color-accent);
  color: #181d1f;
  padding: 12px 28px;
  border-radius: 32px;
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  box-shadow: 0 3px 28px 0 rgba(166,180,44,0.13), 0 1.5px 0.5px 0 rgba(14,25,16,0.07);
  transition: background 0.19s, transform 0.17s cubic-bezier(.5,1,.1,1);
  margin-left: 18px;
  text-shadow: 0 2px 16px rgba(163, 196, 26, 0.09);
  letter-spacing: 0.04em;
}
.btn.primary {
  background: #a6b42c;
  color: #181d1f;
}
.btn.primary:hover,
.btn.primary:focus {
  background: #ffe661;
  color: #111;
  transform: translateY(-1.5px) scale(1.035);
  box-shadow: 0 8px 32px 0 rgba(254,238,93,0.08);
}

/* MOBILE MENU BUTTON (BURGER) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-accent);
  cursor: pointer;
  margin-left: auto;
  z-index: 120;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #ffe661;
}

@media (max-width: 900px) {
  .main-nav, .btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #13181aee;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  z-index: 2000;
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(.63,.02,.41,1.05);
  opacity: 0.995;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  border: none;
  background: none;
  color: #ffe661;
  font-size: 2.1rem;
  margin: 20px 20px 0 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:focus {
  outline: 2.5px solid #a6b42c;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 32px 20px 32px;
  width: 100vw;
}
.mobile-nav a {
  color: #ffe661;
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 12px 8px;
  border-radius: 12px;
  transition: background 0.19s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #225c39;
  color: #fff;
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(115deg,#192019 0%,#192b21 100%);
  padding: 60px 0 55px 0;
  border-bottom: 2px solid #324e32;
}
.hero .container {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  padding: 24px 0;
  gap: 18px;
  background: rgba(29,35,24,0.11);
  border-radius: 20px;
  box-shadow: 0 4px 26px 0 rgba(166,180,44,0.04);
}
.hero h1 {
  color: #ffe661;
}
.hero p {
  color: #e2e4dc;
  font-size: 1.14rem;
}

/* FEATURES */
.features {
  background: #181d1f;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.features .content-wrapper {
  gap: 24px;
}
.features h2 {
  color: #d1fd97;
  text-shadow: 0 2px 12px rgba(168, 230, 58, 0.15);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 22px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #232a2e;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(60,105,49,0.10), 0 1px 3px rgba(99, 181, 60, 0.06);
  padding: 26px 22px 22px 22px;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  min-height: 285px;
  border: 1.5px solid #283a28;
  transition: box-shadow 0.22s, border 0.17s, transform 0.23s;
  position: relative;
}
.feature-item img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 8px #a6b42c30);
}
.feature-item h3 {
  font-size: 1.12rem;
  color: #f8ffbe;
}
.feature-item p {
  color: #e8edcb;
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.feature-item strong {
  align-self: flex-end;
  font-size: 1.04rem;
  font-family: 'Montserrat',sans-serif;
  color: #ffe661;
  font-weight: 900;
  margin-top: auto;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 8px 32px 0 #a6b42c30, 0 1px 5px rgba(46, 231, 90, 0.14);
  border: 1.5px solid #a6b42c;
  transform: translateY(-2.5px) scale(1.022);
}

@media (max-width: 1024px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-item {
    min-width: 46vw;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    min-width: unset;
    width: 100%;
  }
}

/* CARDS, CONTAINERS, TESTIMONIALS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232a2e;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(30,58,51,0.10);
  margin-bottom: 20px;
  padding: 22px 24px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials {
  background: #16211b;
  padding: 42px 0 48px 0;
  border-radius: 22px;
}
.testimonials h2 {
  color: #ffe661;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #f4efeb;
  color: #122319;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  margin-bottom: 20px;
  min-width: 260px;
  box-shadow: 0 4px 18px 0 rgba(71,174,109,0.06), 0 2px 10px #d1fd9780;
  border: 1.5px solid #a6b42c;
  transition: box-shadow 0.19s, border 0.21s, transform 0.22s;
  position: relative;
  min-height: 120px;
}
.testimonial-card p {
  color: #225c39;
  font-size: 1.06rem;
  margin-bottom: 10px;
  text-align: center;
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  color: #a6b42c;
  font-size: 1rem;
  font-weight: 700;
}
.testimonial-meta span {
  color: #7d8f1c;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 #ffe66150, 0 2px 6px #a6b42c28;
  border: 1.5px solid #ffe661;
  transform: translateY(-2px) scale(1.018);
}
@media(max-width:900px){
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* CTA SECTIONS */
.cta {
  padding: 32px 0;
  background: linear-gradient(115deg,#1a2320 0%, #273b1e 100%);
  border-radius: 18px;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.cta h2 {
  color: #ffe661;
  margin-bottom: 10px;
}
.cta p {
  color: #d8ffe6;
  font-size: 1.08rem;
}

/* ABOUT & LEGAL PAGES */
.about, .about-preview, .legal, .contact-details, .thank-you {
  background: #21281b;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.about .content-wrapper, .about-preview .content-wrapper, .legal .content-wrapper, .contact-details .content-wrapper, .thank-you .content-wrapper {
  gap: 18px;
}
.about-preview h2, .about h2, .legal h1, .contact-details h2, .thank-you h1 {
  color: #d1fd97;
}
.contact-note {
  background: #e4f6cc;
  padding: 18px 24px;
  border-radius: 10px;
  color: #112119;
  margin-top: 10px;
  box-shadow: 0 2px 9px #a6b42c11;
  font-size: 1.04rem;
  font-weight: 700;
}
.contact-details p,
.legal p {
  font-size: 1.06rem;
  color: #e0efe0;
  margin-bottom: 10px;
}
.contact-details img {
  vertical-align: middle;
  margin-right: 7px;
  width: 20px;
}

/* SERVICE LIST (services.html) */
.services {
  background: #232a2e;
  border-radius: 18px;
  margin-bottom: 48px;
  padding: 36px 0;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 30px;
}
.service-item {
  flex: 1 1 310px;
  background: #252d30;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 #77955618;
  padding: 22px 20px 18px 20px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  border: 1.5px solid #a6b42c20;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.21s, border 0.18s, transform 0.18s;
}
.service-item h3 {
  color: #f8ffbe;
}
.service-item strong {
  align-self: flex-end;
  color: #ffe661;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 8px 24px #ffe66133, 0 2px 8px #a6b42c33;
  transform: translateY(-2.5px) scale(1.018);
  border: 1.5px solid #a6b42c;
}
@media (max-width: 1000px) {
  .services-list {
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .services-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  background: #181d1f;
  box-shadow: 0 2px 18px #a6b42c10;
}
.pricing-table caption {
  caption-side: top;
  color: #ffe661;
  font-size: 1.13rem;
  font-weight: 900;
  padding-bottom: 8px;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 12px 18px;
  color: #e5ffd8;
  font-size: 1rem;
  border-bottom: 1px solid #202e20;
}
.pricing-table th {
  background: #283f22;
  color: #f5ffe1;
  font-weight: 800;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* BLOG PAGE */
.blog-features {
  background: #20251e;
  border-radius: 18px;
  padding: 38px 0 40px 0;
  margin-bottom: 60px;
}
.article-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 30px;
}
.article-teasers article {
  background: #232a2e;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(30,58,51,0.10);
  padding: 24px 18px 18px 18px;
  min-width: 220px;
  max-width: 370px;
  flex: 1 1 285px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1.5px solid #a6b42c20;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.14s, transform 0.18s;
}
.article-teasers article h3 {
  color: #ffe661;
}
.article-teasers article .category {
  color: #a6b42c;
  font-size: .95rem;
  font-weight: 700;
  margin-top: 6px;
}
.article-teasers article .tag {
  color: #d1fd97;
  font-size: .92rem;
  margin-left: 10px;
}
.article-teasers article:hover, .article-teasers article:focus-within {
  box-shadow: 0 7px 30px 0 #a6b42c28, 0 1px 6px #2f362e24;
  border: 1.5px solid #a6b42c;
  transform: scale(1.018);
}
@media (max-width: 950px) {
  .article-teasers {
    flex-direction: column;
    gap: 12px;
  }
}
.blog-categories, .blog-tags {
  margin-bottom: 18px;
}
.blog-categories h4, .blog-tags h4 {
  color: #d1fd97;
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.blog-categories ul, .blog-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.blog-categories li, .blog-tags li {
  padding: 5px 18px;
  background: #232a2e;
  border-radius: 14px;
  color: #f4efeb;
  font-weight: 700;
  font-size: 1.03rem;
  border: 1.2px solid #283a28;
  margin-bottom: 7px;
}

/* FOOTER */
footer {
  background: #112117;
  border-top: 2px solid #1a381f;
  padding: 38px 0 6px 0;
  box-shadow: 0 -2px 8px #357c3511, 0 2px 8px #a6b42c13 inset;
  margin-top: 48px;
  z-index: 10;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-info img {
  height: 36px;
}
.footer-menu {
  display: flex;
  gap: 22px;
  margin-left: 24px;
}
.footer-menu a {
  color: #ffe661;
  font-size: .97rem;
  transition: color 0.17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #a6b42c;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 7px;
}
.footer-socials a {
  display: inline-flex;
  border-radius: 50%;
  background: #232a2e;
  transition: background 0.17s, transform 0.18s;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.footer-socials a:hover, .footer-socials a:focus {
  background: #a6b42c;
  transform: scale(1.07) rotate(-8deg);
}
.legal-text {
  margin-top: 10px;
}
.legal-text small {
  color: #e0efe0;
  font-size: .95rem;
}
@media (max-width: 700px) {
  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-menu {
    margin-left: 0;
    gap: 11px;
    font-size: .97rem;
  }
}

/* UTILITY LAYOUTS, FLEXBOX ONLY */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* FOCUS OUTLINE FOR ACCESSIBILITY */
:focus {
  outline: 2px solid #ffe661 !important;
  outline-offset: 2px;
}

/* COOKIE BANNER (bottom fixed) */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #202a13;
  color: #e5ffc3;
  z-index: 99999;
  box-shadow: 0 -2px 20px #a6b42c26;
  padding: 24px 18px 18px 18px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1rem;
  border-top: 3px solid #a6b42c;
  transition: transform 0.45s cubic-bezier(.74,0,.25,1), opacity 0.25s;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-message {
  flex: 1 1 300px;
  margin-bottom: 10px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  margin: 0 2px;
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 5px #a6b42c14;
  background: #a6b42c;
  color: #191f13;
  transition: background 0.19s, color 0.17s, transform 0.16s;
  position: relative;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #ffe661;
  color: #111;
  transform: translateY(-1px) scale(1.04);
}
.cookie-banner .settings-btn {
  background: #232a2e;
  color: #ffe661;
  border: 1.5px solid #a6b42c;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #a6b42c;
  color: #111;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(19,30,18,0.82);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.22s cubic-bezier(.4,0,.5,1);
}
.cookie-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #272f20;
  border-radius: 18px;
  padding: 36px 28px 26px 28px;
  min-width: 320px;
  max-width: 460px;
  color: #e6ffd5;
  box-shadow: 0 8px 60px #a6b42c30;
  border: 2px solid #a6b42c;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieModalSlideIn 0.42s cubic-bezier(.11, .9, .61, 1.02);
}
@keyframes cookieModalSlideIn {
  0% { transform: translateY(70px) scale(.9); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  color: #ffe661;
  font-size: 1.31rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #232a2e;
  padding: 13px 16px;
  border-radius: 12px;
  color: #ffe661;
  font-weight: 700;
  border: 1.2px solid #a6b42c88;
}
.cookie-modal .cookie-cat input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  background: #a6b42c;
  border-radius: 4px;
  border: 2px solid #b1c88a;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  position: relative;
  cursor: pointer;
  outline: none;
}
.cookie-modal .cookie-cat input:checked {
  background: #ffe661;
  border-color: #b1c88a;
}
.cookie-modal .cookie-cat input[disabled], .cookie-modal .cookie-cat input[disabled]:checked {
  background: #c7e0b6;
  border-color: #c7e0b6;
  cursor: not-allowed;
}
.cookie-modal .cookie-cat label {
  flex: 1 1 auto;
  cursor: pointer;
  font-size: 1.03rem;
}
.cookie-modal .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .accept-btn, .cookie-modal .reject-btn {
  border-radius: 18px;
  background: #a6b42c;
  color: #191f13;
  border: none;
  padding: 10px 22px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.16s, color 0.17s, transform 0.15s;
}
.cookie-modal .accept-btn:hover, .cookie-modal .reject-btn:hover {
  background: #ffe661;
  color: #1d1d1d;
}
.cookie-modal .close-btn {
  background: #232a2e;
  color: #ffe661;
  border: 1.5px solid #a6b42c;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 1.18rem;
  font-weight: 700;
  position: absolute;
  top: 7px;
  right: 7px;
  cursor: pointer;
  transition: background 0.16s, color 0.17s;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  background: #a6b42c;
  color: #111;
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: unset;
    max-width: 97vw;
    padding: 18px 6px 18px 11px;
  }
}

/* MEDIA QUERIES: RESPONSIVE FLEXBOX LAYOUTS */
@media (max-width: 900px) {
  header .container {
    gap: 12px;
  }
  .card-container, .feature-grid, .services-list, .testimonial-list, .article-teasers {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .footer-info, .footer-menu, .footer-socials {
    flex-direction: column;
    align-items: flex-start;
  }
  .card-container, .feature-grid, .services-list, .testimonial-list, .article-teasers, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .btn {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .testimonial-card, .feature-item, .service-item, .card {
    min-width: 90vw !important;
    max-width: 100vw !important;
    padding: 18px 7px;
  }
}

/* MICRO-ANIMATIONS & HOVER-EFFECTS */
.btn, .cookie-banner button, .cookie-modal .accept-btn, .cookie-modal .reject-btn {
  transition: background 0.16s, color 0.18s, box-shadow 0.16s, transform 0.13s;
}
.card, .feature-item, .service-item, .testimonial-card, .article-teasers article {
  transition: box-shadow 0.21s, border 0.18s, transform 0.19s;
}

/* CUSTOM SCROLLBAR for Futuristic Look */
body::-webkit-scrollbar {
  width: 10px;
  background: #1a211c;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(115deg,#a6b42c 0%,#225c39 100%);
  border-radius: 5px;
}

/* Override autofill color for inputs (if needed) */
input:-webkit-autofill,
input:-webkit-autofill:focus {
  box-shadow: 0 0 0px 40rem #202a13 inset;
  -webkit-box-shadow: 0 0 0px 40rem #202a13 inset;
  -webkit-text-fill-color: #e6ffd5 !important;
  color: #e6ffd5 !important;
  caret-color: #a6b42c;
}

/* END: Starlight Grünflux Futuristic Tech Style CSS */
