/* 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.4;
  background: #fff;
  color: #24415D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* BRAND COLOR VARIABLES */
:root {
  --primary: #24415D;
  --secondary: #88B7D5;
  --accent: #E1E8ED;
  --white: #fff;
  --text: #24415D;
  --muted: #8CA2B6;
  --shadow: 0 2px 16px rgba(36,65,93,0.07);
  --shadow-hover: 0 4px 24px rgba(36,65,93,0.12);
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* TYPOGRAPHY */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.13rem; }
h5 { font-size: 1rem; }
h6 { font-size: 1rem; }
@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
}
p, li {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.18rem;
  color: var(--muted);
  margin-bottom: 24px;
  margin-top: -6px;
  font-weight: 400;
}
strong, b {
  font-weight: 600;
  color: var(--primary);
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* HEADER + NAVIGATION */
header {
  background: var(--white);
  border-bottom: 1px solid #E6EEF4;
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-family: var(--font-display);
}
.main-nav a {
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-s);
  font-size: 1rem;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.main-nav a:focus,
.main-nav a:hover {
  background: var(--accent);
  color: var(--primary);
}
.main-nav .cta {
  background: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  font-weight: 600;
  border-radius: var(--radius-m);
  margin-left: 12px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.main-nav .cta:hover,
.main-nav .cta:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: var(--shadow-hover);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  padding: 8px 12px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  margin-left: 18px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--white);
}

@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(36,65,93,0.96);
  z-index: 9999;
  transform: translateX(-100vw);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.32s cubic-bezier(.7,0,.2,1), opacity 0.28s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 0 0;
  font-size: 2rem;
  background: none;
  color: var(--white);
  border: none;
  border-radius: var(--radius-s);
  padding: 4px 8px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 2;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
}
.mobile-nav {
  margin: 38px 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 90vw;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.18rem;
  font-family: var(--font-display);
  padding: 10px 8px;
  border-radius: var(--radius-m);
  font-weight: 500;
  transition: background 0.15s, color 0.2s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

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

/* MAIN + SECTIONS BASE LAYOUT */
main {
  min-height: 60vh;
  padding-bottom: 40px;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* HERO STYLES */
.hero {
  background: var(--accent);
  border-radius: 0 0 var(--radius-l) var(--radius-l);
  box-shadow: var(--shadow);
  margin-bottom: 48px;
  padding: 48px 0 52px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 0.5em;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero {
    padding: 70px 0 78px 0;
  }
}

/* FEATURE (WHY US / BENEFITS / CARDS GRID) */
.features {
  background: none;
  margin-bottom: 42px;
}
.features .content-wrapper {
  gap: 28px;
}
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 14px;
}
.feature-grid li, .feature-list li {
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 310px;
  padding: 26px 24px 20px 24px;
  margin-bottom: 20px;
  font-size: 1rem;
  transition: box-shadow 0.22s;
}
.feature-grid li img {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
}
.feature-grid li:hover,
.feature-grid li:focus-within {
  box-shadow: var(--shadow-hover);
}
.features ul {
  gap: 24px;
  margin-bottom: 16px;
}
.features ul li {
  margin-bottom: 0;
}

/* CARDS, SERVICES, & BENEFITS */
.card-container, .benefits-grid, .service-list, .training-list, .team-member-profiles, .article-list-featured, .testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.2s;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 350px;
}
.card:hover,
.card:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.01);
}

