/* ========================== 
   Verdant Shadow Industrial Modern CSS  
   (Brand: Verdant Shadow | www.verdant-shadow.com)
   ========================== */

/* --- CSS RESET --- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #162C22;
  color: #FCFDFE;
  font-family: 'Roboto', Arial, sans-serif;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
  border-radius: 0;
  background: none;
  border: none;
}
button {
  cursor: pointer;
}
::-webkit-input-placeholder { color: #A6ADA9; }
::-moz-placeholder { color: #A6ADA9; }
:-ms-input-placeholder { color: #A6ADA9; }
::placeholder { color: #A6ADA9; }


/* ============================
   BRAND & INDUSTRIAL MODERN BASE
   ============================ */
:root {
  --primary: #162C22;
  --secondary: #5DD39E;
  --accent: #FCFDFE;
  --muted: #252F29;
  --card-bg: #1B2520;
  --surface: #232B28;
  --border: #323C36;
  --focus: #5DD3C0;
  --text-main: #FCFDFE;
  --text-muted: #A6ADA9;
  --danger: #D35400;
  --success: #5DD39E;
}

body {
  min-height: 100vh;
  background: var(--primary);
}
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Font Stack & Sizing */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.125rem;
}
.subheadline {
  font-size: 1.22rem;
  color: var(--text-muted);
  margin-bottom: 26px;
  line-height: 1.7;
}
p, ul, ol, li, table, blockquote, dl, dd, dt {
  font-size: 1rem;
  color: var(--text-main);
}
strong {
  font-weight: bold;
  color: var(--secondary);
}
em {
  color: var(--secondary);
}
.text-section p,
.text-section ul,
.text-section ol,
.text-section li {
  color: var(--text-main);
}

/* Links */
a {
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--secondary);
  outline: none;
}

/* ===================
   HEADER 
   =================== */
header {
  background: var(--muted);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(22,44,34,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
  position: relative;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: grayscale(40%) drop-shadow(0px 2px 0px #252F29);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

/* Primary Button (CTA) */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(93,211,158,0.07);
  border: 2px solid var(--secondary);
  transition: background .2s, color .2s, box-shadow 0.2s;
  margin-left: 16px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent);
  color: var(--secondary);
  box-shadow: 0 6px 24px 0 rgba(93,211,158,0.20);
  border-color: var(--secondary);
}

/* Secondary Button */
.btn-secondary {
  display: inline-block;
  padding: 10px 22px;
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 22px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-top: 8px;
  margin-bottom: 0;
  transition: background .2s, color .2s, border-color 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* =============
   MOBILE NAV
   ============= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2rem;
  align-self: center;
  margin-left: 20px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.18s;
  z-index: 120;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--border);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #181E1BEE;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.77,0,.18,1);
  box-shadow: 6px 0px 32px rgba(20,32,28,0.42);
  padding: 0 20px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.3rem;
  padding: 14px 10px 4px 10px;
  margin: 16px 0 10px 0;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover{
  background: var(--surface);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 22px;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.18s, color 0.22s;
  border-radius: 3px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--muted);
  color: var(--secondary);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }  
}
@media (max-width: 850px) {
  .main-nav{
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 530px) {
  .logo img {
    height: 34px;
  }
}

@media (max-width: 480px) {
  header .container {
    gap: 8px;
    min-height: 58px;
    padding: 0 4px;
  }
}


/* ===================
   SECTION & LAYOUTS
   =================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .section {
    padding: 30px 6px;
  }
  .content-wrapper {
    padding: 0 0 0 0;
    max-width: 100%;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* =======================
   FEATURE & CARD LAYOUTS
   ======================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 14px;
}
.feature-grid li {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 3px 13px rgba(24,34,28,0.16);
  padding: 30px 20px 24px 20px;
  flex: 1 1 235px;
  min-width: 210px;
  max-width: calc(33% - 32px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border-color 0.19s, transform .14s;
  position: relative;
}
.feature-grid li img {
  width: 42px;
  height: 42px;
  filter: brightness(0.96) saturate(1.1);
}
.feature-grid li:hover, .feature-grid li:focus {
  box-shadow: 0 6px 32px 0 rgba(93,211,158,0.13);
  border-color: var(--secondary);
  transform: translateY(-2px) scale(1.018);
  z-index: 10;
}
.feature-grid h3 {
  color: var(--secondary);
}

.feature-list, .benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-list li, .benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 12px;
  border-radius: 9px;
  background: var(--card-bg);
  box-shadow: 0 2px 8px rgba(22,44,34,0.10);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 1 220px;
  transition: box-shadow 0.17s, border-color 0.17s;
}
.feature-list li:hover, .feature-list li:focus, 
.benefit-list li:hover, .benefit-list li:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px var(--secondary), 0 2px 16px #5DD39E33;
}
.feature-list img, .benefit-list img {
  width: 40px;
  height: 40px;
  filter: brightness(1) grayscale(40%);
}

/* --- Service Card Layouts --- */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 13px;
  box-shadow: 0 2px 16px 0 rgba(24,34,28,0.14);
  flex: 1 1 252px;
  min-width: 210px;
  max-width: calc(50% - 28px);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 32px 22px 20px 22px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.12s, transform 0.12s;
}
.service-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  filter: grayscale(40%) brightness(1.18);
}
.service-card .service-price {
  margin-top: 8px;
  font-size: 1.12rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 1px;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 8px 32px 0 rgba(93,211,158,0.13);
  border-color: var(--secondary);
  transform: translateY(-2px) scale(1.020);
}

