/* ========================
   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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  height: 100%;
  background: #181c1f;
  color: #f2f2f2;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
  padding-left: 0;
}
a {
  background: none;
  color: #E2F3E5;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #A5E887;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  background: none;
  border: none;
}
button {
  cursor: pointer;
  background: none;
}

/* ============================
   BRAND VARIABLES & UTILITIES
   ============================ */
:root {
  --color-primary: #1B5B2E;
  --color-secondary: #48639C;
  --color-accent: #E2F3E5;
  --color-bg: #181c1f;
  --color-bg-light: #23282b;
  --color-bg-footer: #101214;
  --color-dark: #131617;
  --color-gray: #818383;
  --color-metal: #9BA2AB;
  --color-success: #79af85;
  --color-warning: #ffd25f;
  --color-danger: #ff5b5b;
  --color-border: #2D363C;
  --color-white: #f2f2f2;
  --color-black: #101214;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --shadow-soft: 0 2px 8px 0 rgba(36,40,46,0.15);
  --shadow-industrial: 0 4px 16px 0 rgba(41,47,51,0.25);
  --radius: 10px;
  --transition: 0.2s cubic-bezier(.67,.31,.34,1);
}

/* =========================
   SPACING & SECTION SYSTEM
   ========================= */
.container {
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-bg-light);
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-soft);
  min-width: 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  gap: 12px;
}
.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: #fafbfc;
  color: #1B1F22;
  border-radius: var(--radius);
  box-shadow: var(--shadow-industrial);
  margin-bottom: 20px;
  flex-direction: column;
  min-width: 280px;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 18px 22px 18px;
  background: var(--color-bg-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 250px;
}
.feature-item img {
  width: 40px;
  height: 40px;
  filter: brightness(0.92) contrast(1.05);
}
/* Feature grid for pages with features */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  justify-content: flex-start;
}
/* USP grids and benefit grids follow same flex layouts */
.usp-grid, .benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.usp-item {
  background: var(--color-bg-light);
  border: 1.5px solid var(--color-metal);
  border-radius: var(--radius);
  box-shadow: var(--shadow-industrial);
  padding: 28px 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

/***** RESPONSIVE FLEX DIRECTION *****/
@media (max-width: 768px) {
  .content-wrapper, .feature-grid, .benefit-grid, .usp-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/***** Typography – Industrial Modern *****/
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.012em;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(27,91,46,0.13),0 1px 6px rgba(18,22,34,0.32);
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--color-secondary);
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--color-primary);
}
h4 {
  font-size: 1.08rem;
  color: var(--color-secondary);
}
p, ul, ol, li, .subheadline {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-white);
}
.subheadline {
  color: var(--color-gray);
  font-size: 1.18rem;
  margin-bottom: 12px;
  font-weight: 500;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}
ul li strong {
  color: var(--color-accent);
}

/***** Button Styles *****/
.btn-primary, a.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 34px;
  background-color: var(--color-primary);
  color: var(--color-accent);
  border: none;
  border-radius: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px 0 rgba(27,91,46,0.09);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), scale 0.18s;
  cursor: pointer;
  outline: none;
  margin-top: 16px;
  text-transform: uppercase;
  gap: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #236839;
  color: #fff;
  scale:1.04;
  box-shadow: 0 5px 18px 0 rgba(27,91,46,0.24);
}
.btn-secondary, a.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 24px 0 rgba(68,99,156,0.09);
  letter-spacing: 0.05em;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), scale 0.18s;
  cursor: pointer;
  outline: none;
  margin-top: 16px;
  text-transform: uppercase;
  gap: 9px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #25426d;
  color: #E2F3E5;
  scale:1.04;
  box-shadow: 0 8px 24px 0 rgba(68,99,156,0.19);
}
.btn-link, a.btn-link {
  display: inline-flex;
  align-items: center;
  padding: 0 6px;
  color: var(--color-accent);
  font-family: var(--font-display);
  background: none;
  border: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1.06rem;
  border-radius: 2px;
  margin-top: 10px;
  transition: color var(--transition), background var(--transition);
}
.btn-link:hover, .btn-link:focus {
  color: #A5E887;
  background: var(--color-primary);
}