.service-list {
  margin-top: 14px;
}
.service-item {
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 310px;
  padding: 26px 24px 24px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.21s, transform 0.15s;
}
.service-item:hover,
.service-item:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.013);
}
.service-price {
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.training-list {
  margin-bottom: 20px;
}
.training-item {
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 300px;
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.training-item:hover,
.training-item:focus-within {
  box-shadow: var(--shadow-hover);
  transform: scale(1.01);
}

.benefits-grid > div {
  background: var(--accent);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 320px;
  margin-bottom: 20px;
}

/* CATEGORY FILTERS */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}
.category-filters > span {
  font-weight: 500;
  color: var(--muted);
}
.category-filters a {
  background: var(--accent);
  padding: 6px 16px;
  border-radius: var(--radius-m);
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}
.category-filters a:hover, .category-filters a:focus {
  background: var(--secondary);
  color: var(--white);
}

/* TESTIMONIALS */
.testimonials {
  background: var(--accent);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
}
.testimonials .content-wrapper { gap: 18px; }
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px 22px 22px;
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  min-width: 260px;
  max-width: 340px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--primary);
  transition: box-shadow 0.21s, background 0.2s;
}
.testimonial-card p {
  color: var(--primary);
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 4px;
}
.testimonial-card strong {
  color: var(--secondary);
  font-size: 0.98rem;
  font-weight: 500;
  margin-top: 2px;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  background: var(--accent);
  box-shadow: var(--shadow-hover);
}

/* CLIENT LOGOS */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  align-items: center;
}
.client-logos img {
  max-height: 36px;
  opacity: 0.84;
  filter: grayscale(25%);
  transition: opacity 0.16s;
}
.client-logos img:hover,
.client-logos img:focus {
  opacity: 1;
  filter: none;
}

/* CONTACT SECTION & BOXES */
.contact .content-wrapper {
  gap: 22px;
  align-items: flex-start;
}
.contact-info-box {
  background: var(--accent);
  border-radius: var(--radius-m);
  padding: 22px 20px 20px 22px;
  line-height: 1.7;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  font-size: 1rem;
}
.contact-info-box a {
  color: var(--primary);
  border-bottom: 1px dotted var(--secondary);
  transition: color 0.12s;
}
.contact-info-box a:hover,
.contact-info-box a:focus {
  color: var(--secondary);
}
.map-location {
  padding: 12px 0;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 10px;
}

/* NEWSLETTER SIGNUP */
.newsletter-signup-box {
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: var(--accent);
  box-shadow: var(--shadow);
  border-radius: var(--radius-m);
  padding: 20px 18px;
  max-width: 380px;
}

/* CARDS / CONTENT-GRID / TEXT-IMAGE-SECTION MANDATORY FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CTA BUTTONS */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 10px 26px;
  font-size: 1rem;
  border-radius: var(--radius-l);
  border: none;
  box-shadow: var(--shadow);
  background: var(--primary);
  color: var(--white);
  transition: background 0.18s, box-shadow 0.22s, color 0.16s;
}
.cta.primary {
  background: var(--primary);
  color: var(--white);
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: var(--shadow-hover);
}
.cta.secondary {
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--secondary);
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: var(--secondary);
  color: var(--white);
}

