/* ------------------- CSS RESET & NORMALIZE -------------------- */
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; background: #181E2B; }
body { 
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #181E2B;
  color: #F3F6FB;
  line-height: 1.7;
  min-height: 100vh;
  font-size: 16px;
}
img { display: block; max-width: 100%; height: auto; border: 0; }
ul, ol {
  list-style: none;
  margin-left: 0;
}
a {
  color: #27C48E;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus { outline: 2px solid #27C48E; outline-offset: 2px; }
a:hover { color: #68ffda; text-decoration: underline; }

/* ------------------ VARIABLES (fallbacks included) ------------------ */
:root {
  --color-bg: #181E2B;
  --color-primary: #21409A;
  --color-secondary: #27C48E;
  --color-accent: #F3F6FB;
  --color-border: #23335a;
  --color-card: #222c3c;
  --color-shadow: rgba(39,196,142, 0.18);

  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ------------------ TYPOGRAPHY ------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display), Arial, sans-serif;
  color: #F3F6FB;
  letter-spacing: 0.01em;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.3rem; margin-bottom: 18px; }
h2 { font-size: 1.7rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
@media (min-width: 500px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.35rem; }
}
strong, b { color: #27C48E; font-weight: 700; }
p { margin-bottom: 12px; color: #c3d1e6; }
.text-section p, .text-section li, .card p { color: #c3d1e6; }

/* ------------------ BASIC LAYOUTS ------------------ */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ------------------ HEADER & NAV ------------------ */
header {
  background: #1B2233;
  box-shadow: 0 2px 12px 0 rgba(33,64,154,0.09);
  position: relative;
  z-index: 200;
  min-height: 68px;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 12px 0;
}
.main-nav a {
  color: #F3F6FB;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}
.main-nav a.button-primary {
  background: #27C48E;
  color: #181E2B;
  box-shadow: 0 3px 20px 0 rgba(39,196,142,0.16);
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 22px;
  transition: box-shadow 0.2s, background 0.18s;
}
.main-nav a.button-primary:hover,
.main-nav a.button-primary:focus {
  background: #22A078;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(39,196,142, 0.29);
}
.main-nav a:hover:not(.button-primary),
.main-nav a:focus:not(.button-primary) {
  background: #253777;
  color: #27C48E;
}
.main-nav img {
  height: 40px;
  width: auto;
}
@media (max-width: 990px) {
  .main-nav {
    gap: 12px;
  }
  .main-nav a {
    font-size: 0.97rem;
    padding: 8px 6px;
  }
}
@media (max-width: 800px) {
  .main-nav a.button-primary { padding: 8px 16px; font-size: 0.95rem; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* ------------------ MOBILE MENU ------------------ */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 18px;
  background: none;
  border: none;
  color: #27C48E;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 201;
  border-radius: 20%;
  padding: 3px 10px;
  transition: box-shadow 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #27C48E;
}
@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 320px;
  height: 100vh;
  background: #212948;
  box-shadow: -2px 0 44px 0 rgba(33,64,154,0.17);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.65,.05,.36,1);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 30px 18px 22px 18px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #27C48E;
  font-size: 2.1rem;
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 1003;
  cursor: pointer;
  border-radius: 20%;
  padding: 4px 11px;
  transition: box-shadow 0.19s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(39,196,142,0.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 56px;
}
.mobile-nav a {
  background: none;
  color: #F3F6FB;
  font-size: 1.14rem;
  font-family: var(--font-display), Arial, sans-serif;
  border-radius: 7px;
  padding: 12px 10px;
  transition: background 0.16s, color .16s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #27C48E;
  color: #181E2B;
}
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
}
@media (max-width: 500px) {
  .mobile-menu { max-width: 95vw; padding-left: 10px; padding-right: 10px; }
}

/* -------------- HERO SECTION & CTA BANNERS --------------- */
.section-hero,
.cta-section {
  background: linear-gradient(128deg, #1D2354 58%, #181E2B 100%);
  box-shadow: 0 10px 32px 0 rgba(33,64,154,0.11);
  border-radius: 0 0 30px 30px;
  padding-top: 64px;
  padding-bottom: 58px;
  position: relative;
}
.section-hero h1,
.cta-section h2 { color: #F3F6FB; }
@media (max-width: 768px) {
  .section-hero, .cta-section {
    padding-top: 36px;
    padding-bottom: 30px;
    border-radius: 0 0 16px 16px;
  }
}

/* -------------------- FEATURE GRID ------------------ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 40px 0 10px 0;
  justify-content: space-between;
}
.feature-grid > div {
  background: #222c3c;
  border: 1px solid #23335a;
  border-radius: 14px;
  flex: 1 1 250px;
  min-width: 210px;
  max-width: 310px;
  padding: 24px 20px 16px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 8px 48px 0 var(--color-shadow);
  position: relative;
  transition: border 0.18s, box-shadow 0.22s;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  border: 1.5px solid #27C48E;
  box-shadow: 0 14px 52px 0 rgba(39,196,142, 0.16);
  z-index: 2;
}
.feature-grid img {
  height: 44px;
  margin-bottom: 16px;
  filter: brightness(1.3) drop-shadow(0 0 8px #27C48E60);
}
.feature-grid h3 { color: #27C48E; margin-bottom: 8px; margin-top: 4px; font-size: 1.14rem; font-weight: 600; }
@media (max-width: 900px) {
  .feature-grid { justify-content: flex-start; }
  .feature-grid > div { min-width: 150px; max-width: 100%; }
}
@media (max-width: 768px) {
  .feature-grid { gap: 18px; }
  .feature-grid > div { padding: 18px 12px 14px 12px; }
}
@media (max-width: 600px) {
  .feature-grid { flex-direction: column; gap: 14px; }
  .feature-grid > div { min-width: unset; max-width: 100%; width: 100%; }
}

/* --------------- SECTION, CARD SPACING, PADDING -------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #222c3c;
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 var(--color-shadow);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 42px 0 rgba(33,64,154,0.23);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 20px 18px 20px;
}
.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) {
  .section { margin-bottom: 32px; padding: 28px 6px; }
  .card-container, .content-grid { gap: 14px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ------------------ TESTIMONIALS -------------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #222c3c;
  border-radius: 15px;
  padding: 20px;
  min-width: 240px;
  max-width: 360px;
  flex: 1 1 220px;
  box-shadow: 0 2px 18px 0 rgba(39,196,142, 0.11);
  border: 1.5px solid #c7e4db;
  margin-bottom: 20px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.18s, border 0.19s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border: 2px solid #27C48E;
  box-shadow: 0 8px 36px #27C48E44;
}
.testimonial-card strong {
  color: #21409A;
  font-size: 1.03rem;
  font-weight: 700;
}
.testimonial-card p {
  color: #23335a !important;
  font-style: italic;
}
@media (max-width: 800px) {
  .testimonial-slider { flex-direction: column; gap: 20px; }
  .testimonial-card { max-width: 100%; min-width: unset; }
}

/* -------------- PRICING TABLE / SECTION -------------- */
.pricing-tables {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 34px 0 18px 0;
  justify-content: flex-start;
}
.pricing-tables > div {
  background: #222c3c;
  border: 1.4px solid #23335a;
  border-radius: 15px;
  flex: 1 1 210px;
  min-width: 200px;
  max-width: 330px;
  box-shadow: 0 3px 22px 0 rgba(33,64,154,0.15);
  padding: 28px 22px 18px 22px;
  margin-bottom: 20px;
  text-align: left;
  transition: border 0.16s, box-shadow 0.20s;
}
.pricing-tables > div:hover, .pricing-tables > div:focus-within {
  border: 2px solid #27C48E;
  box-shadow: 0 10px 44px 0 rgba(39,196,142, 0.15);
}
.pricing-tables h3 {
  color: #27C48E;
  margin-bottom: 7px;
  font-size: 1.16rem;
}
.pricing-tables strong { font-size: 1.22rem; color: #F3F6FB; }
@media (max-width: 800px) {
  .pricing-tables { flex-direction: column; gap: 16px; }
  .pricing-tables > div { max-width: 100%; min-width: unset; }
}

/* -------------- FAQ ACCORDION (STATIC) --------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 30px 0 12px 0;
}
.faq-accordion > div {
  background: #222c3c;
  border-radius: 12px;
  border: 1px solid #23335a;
  box-shadow: 0 3px 14px 0 rgba(33,64,154,0.13);
  padding: 20px 18px;
}
.faq-accordion h3 {
  color: #27C48E;
  margin-bottom: 4px;
  font-size: 1.14rem;
}

/* SECTION with lists */
.text-section ul, .feature-item ul {
  margin: 12px 0 14px 0;
}
.text-section li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  color: #c3d1e6;
  font-size: 1rem;
}
.text-section li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #27C48E;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* CASE STUDY HIGHLIGHTS */
.results-highlight {
  background: #27C48E;
  color: #222c3c;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  margin: 24px 0 6px 0;
  font-size: 1.17rem;
  box-shadow: 0 2px 16px 0 #27C48E39;
}

/* -------------- BUTTONS --------------- */
.button-primary, a.button-primary {
  background: #27C48E;
  color: #181E2B;
  font-family: var(--font-display), Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  padding: 13px 30px;
  border: none;
  outline: none;
  box-shadow: 0 3px 20px 0 #27C48E49;
  font-size: 1.09rem;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s, color 0.16s, box-shadow 0.23s, transform 0.17s;
  text-shadow: none;
  display: inline-block;
  margin-top: 8px;
}
.button-primary:hover, .button-primary:focus,
a.button-primary:hover, a.button-primary:focus {
  background: #22A078;
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 24px 0 #27C48E44;
}
.button-secondary {
  background: #21409A;
  color: #fff;
  border-radius: 8px;
  border: none;
  padding: 11px 18px;
  font-size: 1rem;
  font-family: var(--font-display), Arial, sans-serif;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.15s, box-shadow .18s;
}
.button-secondary:hover, .button-secondary:focus {
  background: #223185;
  color: #27C48E;
  box-shadow: 0 3px 18px #21409A50;
}
.button-accent {
  background: #fff;
  color: #21409A;
  border-radius: 7px;
  border: none;
  padding: 9px 18px;
  font-size: 0.98rem;
  font-family: var(--font-body), Arial, sans-serif;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.button-accent:hover, .button-accent:focus {
  background: #27C48E;
  color: #fff;
}

/* -------------- FOOTER --------------- */
footer {
  background: #181E2B;
  border-top: 1.5px solid #23335a;
  color: #B6C3DE;
  font-size: 0.97rem;
  padding-top: 32px;
  padding-bottom: 24px;
  margin-top: 56px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px 48px;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-legal a {
  color: #B6C3DE;
  transition: color 0.15s, background 0.13s;
  padding: 4px 0 4px 4px;
  border-radius: 6px;
  font-size: 0.97rem;
  font-family: var(--font-body), Arial, sans-serif;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #27C48E;
  background: #222c3c;
}
.company-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #B6C3DE;
}
.company-info a { color: #27C48E; }

@media (max-width: 970px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width:600px) {
  footer {
    padding-top: 22px;
    padding-bottom: 14px;
  }
  .footer-nav, .footer-legal { gap: 8px; }
}

/* ----------------- COOKIE BANNER ------------------ */
.cookie-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #191F2A;
  color: #fff;
  padding: 18px 22px;
  z-index: 9999;
  box-shadow: 0 -4px 36px #181E2B55;
  border-top: 2px solid #27C48E;
  font-size: 1.1rem;
  gap: 18px;
  opacity: 1;
  transition: opacity 0.22s, transform 0.27s;
  animation: cookieBannerIn 0.65s;
}
@keyframes cookieBannerIn {
  0% { opacity:0; transform:translateY(25px); }
  100% { opacity:1; transform:translateY(0); }
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  color: #eee;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-banner button {
  min-width: 110px;
  font-weight: bold;
  letter-spacing: 0.01em;
}
.cookie-banner .button-primary,
.cookie-banner .button-secondary,
.cookie-banner .button-accent {
  font-size: 0.96rem;
  padding: 8px 12px;
  margin-top: 0;
  border-radius: 7px;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 8px;
    gap: 10px;
    font-size: 0.94rem;
  }
  .cookie-banner .cookie-buttons { gap:7px; }
}

/* ----------------- COOKIE MODAL ------------------ */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10010;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,30,43, 0.93);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.active { display: flex; }
.cookie-modal {
  background: #232c3c;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 48px #27C48E24;
  max-width: 95vw;
  width: 370px;
  padding: 28px 22px 14px 22px;
  position: relative;
}
.cookie-modal h3 {
  color: #27C48E;
  margin-bottom: 18px;
  font-size: 1.13rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  padding: 7px 0;
}
.cookie-category label {
  font-size: 0.99rem;
  color: #F3F6FB;
}
.cookie-modal .cookie-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.cookie-modal .cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #374266;
  border-radius: 20px;
  transition: background .19s;
}
.cookie-modal .slider:before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #27C48E;
  border-radius: 50%;
  transition: transform .17s;
}
.cookie-modal .cookie-switch input:checked + .slider {
  background: #27C48E;
}
.cookie-modal .cookie-switch input:checked + .slider:before {
  transform: translateX(16px);
  background: #fff;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #27C48E;
  font-size: 1.74rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 7px;
  z-index: 1;
  transition: background 0.1s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: #223185;
}
.cookie-modal .button-primary {
  width: 100%;
  margin-top: 16px;
  padding: 11px 0;
}
.cookie-modal .cookie-modal-desc {
  color: #B6C3DE;
  font-size: 0.97rem;
  margin-bottom: 16px;
}

/* -------------- MISC REUSABLE ------------------ */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 14px;
}

.text-section, .text-image-section {
  margin-bottom: 30px;
}
.text-section h2, .text-section h3 {
  color: #27C48E;
}

/* Utility & Status */
.hide { display: none !important; }
.visible-mobile { display: none; }
@media (max-width: 768px) {
  .visible-mobile { display: block; }
}

/* ----------------- ANIMATIONS/MICRO-INTERACTIONS -------------- */
.button-primary, .button-secondary, .card, .feature-grid > div, .testimonial-card, .pricing-tables > div {
  transition: box-shadow 0.18s, border 0.17s, background 0.16s, color 0.17s, transform 0.15s;
}
.card:hover, .pricing-tables > div:hover, .testimonial-card:hover, .feature-grid > div:hover {
  transform: translateY(-2px) scale(1.012);
}
.card:active, .testimonial-card:active {
  transform: translateY(0) scale(.99);
}

/* --------- RESPONSIVE ADJUSTMENTS ------------ */
@media (max-width:480px) {
  .container { padding: 0 5px; }
  .content-wrapper { padding: 0 2px; }
  .section { padding: 16px 2px; }
}

/*--------------- SCROLLBAR MODERN ---------------*/
::-webkit-scrollbar {width:10px; background:#1B2233;}
::-webkit-scrollbar-thumb {background:#29305e; border-radius:12px;}
::-webkit-scrollbar-thumb:hover {background:#27C48E;}

/* --------------- Forms, Inputs (if present) ---------------- */
input, textarea, select {
  font-family: var(--font-body), Arial, sans-serif;
  font-size:1rem;
  background:#212948;
  color: #F3F6FB;
  border:1.1px solid #23335a;
  border-radius:7px;
  padding:11px 10px;
  margin-bottom:10px;
  outline:none;
  transition: border 0.15s;
  width:100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border:1.5px solid #27C48E;
}

/* ---------------- SHADOWS, BORDERS, EFFECTS -------------- */
.card, .feature-grid > div, .pricing-tables > div, .testimonial-card, .faq-accordion > div {
  box-shadow: 0 4px 24px 0 var(--color-shadow);
}

/* ----------------- NEON ACCENTS ------------------- */
.button-primary,
.feature-grid > div:hover,
.pricing-tables > div:hover,
.card:hover,
.testimonial-card:hover {
  box-shadow: 0 0 0 2.5px #27C48E, 0 0 18px 1px #27C48E44;
}
.feature-grid > div:hover:before {
  content:'';
  position:absolute;
  inset:-4px; border-radius:14px;
  pointer-events:none; z-index:0;
  box-shadow:0 0 24px 3px #27C48E33;
}

/* ----- accessibility: focus outline on buttons/links ---- */
.button-primary:focus,
.button-secondary:focus,
.button-accent:focus,
a:focus {
  outline: 2px solid #27C48E;
  outline-offset: 2px;
}

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