/***** HEADER & NAVIGATION *****/
header {
  background: #181c1f;
  width: 100%;
  border-bottom: 1.5px solid var(--color-border);
  box-shadow: 0 2px 14px 0 rgba(36,40,46,0.10);
  z-index: 30;
}
.logo img {
  height: 46px;
  width: auto;
  margin: 12px 0 12px 0;
  display: block;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  max-width: 1220px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #e1e8ee;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
  transition: color 0.18s, border-bottom 0.16s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  position: relative;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
.main-nav a.btn-primary {
  margin-left: 12px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: #E2F3E5;
  background: none;
  padding: 10px 12px;
  border-radius: 8px;
  margin-left: 10px;
  transition: background var(--transition);
  z-index: 130;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-secondary);
}
/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90vw;
  max-width: 330px;
  background: #23282b;
  border-left: 2px solid var(--color-border);
  box-shadow: -2px 0 24px 0 rgba(68,99,156,0.13);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.54,.08,.32,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding: 32px 22px 18px 22px;
  gap: 30px;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  animation: menu-slide-in 350ms cubic-bezier(.54,.08,.32,1);
}
@keyframes menu-slide-in {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}
.mobile-menu-close {
  position: absolute;
  top: 13px;
  right: 17px;
  background: var(--color-dark);
  color: #E2F3E5;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1900;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: #E2F3E5;
  padding: 12px 8px;
  border-radius: 7px;
  transition: background var(--transition), color var(--transition);
  text-transform: uppercase;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 17px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 8px;
  }
  .logo img { height: 38px; }
}
@media (max-width: 820px) {
  header .container {
    flex-direction: row;
    align-items: center;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 410px) {
  .mobile-menu {
    max-width: 100vw;
    width: 100vw;
    padding: 42px 10px 14px 10px;
  }
}

/***** HERO & CTA SECTIONS *****/
.hero {
  background: linear-gradient(92deg, #21262A 0%, #202921 87%);
  min-height: 315px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--color-border);
  box-shadow: 0 4px 48px 0 rgba(44,44,44,0.20);
}
.hero h1 {
  color: #E2F3E5;
  text-shadow: 0 2px 26px rgba(91,255,99,0.065);
}
.hero .subheadline {
  color: #b8c4b8;
  font-weight: 400;
}
.hero .btn-primary {
  margin-left: 0;
}
.cta, .cta-green {
  background: var(--color-primary);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(27,91,46,0.13);
  color: #fff;
  margin-bottom: 60px;
  padding: 40px 20px 38px 20px;
}
.cta-green {
  background: #277841;
}
.cta h2, .cta-green h2 {
  color: #fff;
}
.cta p, .cta-green p {
  color: #e2f3e5;
}
/***** FOOTER *****/
footer {
  background: var(--color-bg-footer);
  color: #dee4e7;
  width: 100%;
  font-size: 1rem;
  border-top: 2px solid var(--color-border);
  margin-top: 64px;
  padding-top: 24px;
  letter-spacing: 0.01em;
}
.footer-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 10px;
}
.footer-logo img {
  height: 40px;
  margin: 0 0 16px 0;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a, .footer-legal a {
  color: #dee4e7;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.15s, text-decoration 0.2s;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}
.footer-contact {
  color: #b7bac2;
  font-size: 0.98rem;
  max-width: 280px;
}
.newsletter-signup {
  flex: 1;
  max-width: 250px;
  font-size: 1rem;
  color: #dde3e9;
  align-self: flex-start;
}
@media (max-width: 940px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
/* ========== PAGE BLOCKS & COMPONENTS ========== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #e2f3e5;
}
.text-section ul {
  margin-top: 6px;
  margin-bottom: 9px;
  padding-left: 18px;
}
.text-section li {
  list-style: disc;
  margin-bottom: 6px;
  color: #c7dbc6;
}
.text-section a {
  color: var(--color-secondary);
  font-weight: 600;
}
.text-section a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}
.service-list ul, .services ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.service-list li, .services li {
  background: var(--color-bg-light);
  padding: 20px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: #fff;
  border-left: 5px solid var(--color-secondary);
  font-size: 1.08rem;
  letter-spacing: 0.012em;
  margin-bottom: 6px;
  min-width: 220px;
}
.service-list li strong, .services li strong {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.03em;
}
.service-list li span, .services li span {
  display: block;
  font-size: 0.96em;
  color: #98ae98;
  margin-top: 3px;
}

/***** FAQ Accordion *****/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-bottom: 22px;
}
.faq-item {
  background: var(--color-bg-light);
  color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px 18px;
  border-left: 5px solid var(--color-secondary);
  transition: box-shadow var(--transition), background 0.2s;
}
.faq-item h3 {
  font-family: var(--font-display);
  color: var(--color-secondary);
  margin-bottom: 5px;
  font-size: 1.08rem;
}
.faq-item div {
  font-size: 1rem;
  color: #c7dbc6;
}
.faq-item:hover {
  box-shadow: 0 8px 26px 0 rgba(72,99,156,0.12);
  background: #243630;
}

/***** Testimonials *****/
.star-rating {
  font-size: 1.5rem;
  color: #FFD25F;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(41,47,51,0.25);
}
.testimonial-meta {
  margin-top: 6px;
  font-size: 0.99rem;
  color: #426840;
  font-family: var(--font-body);
  font-style: italic;
}
.testimonials .testimonial-card {
  background: #f3f5f6;
  color: #132113;
  border-left: 5px solid #79af85;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}
.testimonials h2 {
  color: var(--color-secondary);
}

/***** LEGAL PAGE STYLES *****/
.legal {
  background: #181C1E;
  padding: 38px 20px 48px 20px;
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: 0 2px 18px 0 rgba(41,47,51,0.10);
}
.legal .text-section {
  color: #d7e6da;
}
.legal h1,.legal h2 {
  color: var(--color-accent);
}

/***** THANK YOU PAGE *****/
.thank-you {
  background: #277841;
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 26px 0 rgba(41,47,51,0.13);
  margin: 48px 0;
  padding: 48px 20px 50px 20px;
}
.thank-you h1 {
  color: var(--color-white);
}

/***** MICRO-INTERACTIONS & TRANSITIONS *****/
.card, .feature-item, .usp-item {
  transition: box-shadow 0.22s, transform 0.17s, border-color 0.14s;
}
.card:hover, .feature-item:hover, .usp-item:hover {
  box-shadow: 0 10px 38px 0 rgba(27,91,46,0.17), 0 1.5px 18px 0 rgba(68,99,156,0.10);
  transform: translateY(-4px) scale(1.025);
  border-color: #7aad8f;
}

.btn-primary, .btn-secondary { transition: background 0.19s, color 0.21s, scale 0.12s;
}
.btn-primary:active, .btn-secondary:active {
  scale: .97;
}

/* ==================
   COOKIE CONSENT BAR
   ================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222a23;
  color: #e3f5dc;
  font-family: var(--font-display);
  z-index: 13000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 22px 18px 22px 30px;
  box-shadow: 0 -2px 22px 0 rgba(34,44,34,0.12);
  border-top: 2px solid var(--color-border);
  min-height: 60px;
  animation: cookie-slide-in 0.45s cubic-bezier(.36,.51,.36,1);
  font-size: 1.08rem;
}
@keyframes cookie-slide-in {
  0% { transform: translateY(110%); }
  100% { transform: translateY(0); }
}
.cookie-banner p {
  color: #e3f5dc;
  font-size: 1.05rem;
  margin: 0 19px 0 0;
  flex: 1;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner .cookie-btn {
  background: var(--color-metal);
  color: #1B1F22;
  font-family: var(--font-display);
  font-size: 1.00rem;
  border: none;
  border-radius: 7px;
  padding: 8px 23px;
  font-weight: 600;
  margin: 0;
  transition: background 0.13s, color 0.15s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--color-success);
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: var(--color-danger);
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  filter: brightness(0.93) contrast(1.1);
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    font-size: 0.99rem;
    padding: 21px 12px 19px 12px;
  }
  .cookie-banner .cookie-btns {
    gap: 7px;
  }
}
/* ========== COOKIE SETTINGS MODAL ==========
   (you may add .cookie-modal dynamically)
==============================================*/
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(18,22,24,0.9);
  z-index: 20050;
  display: flex;
  align-items: center; justify-content: center;
  animation: modal-fade-in 0.25s ease;
}
@keyframes modal-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal .modal-content {
  width: 96vw;
  max-width: 410px;
  background: #222a23;
  color: #e3f5dc;
  border-radius: var(--radius);
  box-shadow: 0 8px 36px 0 rgba(41,47,51,0.19);
  padding: 37px 29px 27px 29px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-content-fade 0.29s cubic-bezier(.36,.51,.36,1);
}
@keyframes modal-content-fade {
  0% { transform: translateY(24px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal .close-modal {
  position: absolute;
  top: 15px;
  right: 23px;
  background: var(--color-danger);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  width: 33px; height: 33px;
  display: flex; align-items: center; justify-content: center;
  z-index: 20;
  cursor: pointer;
  transition: background 0.14s, color 0.16s;
}
.cookie-modal .close-modal:hover {
  background: #cd3c3c;
}
.cookie-modal h2 {
  color: var(--color-accent);
  font-size: 1.23rem;
  margin-bottom: 4px;
}
.cookie-modal .cookie-category {
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
}
.cookie-modal .cookie-category label {
  color: var(--color-accent);
  font-weight: 600;
  margin-right: 6px;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #626d71;
  border-radius: 22px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.12s;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--color-success);
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.15s;
}
.cookie-modal .cookie-toggle:checked:before {
  transform: translateX(18px);
}
.cookie-modal .modal-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 21px;
}
.cookie-modal .modal-btn {
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.00rem;
  border: none;
  border-radius: 6px;
  padding: 8px 19px;
  font-weight: 600;
  transition: background 0.15s, color 0.16s;
  cursor: pointer;
}
.cookie-modal .modal-btn.accept {
  background: var(--color-success);
  color: #fff;
}
.cookie-modal .modal-btn.reject {
  background: var(--color-danger);
  color: #fff;
}
.cookie-modal .modal-btn:hover, .cookie-modal .modal-btn:focus {
  filter: brightness(0.92) contrast(1.1);
}

/***** Responsive Utilities *****/
@media (max-width: 660px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section, .cta, .cta-green, .legal {
    padding: 24px 6px 28px 6px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.68rem;}
  h2 { font-size: 1.18rem;}
  .feature-item, .usp-item, .testimonial-card, .card {
    padding: 13px 9px;
    min-width: 140px;
    font-size: 0.96rem;
  }
}

/* =========== Hide visually but keep accessible =========== */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* ===================
   MISC. HIGHLIGHTS
   =================== */
::-webkit-scrollbar {
  width: 8px;
  background: #23282b;
}
::-webkit-scrollbar-thumb {
  background: #314136;
  border-radius: 9px;
}

/* =========== End =========== */
