/* RESET & BASE STYLES ========================================== */
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 { box-sizing: border-box; }
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F4F7FA;
  color: #232a3e;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #27344B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB100;
  outline: none;
}
strong {
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* TYPOGRAPHY ========================================= */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 800;
  color: #27344B;
  letter-spacing: -1px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #27344B;
  margin-bottom: 8px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #27344B;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
p, ul, ol, li {
  color: #232a3e;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5em;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(39,52,75,0.07);
  overflow: hidden;
}
thead tr {
  background: #FFB100;
}
th, td {
  padding: 14px 10px;
  text-align: left;
  font-size: 1rem;
}
th {
  color: #27344B;
  font-family: 'Montserrat', Arial, sans-serif;
}
tbody tr:nth-child(even) {
  background: #f2f2f5;
}
tbody tr:nth-child(odd) {
  background: #fff;
}

ul, ol {
  padding-left: 22px;
  margin-bottom: 0.5em;
}
ul li, ol li {
  margin-bottom: 8px;
  position: relative;
}
ul li:before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  background: #FFB100;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  top: 2px;
}

/* PLAYFUL DYNAMIC BUTTONS =================== */
.primary-cta {
  background: #FFB100;
  color: #27344B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 15px 32px;
  border: none;
  border-radius: 28px;
  font-size: 1.13rem;
  box-shadow: 0 2px 12px 0 rgba(255,177,0,0.13);
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.22s, color 0.18s, box-shadow 0.22s, transform 0.19s;
  outline: none;
  position: relative;
  z-index: 1;
}
.primary-cta:hover, .primary-cta:focus {
  background: #27344B;
  color: #FFB100;
  box-shadow: 0 4px 18px 0 rgba(39,52,75,0.18);
  transform: scale(1.08) rotate(-2deg);
  text-shadow: 0 2px 10px #FFB10033;
}

/* NAVIGATION ======================================= */
header {
  background: #fff;
  border-bottom: 3px solid #FFB100;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 28px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 18px;
  transition: background 0.18s, color 0.16s, transform 0.13s;
  font-weight: 500;
  color: #27344B;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFB100;
  color: #27344B;
  transform: scale(1.09) rotate(-2deg);
}
.main-nav .primary-cta {
  margin-left: 16px;
}