/* LEGAL / POLICY SECTIONS */
.legal {
  background: var(--accent);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  margin-bottom: 54px;
  padding: 48px 0;
}
.legal h1, .legal h2, .legal h3 {
  color: var(--primary);
}
.legal p, .legal li {
  color: var(--text);
  font-size: 1rem;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 46px 0 24px 0;
  margin-top: 80px;
  border-top: 1.5px solid #d6e2eb09;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.97rem;
}
.footer-brand {
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-brand img {
  height: 34px;
  margin-bottom: 5px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-menu a {
  color: var(--white);
  opacity: .86;
  border-radius: var(--radius-m);
  padding: 5px 14px 5px 0;
  font-weight: 500;
  transition: opacity 0.14s, background 0.14s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  background: var(--secondary);
  color: var(--primary);
  opacity: 1;
}
.footer-contact {
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact a {
  color: var(--secondary);
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 7px;
}
.footer-social a:last-child {
  margin-right: 0;
}
.footer-social img {
  height: 26px;
  width: 26px;
  opacity: 0.85;
  border-radius: var(--radius-m);
  transition: background 0.18s, opacity 0.14s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  background: var(--white);
  opacity: 1;
}

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

/* THANK YOU PAGE */
.confirmation {
  background: var(--accent);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  margin: 40px auto 24px auto;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
}
.confirmation h1 { color: var(--primary); }
.confirmation p { color: var(--text); }

/* MODAL & OVERLAY COMMONS */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(36,65,93,0.32);
  z-index: 11111;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-hover);
  padding: 32px 28px 28px 28px;
  min-width: 300px;
  max-width: 96vw;
  max-height: 88vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .26s cubic-bezier(.7,0,.2,1);
}
.cookie-modal h3 {
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-weight: 500;
  cursor: pointer;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--primary);
  width: 20px;
  height: 20px;
}
/* Cookie toggle: essential always enabled */
.cookie-category.essential label {
  color: var(--muted);
  cursor: default;
}
.cookie-category.essential input[type=checkbox] {
  pointer-events: none;
  accent-color: var(--secondary);
}
.cookie-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 -2px 20px 0 rgba(36,65,93,0.12);
  width: 100vw;
  z-index: 11110;
  padding: 22px 16px 20px 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(.9,0,.2,1);
}
.cookie-consent-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 200px;
  color: var(--white);
  opacity: 0.98;
  margin-right: 16px;
}
.cookie-consent-banner .cookie-btn {
  border-radius: var(--radius-m);
  border: none;
  padding: 8px 18px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin-right: 7px;
  background: var(--secondary);
  color: var(--primary);
  box-shadow: var(--shadow);
  transition: background 0.18s, color 0.15s, box-shadow 0.15s;
}
.cookie-consent-banner .cookie-btn:last-child {
  margin-right: 0;
}
.cookie-consent-banner .cookie-btn:hover,
.cookie-consent-banner .cookie-btn:focus {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-hover);
}
.cookie-consent-banner .cookie-btn.primary {
  background: var(--primary);
  color: var(--white);
  border: 1.5px solid var(--secondary);
}
.cookie-consent-banner .cookie-btn.primary:hover,
.cookie-consent-banner .cookie-btn.primary:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    padding: 18px 8px 18px 8px;
    text-align: center;
    gap: 12px;
  }
  .cookie-consent-banner .cookie-text {
    margin-right: 0;
    margin-bottom: 7px;
  }
}

/* RESPONSIVE FLEX PATTERNS & MOBILE LAYOUTS */
@media (max-width: 1100px) {
  .card-container, .benefits-grid, .service-list, .training-list, .team-member-profiles, .article-list-featured, .testimonial-row {
    flex-wrap: wrap;
    gap: 20px;
  }
  .feature-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 800px) {
  .feature-grid li, .service-item, .benefits-grid > div, .training-item {
    flex: 1 1 100%;
    min-width: 190px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .hero, .legal, .confirmation {
    padding: 36px 0;
  }
  main {
    padding-bottom: 20px;
  }
  section, .section {
    padding: 26px 5px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .card-container, .benefits-grid, .service-list, .training-list, .team-member-profiles, .article-list-featured, .testimonial-row {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid, .feature-list {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 6px;
  }
  .card, .feature-grid li, .benefits-grid > div, .service-item, .training-item {
    min-width: 95%;
    max-width: 100%;
  }
  .testimonial-row {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-brand, .footer-contact, .footer-menu, .footer-social {
    align-items: flex-start !important;
    padding-left: 0 !important;
  }
}

/* TABLES (for privacy/policy if needed) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
th, td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--accent);
  text-align: left;
  font-size: 1rem;
}
th {
  background: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
}

/* ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  .cta, .service-item, .testimonial-card, .feature-grid li, .training-item {
    transition: box-shadow .21s,transform .18s,background .18s;
  }
  .mobile-menu, .cookie-consent-banner, .modal-overlay {
    transition: transform 0.33s cubic-bezier(.75,0,.22,1), opacity 0.27s;
  }
}

/* GENERAL MICRO-INTERACTIONS */
.cta:active {
  transform: scale(0.98);
}
.service-item:active, .testimonial-card:active, .feature-grid li:active {
  transform: scale(0.99);
}

/* UTILITIES */
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mt-2 { margin-top: 16px !important; }
.text-center { text-align: center; }

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

/* HIDE ELEMENTS UTILITY */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}
