/* ===== CSS RESET & BASE ===== */
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background-color: #f7f9fa;
  color: #213d30;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #213d30;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #038C73;
  text-decoration: underline;
}

/* ===== VARIABLES (WITH FALLBACKS) ===== */
:root {
  --color-primary: #213d30;
  --color-secondary: #e8f5e0;
  --color-accent: #fff653;
  --color-gray-100: #f7f9fa;
  --color-gray-200: #e3e7eb;
  --color-gray-300: #cad5df;
  --color-gray-700: #3a4d5a;
  --color-blue-100: #eef3f7;
  --color-blue-500: #235880;
  --color-blue-700: #1b3d56;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(33,61,48,0.10);
  --shadow-elevated: 0 6px 24px rgba(33,61,48,0.14);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
}

/* ===== HEADER ===== */
header {
  background: var(--color-primary);
  color: #fff;
  padding: 0;
  box-shadow: 0 1px 8px rgba(33,61,48,0.05);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 6px 6px;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.15s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: rgba(255,255,255,0.09);
  color: var(--color-accent);
  outline: none;
}
.cta-button {
  background: var(--color-accent);
  color: #1b3d56;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 24px;
  border: none;
  border-radius: 5px;
  margin-left: 16px;
  box-shadow: 0 2px 6px rgba(33,61,48,0.05);
  transition: background 0.18s, color 0.16s, box-shadow 0.22s;
  cursor: pointer;
  display: inline-block;
  position: relative;
  letter-spacing: 0.01em;
}
.cta-button:hover, .cta-button:focus {
  background: #faf489;
  color: #213d30;
  box-shadow: 0 4px 18px rgba(213,238,51,0.18);
  text-decoration: none;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 24px;
  padding: 5px 15px;
  border-radius: 6px;
  outline: none;
  transition: background 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(255,255,255,0.12);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #213d30;
  color: #fff;
  z-index: 1200;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(.77,0,.18,1), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin: 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.13s;
  z-index: 1240;
  padding: 7px 17px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(232,245,224,0.1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 10px 0 8px 0;
  border-radius: 0;
  text-align: left;
  transition: color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
}

@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===== HERO, CTA, HEADINGS ===== */
.hero {
  background: linear-gradient(120deg, var(--color-secondary) 80%, #e3e7eb 105%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 60px;
  box-shadow: 0 2px 16px rgba(33,61,48,0.06);
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 350px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: #213d30;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero p {
  font-size: 1.22rem;
  margin-bottom: 26px;
  color: #213d30;
  max-width: 630px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero {
    min-height: 210px;
    padding: 28px 0 10px 0;
  }
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 16px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #213d30;
  letter-spacing: -0.005em;
}
h1 { font-size: 2.25rem; margin-bottom: 18px; }
h2 { font-size: 1.65rem; margin-bottom: 13px; }
h3 { font-size: 1.2rem; margin-bottom: 8px; }
h4 { font-size: 1.08rem; margin-bottom: 7px; }

@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.07rem; }
}

/* ===== FEATURE & CARDS ===== */
.features {
  background: var(--color-gray-100);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 330px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.21s;
}
.feature img {
  height: 44px; width: 44px; object-fit: contain;
  margin-bottom: 3px;
}
.feature h3 {
  font-size: 1rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 6px;
}
.feature p {
  color: #3a4d5a;
  font-size: 0.98rem;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 4px 18px rgba(33,61,48,0.13);
  transform: translateY(-2px) scale(1.019);
}

@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature {
    max-width: 100%;
    width: 100%;
  }
}