/* MOBILE NAVIGATION ================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 201;
  font-size: 2.2rem;
  color: #FFB100;
  background: #fff;
  border: 2px solid #FFB100;
  padding: 6px 16px 4px 16px;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 #ffb10025;
  transition: background 0.2s, border 0.18s, color 0.2s;
}
.mobile-menu-toggle:active {
  background: #FFB100;
  color: #27344B;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  z-index: 300;
  transform: translateX(-104vw);
  transition: transform 0.38s cubic-bezier(0.67,0,0.36,1);
  padding: 18px 24px 24px 24px;
  box-shadow: 2px 0 34px 0 #ffb1001c;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #27344B;
  cursor: pointer;
  margin-bottom: 36px;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFB100;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  border-radius: 18px;
  padding: 12px 8px;
  color: #27344B;
  transition: background 0.18s, color 0.16s, transform 0.13s;
  min-width: 140px;
}
.mobile-nav a:hover, .mobile-nav a:active, .mobile-nav a:focus {
  background: #FFB100;
  color: #27344B;
  transform: scale(1.07);
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO ============================================= */
.hero {
  background: #FFB100;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
  padding: 50px 0 40px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero h1 {
  color: #27344B;
  font-size: 2.7rem;
}
.hero p {
  font-size: 1.18rem;
  color: #293560;
  margin-bottom: 20px;
  margin-top: 6px;
}
.hero .primary-cta {
  font-size: 1.22rem;
  background: #27344B;
  color: #FFB100;
}
.hero .primary-cta:hover, .hero .primary-cta:focus {
  background: #232a3e;
  color: #ffd740;
}

/* SECTION SPACING & FLEXBOX LAYOUTS ================ */
.section,
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container,
.feature-grid,
.service-cards,
.card-grid,
.blog-post-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-cards > div, .feature-grid > div, .blog-post-previews > article {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 #27344b0d;
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  flex: 1 1 280px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover, .service-cards > div:hover, .feature-grid > div:hover, .blog-post-previews > article:hover {
  box-shadow: 0 8px 28px 0 #FFB10033;
  transform: translateY(-6px) scale(1.03) rotate(-2deg);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #27344B;
  margin-bottom: 28px;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 #27344b10;
  min-width: 220px;
  max-width: 470px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 #FFB1004d;
  transform: scale(1.02) rotate(-1.3deg);
  background: #FFFBEC;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #232a3e;
}
.testimonial-card .rating {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}
.customer-name {
  margin-top: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FFB100;
  letter-spacing: 0.5px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CTA SECTION ===================================== */
.cta {
  background: #27344B;
  color: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 42px 0 #27344b15;
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 24px 36px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .primary-cta {
  background: #FFB100;
  color: #27344B;
}
.cta .primary-cta:hover {
  background: #fff;
  color: #27344B;
}

/* BLOG CATEGORIES FILTER ============================ */
.categories-filter {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  margin-bottom: 18px;
  color: #27344B;
  display: flex;
  align-items: center;
  gap: 10px;
}
.categories-filter strong { color: #FFB100; }
.categories-filter a {
  padding: 4px 12px;
  border-radius: 12px;
  background: #fffbe6;
  color: #27344B;
  font-weight: 600;
  transition: background 0.19s, color 0.13s;
}
.categories-filter a:hover {
  background: #FFB100;
  color: #fff;
}

/* BLOG POSTS PREVIEW ================================ */
.blog-post-previews {
  gap: 24px;
}
.blog-post-previews article {
  min-width: 220px;
  flex: 1 1 320px;
}
.blog-post-previews h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-post-previews p {
  margin-bottom: 8px;
}
.blog-post-previews span {
  color: #FFB100;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.blog-post-previews a {
  color: #27344B;
  font-weight: 600;
  transition: color 0.18s;
}
.blog-post-previews a:hover {
  color: #FFB100;
}

/* FAQ ================================ */
.faq-accordion > div {
  background: #fffbe6;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 22px 20px 18px 20px;
  box-shadow: 0 1px 8px #ffb1001a;
  transition: box-shadow 0.15s, background 0.18s;
  cursor: pointer;
}
.faq-accordion > div:hover {
  background: #fff5cc;
  box-shadow: 0 4px 16px #FFB10022;
}
.faq-accordion h3 {
  font-size: 1.13rem;
  color: #27344B;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-accordion .text-section {
  font-size: 1.01rem;
  margin-top: 6px;
}

.contact-prompt {
  background: #FFFBEC;
  border-radius: 18px;
  padding: 22px 18px;
  margin-top: 20px;
  box-shadow: 0 1px 8px #ffb1001a;
  font-size: 1.08rem;
}
.contact-prompt a {
  color: #FFB100;
  font-weight: 700;
}
.contact-prompt a:hover {
  text-decoration: underline;
}

/* FOOTER ======================================== */
footer {
  background: #27344B;
  color: #fff;
  padding: 36px 0 16px 0;
  border-top: 4px solid #FFB100;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.16rem;
  color: #FFB100;
}
.footer-links, .footer-contact, .footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 6px 10px;
  border-radius: 8px;
  background: transparent;
  transition: background .17s, color .12s;
}
.footer-links a:hover {
  background: #FFB100;
  color: #27344B;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social a {
  display: flex;
  align-items: center;
  height: 36px;
  width: 36px;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 1px 6px #ffb1001a;
  transition: background .16s, transform .13s;
}
.footer-social a:hover {
  background: #FFB100;
  transform: scale(1.14);
}
.legal-disclaimer {
  color: #FFB100;
  font-size: 0.93rem;
  margin-top: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* COOKIE CONSENT BANNER ======================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFB100;
  color: #27344B;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  padding: 16px 18px 12px 18px;
  box-shadow: 0 -6px 22px #27344b1e;
  font-size: 1.02rem;
  animation: cookieBannerSlideIn 0.6s cubic-bezier(0.5,1,0.5,1.1);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 6px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 21px;
  border-radius: 22px;
  border: none;
  font-size: 1.06rem;
  font-weight: 700;
  margin: 0 4px;
  cursor: pointer;
  transition: background .16s, color .13s, transform .13s;
}
.cookie-banner .accept {
  background: #27344B;
  color: #FFB100;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #27344B;
}
.cookie-banner .reject {
  background: #fff;
  color: #27344B;
  border: 2px solid #27344B;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFB100;
  color: #27344B;
  border-color: #27344B;
}
.cookie-banner .settings {
  background: #fffbe6;
  color: #27344B;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fff;
  color: #FFB100;
}

/* COOKIE MODAL =========================================== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(39,52,75, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieOverlayFade 0.44s;
}
@keyframes cookieOverlayFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 42px 0 #27344b1a;
  padding: 36px 30px 28px 30px;
  min-width: 320px;
  max-width: 90vw;
  max-height: 92vh;
  overflow-y: auto;
  color: #27344B;
  animation: cookieModalPop 0.4s cubic-bezier(0.5,1,0.6,1.2);
}
@keyframes cookieModalPop {
  from { transform: scale(0.92) translateY(28px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFB100;
  margin-bottom: 20px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 16px 0 8px 0;
}
.cookie-category {
  background: #F4F7FA;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.02rem;
}
.cookie-category.essential {
  background: #FFFBEC;
}
.cookie-category label {
  font-weight: 600;
  flex: 1 1 110px;
}
.cookie-toggle {
  margin-left: 8px;
  min-width: 52px;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 47px;
  height: 26px;
  margin-left: 8px;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #d9d9d9;
  border-radius: 22px;
  transition: background 0.17s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #FFB100;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 19px; width: 19px;
  left: 4px; bottom: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 1px 2px 8px #27344b11;
  transition: transform 0.23s, background 0.14s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
  background: #27344B;
}
.cookie-modal-actions {
  display: flex;
  gap: 22px;
  margin-top: 26px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 28px;
  border-radius: 22px;
  border: none;
  font-size: 1.09rem;
  font-weight: 700;
  background: #FFB100;
  color: #27344B;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, transform 0.15s;
}
.cookie-modal-actions button.save:hover {
  background: #27344B;
  color: #FFB100;
}
.cookie-modal-actions .cancel {
  background: #fff;
  color: #27344B;
  border: 2px solid #27344B;
}
.cookie-modal-actions .cancel:hover {
  background: #FFB100;
  color: #27344B;
}

/* ANIMATIONS ====================================== */
@keyframes bounceIn {
  0% { transform: scale(0.98) translateY(80px); opacity: 0.3; }
  75% { transform: scale(1.04) translateY(-10px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.card, .service-cards > div, .feature-grid > div, .blog-post-previews > article, .testimonial-card {
  animation: bounceIn 0.7s cubic-bezier(.18,.89,.44,1) both;
}
.card:nth-child(2), .service-cards > div:nth-child(2), .feature-grid > div:nth-child(2), .testimonial-card:nth-child(2) {
  animation-delay: 0.13s;
}
.card:nth-child(3), .service-cards > div:nth-child(3), .feature-grid > div:nth-child(3), .testimonial-card:nth-child(3) {
  animation-delay: 0.19s;
}
.card:nth-child(4), .service-cards > div:nth-child(4), .feature-grid > div:nth-child(4), .testimonial-card:nth-child(4) {
  animation-delay: 0.26s;
}

/* RESPONSIVE BREAKPOINTS ========================== */
@media (max-width: 1023px) {
  .container { max-width: 95vw; }
  .main-nav {
    display: none;
  }
  .content-wrapper,
  .card-container,
  .feature-grid,
  .service-cards,
  .card-grid,
  .blog-post-previews,
  .footer-links,
  .footer-contact
  {
    flex-direction: column;
    gap: 24px !important;
    align-items: flex-start !important;
  }
  .card, .service-cards > div, .feature-grid > div, .blog-post-previews > article {
    min-width: unset;
    flex: 1 1 100%;
  }
  .footer-social {
    flex-direction: row;
    align-items: center;
    margin-bottom: 14px;
  }
  .footer-branding { margin-bottom: 14px; }
  table { font-size: 0.96rem; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 10px;
    min-height: 62px;
  }
  .main-nav {
    display: none;
  }
  .hero {
    padding: 30px 0;
  }
  .hero .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section, main section {
    margin-bottom: 32px;
    padding: 26px 4px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: center;
    gap: 18px;
  }
  .card-container, .feature-grid, .service-cards, .card-grid, .blog-post-previews {
    flex-direction: column;
    gap: 18px !important;
    align-items: stretch !important;
  }
  .card, .service-cards > div, .feature-grid > div, .blog-post-previews > article {
    min-width: unset;
    flex: 1 1 100%;
    padding: 18px 10px;
  }
  .testimonial-card {
    max-width: 98vw;
  }
  .cta {
    padding: 24px 6px 20px 6px;
    margin-bottom: 34px;
  }
  .footer-links, .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-social {
    margin-bottom: 9px;
  }
  .blog-post-previews {
    gap: 12px !important;
  }
  .categories-filter {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
}

@media (max-width: 500px) {
  h1, .hero h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  .hero p {
    font-size: 0.97rem;
  }
  header .container {
    min-height: 48px;
    gap: 6px;
  }
  .footer-branding span {
    font-size: 1rem;
  }
}

/* UTILITY ====================== */
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto; width: 1px; height: 1px;
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  background: #FFB10077;
  border-radius: 24px;
}
::-webkit-scrollbar-track {
  background: #F4F7FA;
  border-radius: 24px;
}

/* Custom playful/dynamic touches! */
h1, h2, h3, .primary-cta, .main-nav a, .mobile-nav a {
  letter-spacing: 0.5px;
}
.primary-cta:after {
  content: " ➜";
  font-size: 1em;
  color: #27344B;
  transition: transform 0.21s;
  display: inline-block;
  vertical-align: middle;
}
.primary-cta:hover:after, .primary-cta:focus:after {
  transform: translateX(6px) scale(1.22) rotate(-6deg);
  color: #FFB100;
}
.card:before, .feature-grid > div:before, .service-cards > div:before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  width: 38px; height: 38px;
  background: #FFB10044;
  border-radius: 50%;
  z-index: 0;
  filter: blur(1px);
  opacity: 0.22;
  pointer-events: none;
}
.card:hover:before, .feature-grid > div:hover:before, .service-cards > div:hover:before {
  background: #FFB100;
  opacity: 0.12;
  filter: blur(2px);
}

/* REMOVE OUTLINE FOR MOUSE, KEEP FOR TAB */
*:focus:not(:focus-visible) {
  outline: none;
}
*:focus-visible {
  outline: 3px solid #FFB100;
  outline-offset: 2px;
}