/* --- Plain Service List (sluzby page) --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-list li {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(24,34,28,0.09);
  flex: 1 1 250px;
  min-width: 220px;
  max-width: calc(100% - 48px);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 18px;
}
.service-list .service-price {
  margin-top: 7px;
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: .5px;
}

/* --- Blog List --- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-list li {
  background: var(--surface);
  border-radius: 11px;
  border: 1px solid var(--border);
  padding: 24px 20px;
  flex: 1 1 300px;
  min-width: 230px;
  max-width: calc(100% - 40px);
  margin-bottom: 20px;
  box-shadow: 0 1px 8px #232B2820;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.19s, border-color 0.15s;
}
.blog-list li:hover, .blog-list li:focus {
  box-shadow: 0 8px 24px #5DD39E20;
  border-color: var(--secondary);
}
.post-excerpt {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.category-list li {
  background: var(--surface);
  border-radius: 8px;
  padding: 18px 18px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  flex: 1 1 180px;
  min-width: 170px;
}

/* ===================
   TESTIMONIALS
   =================== */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-card {
  background: var(--accent);
  color: var(--primary);
  border-radius: 14px;
  border: 1.5px solid var(--secondary);
  box-shadow: 0 8px 32px 0 #1B252033;
  flex: 1 1 235px;
  min-width: 210px;
  max-width: calc(33% - 32px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 26px 20px 26px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, transform .12s, border-color 0.12s;
  font-size: 1.01rem;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 16px 48px 0 #5DD39E28;
  border-color: var(--success);
  transform: scale(1.015);
  z-index: 14;
}
.testimonial-card p {
  color: var(--primary);
  line-height: 1.7;
}
.testimonial-meta {
  margin-top: 12px;
  font-size: 0.98rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.stars {
  color: #fbbf24;
  letter-spacing: 1.5px;
  font-size: 1.18em;
  margin-left: 5px;
}

/* Responsive Cards (Wrap) */
@media (max-width: 950px) {
  .feature-grid, .testimonial-cards, .service-cards, .blog-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .testimonial-card, .service-card, .blog-list li {
    max-width: 100%;
  }
}
@media (max-width: 660px) {
  .feature-grid li, .testimonial-card, .service-card {
    padding: 18px 10px;
  }
  .testimonial-card {
    gap: 11px;
  }
}

/* =============
   TABLES & DL
   ============= */
table {
  width: 100%;
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px #232B2832;
}
thead tr {
  background: var(--secondary);
  color: var(--primary);
}
th, td {
  padding: 12px 13px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
thead th {
  border-bottom: 2px solid var(--border);
}
tbody tr {
  transition: background 0.14s;
}
tbody tr:hover {
  background: #0B1310;
}
table tr:last-child td {
  border-bottom: none;
}

dl {
  margin-bottom: 20px;
}
dl dt {
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 14px;
  color: var(--secondary);
}
dl dd {
  margin-left: 0;
  padding-left: 10px;
  color: var(--text-main);
  margin-bottom: 10px;
}

/* ================
   MAP PLACEHOLDER
   ================ */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  padding: 16px 18px;
  border-radius: 9px;
  margin-top: 15px;
  margin-bottom: 10px;
}
.map-placeholder img {
  width: 52px;
  height: 52px;
}

/* =========
   FOOTER
   ========= */
footer {
  background: var(--muted);
  border-top: 1.5px solid var(--border);
  color: var(--text-main);
  margin-top: 60px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 38px 0 17px 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo img {
  height: 42px;
  width: auto;
  filter: grayscale(60%);
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 205px;
}
.footer-nav a {
  color: var(--text-muted);
  font-size: 0.99rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
}
.footer-address {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 12px;
}
footer small {
  margin-top: 13px;
  display: block;
  text-align: right;
  font-size: 0.93rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  footer small {
    text-align: left;
  }
}

/* =======================
   COOKIE CONSENT BANNER
   ======================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--card-bg);
  border-top: 2px solid var(--secondary);
  box-shadow: 0 -2px 30px 0 rgba(22,44,34,0.17);
  z-index: 2100;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding: 24px 18px;
  font-size: 1rem;
  color: var(--text-main);
  animation: cookieBannerSlide .6s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieBannerSlide {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--text-main);
  margin-right: 8px;
  font-size: 1.07rem;
  line-height: 1.6;
}
.cookie-banner button {
  margin: 0 4px 0 0;
}

/* Cookie Consent Buttons */
.cookie-accept-btn, .cookie-reject-btn, .cookie-settings-btn {
  padding: 10px 21px;
  border-radius: 22px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: 2px solid var(--secondary);
  margin-right: 8px;
  transition: background 0.2s, color 0.2s;
}
.cookie-reject-btn {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-settings-btn {
  background: var(--surface);
  color: var(--secondary);
  border: 2px solid var(--border);
  margin-right: 0;
}
.cookie-accept-btn:hover, .cookie-accept-btn:focus {
  background: var(--accent);
  color: var(--secondary);
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    padding: 18px 4px;
    font-size: 0.97rem;
    gap: 17px;
  }
  .cookie-banner p {
    margin-right: 0;
  }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,44,34,0.92);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: var(--card-bg);
  color: var(--accent);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 8px 40px 0 rgba(22,44,34,0.28);
  min-width: 320px;
  max-width: 94vw;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h2 {
  color: var(--secondary);
  font-size: 1.34rem;
  margin-bottom: 2px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.1rem;
  border-radius: 10px;
  padding: 5px 8px 5px 8px;
  transition: background 0.15s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: var(--surface);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border-radius: 7px;
  padding: 11px 14px;
  color: var(--accent);
}
.cookie-category.disabled {
  opacity: 0.55;
  pointer-events: none;
}
.cookie-toggle {
  margin-left: auto;
}
.switch {
  width: 38px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.switch input {
  opacity: 0;
  width: 0; height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: var(--border);
  border-radius: 15px;
  transition: background 0.2s;
}
.switch input:checked + .slider {
  background: var(--secondary);
}
.slider:before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.2s;
}
.switch input:checked + .slider:before {
  transform: translateX(16px);
}

.cookie-modal-footer {
  margin-top: 12px;
  gap: 12px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.cookie-modal .btn-primary,
.cookie-modal .btn-secondary {
  font-size: 0.98rem;
  padding: 8px 20px;
}

@media (max-width: 430px) {
  .cookie-modal-content {
    padding: 20px 4px 22px 4px;
    min-width: 90vw;
  }
}


/* ===== CONTACT INFO ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0;
}
.contact-info li {
  color: var(--accent);
  font-size: 1.05rem;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .contact-info {
    font-size: .96rem;
    gap: 9px;
  }
}

/* ==============
   UTILITIES
   ==============
*/
.hide {
  display: none !important;
}

/* ==================
   MICRO-INTERACTIONS & FOCUS
   ================== */
.btn-primary,
.btn-secondary,
.mobile-menu-toggle,
.mobile-menu-close,
.cookie-modal-close,
.cookie-accept-btn,
.cookie-settings-btn,
.cookie-reject-btn {
  transition: background 0.16s, color 0.16s, box-shadow 0.13s, border 0.14s;
  outline: none;
}

:focus-visible {
  outline: 2.5px solid var(--focus);
  outline-offset: 2.5px;
}

/* ===============
   RESPONSIVE
   =============== */
@media (max-width: 1110px) {
  .container {
    padding: 0 8px;
  }
  .footer-content{
    padding: 38px 6px 17px 6px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.33rem; }
  h3 { font-size: 1.13rem; }
  .service-card,
  .feature-grid li,
  .testimonial-card,
  .benefit-list li,
  .feature-list li,
  .category-list li,
  .blog-list li {
    min-width: 0;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .service-cards, .feature-grid, .testimonial-cards, .benefit-list, .feature-list, .category-list, .blog-list {
    flex-direction: column;
    gap: 17px;
  }
  .footer-content {
    padding: 24px 2px 14px 2px;
  }
}

@media (max-width: 510px) {
  .section {
    padding: 16px 2px;
    margin-bottom: 32px;
  }
}

/* ======================
   END STYLES
   ====================== */