/* ========== CARDS GENERAL ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.15s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px) scale(1.012);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background:#fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 0 28px 0;
}
.testimonial-slider, .testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  background: #f8fafb;
  border-radius: 10px;
  padding: 24px 22px;
  box-shadow: 0 2px 8px rgba(33,61,48,0.06);
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 330px;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-accent);
  color: #19332a;
  font-size: 1rem;
  position: relative;
}
.testimonial-card p {
  color: #213d30;
  font-size: 1.01rem;
  margin-bottom: 8px;
}
.testimonial-meta {
  color: #235880;
  font-weight: 600;
  font-size: 0.97rem;
  margin-top: 6px;
  display: flex; align-items: center; gap: 8px;
}
.testimonial-meta strong {
  color: #235880;
  font-weight: 700;
}
.testimonial-meta span {
  color: #ffd600;
  font-size: 1.11em;
  margin-left: 3px;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 100%;
    width: 100%;
  }
}

/* ===== PRICING TABLE ===== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 32px;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(33,61,48,0.06);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 15px 12px;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-200);
}
.pricing-table th {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table .highlight {
  background: var(--color-accent);
  color: #2f3508;
  font-weight: 700;
  border-radius: 0 0 var(--radius) var(--radius);
}


/* ===== SUBSCRIPTIONS ===== */
.subscription-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.subscription-option {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  max-width: 350px;
  border-left: 4px solid var(--color-primary);
  transition: box-shadow 0.16s, transform 0.14s;
}
.subscription-option:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px) scale(1.013);
}
.toggle {
  margin-top: 6px;
}
.toggle label {
  font-size: 0.93rem;
  color: #3a4d5a;
}
.toggle input[type='checkbox'] {
  accent-color: var(--color-primary);
  margin-right: 7px;
}

@media (max-width: 900px) {
  .subscription-grid {
    flex-direction: column;
    gap: 14px;
  }
  .subscription-option {
    max-width: 100%;
    width: 100%;
  }
}

/* ===== BENEFITS / FEATURE LISTS ===== */
.benefits-list, .feature-list, .service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.benefits-list li, .feature-list li, .service-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 1.01rem;
  color: #213d30;
}
.benefits-list img, .feature-list img, .service-list img {
  width: 36px; height: 36px;
  object-fit: contain;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 12px;
}
.faq-item h3 {
  font-size: 1.11rem;
  color: var(--color-primary);
  margin-bottom: 5px;
}
.faq-item p {
  color: #3a4d5a;
  font-size: 1rem;
}

/* ===== CTA SECTIONS ===== */
.cta {
  background: var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: 0 1px 10px rgba(215,230,206,0.08);
  padding: 36px 16px;
  margin-bottom: 60px;
}
.cta .content-wrapper {
  align-items: flex-start;
}
.cta h2 {
  color: #19332a;
}
.cta a.cta-button {
  margin-bottom: 12px;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-weight: 600;
  font-size: 1.02rem;
}

/* ===== CONTACT PAGE ===== */
.address-block {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.08rem;
  color: #213d30;
  margin-bottom: 14px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.opening-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
}

/* ===== THANK YOU PAGE ===== */
.thank-you {
  background: var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: 0 1px 10px rgba(202,213,223,0.09);
  padding: 44px 14px 40px 14px;
  text-align: center;
}
.thank-you a.cta-button {
  margin-top: 18px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 -1px 12px rgba(33,61,48,0.04);
}
footer .container {
  padding: 48px 20px 0 20px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 50px;
}
.footer-contact h4, .footer-links h4, .footer-social h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff653;
  font-size: 1.08rem;
  margin-bottom: 7px;
}
.footer-contact ul, .footer-links nav {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-contact li {
  font-size: 0.99rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact a {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
}
.footer-links nav a {
  color: #e3e7eb;
  font-size: 0.98rem;
  padding: 2px 0;
  transition: color 0.15s;
}
.footer-links nav a:hover, .footer-links nav a:focus {
  color: #fff653;
}
.footer-social a img {
  width: 35px;
  height: 35px;
  margin-right: 8px;
  filter: brightness(1.07) drop-shadow(0 2px 5px rgba(0,0,0,0.09));
}
.footer-bottom {
  text-align: center;
  font-size: 0.93rem;
  color: #cad5df;
  padding: 12px 2px 40px 2px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    gap: 24px;
  }
}

/* ===== LEGAL PAGES ===== */
.legal {
  background: #fff;
  padding: 40px 20px;
  border-radius: var(--radius);
  box-shadow: 0 1px 10px rgba(33,61,48,0.09);
  margin-bottom: 60px;
  color: #19332a;
}
.legal h1, .legal h2, .legal h3 {
  color: #213d30;
}
.legal a {
  color: var(--color-blue-500);
  text-decoration: underline;
  font-weight: 600;
}
.legal a:hover {
  color: var(--color-primary);
}

/* ====== GENERAL FORMS & BUTTONS ====== */
input, button, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 4px;
}
button, .button {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
  transition: background 0.15s, transform 0.14s, box-shadow 0.15s;
  box-shadow: 0 1px 6px rgba(33,61,48,0.07);
  letter-spacing: 0.01em;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #235880;
  transform: translateY(-1px) scale(1.019);
  box-shadow: 0 3px 12px rgba(33,61,48,0.12);
}

/* ====== UTILITY FLEX LAYOUTS ====== */
.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;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #213d30;
  color: #fff;
  box-shadow: 0 -2px 24px rgba(33,61,48,0.17);
  padding: 22px 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: 5000;
  animation: cookieBannerSlideIn 0.45s cubic-bezier(.55,.08,.58,1.03);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.01rem;
  color: #fff;
  margin-right: 16px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  padding: 9px 22px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  margin: 0 2px;
  font-weight: 600;
  background: var(--color-accent);
  color: #19332a;
  transition: background 0.13s, color 0.13s, box-shadow 0.14s;
  box-shadow: 0 1px 6px rgba(33,61,48,0.11);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #faf489;
  color: #213d30;
}
.cookie-banner .settings-btn {
  background: #e3e7eb;
  color: #233d30;
}
.cookie-banner .settings-btn:hover {
  background: #cad5df;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 10px;
  }
  .cookie-banner p {
    margin-right: 0;
  }
}

/* ===== COOKIE MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 6000;
  left: 0; right: 0; top: 0; bottom:0;
  background: rgba(33,61,48,0.68);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeInCookieModal 0.2s;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(33,61,48,0.19);
  padding: 32px 30px 30px 30px;
  width: 95%;
  max-width: 440px;
  color: #213d30;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideDownCookieModal 0.33s cubic-bezier(.55,.08,.58,1.03);
}
@keyframes slideDownCookieModal {
  from { transform: translateY(-60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.3rem;
  font-family: var(--font-display);
}
.cookie-modal ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
}
.cookie-modal label {
  font-weight: 500;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 17px; height: 17px;
  margin-right: 10px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal button {
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
  background: var(--color-primary);
  color: #fff;
}
.cookie-modal button.close-modal {
  background: #e3e7eb;
  color: #213d30;
}
.cookie-modal button.close-modal:hover {
  background: #cad5df;
}
.cookie-modal button.accept {
  background: var(--color-accent);
  color: #2f3508;
}
.cookie-modal button.accept:hover {
  background: #faf489;
}

/* ===== RESPONSIVE RULES ===== */
@media (max-width: 1100px) {
  .container { max-width: 1000px; }
}
@media (max-width: 900px) {
  .container { max-width: 760px; }
  .content-wrapper { max-width: 99%; }
}
@media (max-width: 700px) {
  .container { max-width: 99vw; padding: 0 3vw; }
  .section { padding: 18px 1vw; }
  .feature, .card, .testimonial-card, .subscription-option { padding: 16px 10px; }
  .card-container, .content-grid, .feature-grid, .subscription-grid {
    flex-direction: column;
    gap: 13px;
  }
}

/* ===== MICRO-INTERACTIONS ===== */
.feature:hover img, .subscription-option:hover h3 {
  filter: brightness(1.1) drop-shadow(0 2px 8px rgba(33,61,48,0.09));
}
.cta-button::after, .button::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  border-right: 9px solid #213d30;
  border-radius: 3px;
  margin-left: 12px;
  opacity: 0.12;
}
.cta-button:hover::after, .button:hover::after {
  opacity: 0.32;
}

/* ===== ACCESSIBILITY ===== */
:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 11px; background: #e3e7eb;
}
::-webkit-scrollbar-thumb {
  background: #cad5df; border-radius: 12px;
}

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