/* =======================
   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;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #F5F6FA;
  color: #223162;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: none;
  color: inherit;
  border: none;
  outline: none;
}
a {
  color: #21B091;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #339c82;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  padding-left: 1.1em;
}
ul > li, ol > li {
  margin-bottom: 8px;
}
::selection {
  background: #FFEFDB;
  color: #223162;
}

/* ===================
   ROOT VARIABLES
   =================== */
:root {
  --color-primary: #223162;
  --color-secondary: #21B091;
  --color-accent: #F5F6FA;
  --color-warm1: #ffe6cc;
  --color-warm2: #ffd8aa;
  --color-warm3: #fff5ec;
  --color-footer-bg: #223162;
  --color-footer-text: #fff;
  --color-btn-bg: #21B091;
  --color-btn-bg-hover: #189b7a;
  --color-btn-text: #fff;
  --color-nav-link: #223162;
  --color-nav-link-active: #21B091;
  --color-shadow: rgba(34,49,98,0.08);
  --color-shadow-strong: rgba(34,49,98,0.16);

  --font-display: 'Montserrat', 'Open Sans', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* =============================
   TYPOGRAPHY & HEADINGS
   ============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.625rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-primary);
}
p {
  margin-bottom: 18px;
}
strong {
  color: var(--color-secondary);
  font-weight: 700;
}

/* ==============================
   CONTAINER & LAYOUT UTILITY
   ============================== */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
}

.accent-bg {
  background: var(--color-accent);
}

/* ============= NAVIGATION ============= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px var(--color-shadow);
  z-index: 100;
  position: relative;
  min-height: 64px;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: var(--color-nav-link);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s;
  font-size: 1rem;
}
.main-nav a.cta-btn {
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-weight: 700;
  border-radius: 22px;
  padding: 10px 26px;
  box-shadow: 0 1px 6px var(--color-shadow);
  transition: background 0.18s, box-shadow 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-warm1);
  color: var(--color-nav-link-active);
  text-decoration: none;
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: var(--color-btn-bg-hover);
  color: #fff;
  box-shadow: 0 5px 16px var(--color-shadow-strong);
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-btn-bg);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  border: none;
  border-radius: 12px;
  padding: 5px 12px;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow 0.18s;
  z-index: 110;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-btn-bg-hover);
}

/* =============== MOBILE NAVIGATION =============== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 18px var(--color-shadow-strong);
  z-index: 1010;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  padding: 32px 24px 24px 24px;
  will-change: transform;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-warm1);
  color: var(--color-primary);
  font-size: 2rem;
  border-radius: 10px;
  padding: 5px 12px;
  border: none;
  cursor: pointer;
  margin-bottom: 26px;
  align-self: flex-end;
  transition: background .2s;
}
.mobile-menu-close:focus,.mobile-menu-close:hover {
  background: var(--color-warm2);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 14px;
  transition: background .17s, color .15s;
  font-size: 1.1rem;
  z-index: 1012;
}
.mobile-nav a.cta-btn {
  background: var(--color-btn-bg);
  color: #fff;
  font-weight: 700;
  border-radius: 22px;
  margin-top: 15px;
  padding: 12px 28px;
  box-shadow: 0 1px 8px var(--color-shadow);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-warm1);
  color: var(--color-secondary);
}
.mobile-nav a.cta-btn:hover, .mobile-nav a.cta-btn:focus {
  background: var(--color-btn-bg-hover);
}

/* =============== HERO & CTA =============== */
.hero, .cta, .thankyou {
  padding: 60px 0 60px 0;
  background: #fff;
  border-radius: 28px;
  margin-bottom: 60px;
  box-shadow: 0 4px 24px var(--color-shadow);
  display: flex;
  align-items: center;
}
.hero.accent-bg, .cta.accent-bg, .thankyou.accent-bg {
  background: var(--color-accent);
  box-shadow: 0 4px 20px var(--color-shadow);
}
.hero .content-wrapper, .cta .content-wrapper, .thankyou .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.hero h1, .cta h2, .thankyou h1 {
  color: var(--color-primary);
  font-size: 2.625rem;
  margin-bottom: 10px;
}
.hero p, .cta p, .thankyou p {
  color: var(--color-primary);
  font-size: 1.16rem;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

/* ============ FEATURES/VALUES/SERVICE-GRID ============ */
.features, .values-grid, .feature-grid, .service-cards, .service-list, .service-grid {
  width: 100%;
}
.features .content-wrapper, .service-cards, .service-list, .values-grid, .feature-grid {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.values-grid > div, .feature-grid > div, .service-cards > div, .service-list > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--color-shadow);
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 320px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.values-grid > div:hover, .feature-grid > div:hover, .service-cards > div:hover, .service-list > div:hover {
  box-shadow: 0 6px 30px var(--color-shadow-strong);
  transform: translateY(-4px) scale(1.015);
}
.values-grid img, .feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.features ul, .features li, .feature-item {
  margin: 0;
  padding: 0;
  list-style: disc;
  color: var(--color-primary);
  font-size: 1rem;
}
.features ul {
  padding-left: 1.2em;
  margin-bottom: 12px;
}
.features li {
  margin-bottom: 10px;
}

/* ==== ABOUT/TEXT-SECTION & LISTS ===== */
.text-section {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}
.text-section ul, .services ul, .faq ul {
  list-style: disc inside;
  padding-left: 1.4em;
}
.text-section ul li {
  margin-bottom: 7px;
  font-size: 1rem;
}

.map-location {
  background: var(--color-warm3);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 1rem;
  color: var(--color-primary);
  margin-top: 18px;
}

/* ============ CARD & LIST CONTAINERS ============ */
.card-container, .service-cards, .service-list, .feature-grid, .values-grid, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card {
  margin-bottom: 20px;
  position: relative; /* for decorative pseudo-elements only */
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 7px 32px var(--color-shadow-strong);
  transform: translateY(-6px) scale(1.02);
}

/* ============ TESTIMONIALS ============ */
.testimonials .testimonial-list {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 26px;
  min-width: 270px;
  max-width: 370px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px var(--color-shadow-strong);
  color: var(--color-primary);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 40px var(--color-shadow-strong);
  transform: scale(1.018);
}
.testimonial-card p {
  color: #223162;
  font-size: 1.07rem;
  font-family: var(--font-body);
  margin-bottom: 10px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #777;
}
.testimonial-stars {
  font-size: 1.18rem;
  color: #ffc090;
  letter-spacing: 1px;
  user-select: none;
  line-height: 1;
}

/* ============ FOOTER ============ */
footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 44px 0 0 0;
  margin-top: 60px;
  font-size: 1rem;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -2px 12px var(--color-shadow);
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.footer-logo {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-logo img {
  width: 54px;
  height: 54px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 180px;
}
.footer-links a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 0;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.footer-links a:hover, .footer-links a:focus {
  background: var(--color-secondary);
  color: #223162;
}
.footer-contact {
  min-width: 220px;
  font-size: 1rem;
  color: #fff;
  margin-top: 0;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  font-family: var(--font-body);
}
.legal-info {
  text-align: right;
  color: #dbe1f0;
  font-size: 0.95rem;
  padding: 6px 0 18px 0;
}

/* ======================
   BUTTONS
   ====================== */
.cta-btn, .btn, button, input[type="submit"] {
  display: inline-block;
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 32px;
  font-size: 1.06rem;
  border: none;
  border-radius: 22px;
  box-shadow: 0 2px 10px var(--color-shadow);
  cursor: pointer;
  transition: background .18s, box-shadow .18s, transform .15s;
  text-align: center;
  margin-top: 18px;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus, .btn:hover, .btn:focus, button:hover, button:focus {
  background: var(--color-btn-bg-hover);
  color: #fff;
  box-shadow: 0 8px 32px var(--color-shadow-strong);
  transform: translateY(-2px) scale(1.01);
}

/* ============= CARDS ============= */
.card-content, .feature-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.card-content h3, .feature-item h3 {
  font-size: 1.10rem;
}
.card-content p, .feature-item p {
  font-size: 0.97rem;
}

/* =====================
   FORM/ELEMENTS/INFOBOX
   ===================== */
.info-box {
  background: var(--color-warm3);
  border-radius: 16px;
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 22px 24px;
  margin-bottom: 18px;
  font-size: 1.03rem;
}
input, textarea, select {
  background: #fff;
  color: #223162;
  border: 1px solid #dbe1f0;
  border-radius: 12px;
  padding: 11px 13px;
  margin-bottom: 16px;
  font-size: 1rem;
  transition: border-color .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
}

/* ============== FAQ, LEGAL, AND SPECIAL SECTION =============== */
.legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 24px;
  box-shadow: 0 2px 10px var(--color-shadow);
}
.faq .text-section p {
  margin-bottom: 18px;
  font-size: 1rem;
}
.faq .text-section a {
  color: var(--color-secondary);
}

/* ============== SPACING & FLEX UTILITY ============== */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.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; } /* padding overwritten by other testimonial style but for specificity */
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3000;
  background: var(--color-warm1);
  color: #223162;
  box-shadow: 0 -4px 18px var(--color-shadow-strong);
  padding: 20px 24px;
  border-radius: 18px 18px 0 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 11px;
  transition: transform .34s cubic-bezier(.77,0,.18,1);
  transform: translateY(0);
  font-size: 1.01rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner p {
  margin-bottom: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.cookie-banner button {
  background: var(--color-btn-bg);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 9px 25px;
  border-radius: 19px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin: 0;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background .15s, box-shadow .15s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-btn-bg-hover);
}
.cookie-banner .settings-btn {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-btn-bg);
}
.cookie-banner .settings-btn:hover {
  background: var(--color-warm1);
  color: var(--color-secondary);
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-modal {
  position: fixed;
  z-index: 3100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,49,98,0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity .32s, visibility .32s;
}
.cookie-modal.hide {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.cookie-modal-content {
  background: #fff;
  color: #223162;
  border-radius: 20px;
  padding: 32px 26px 18px 26px;
  max-width: 360px;
  min-width: 260px;
  box-shadow: 0 8px 44px var(--color-shadow-strong);
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.39rem;
  margin-bottom: 13px;
}
.cookie-modal-content .close-cookie-modal {
  position: absolute;
  top: 14px;
  right: 15px;
  background: #f3e8df;
  color: #223162;
  border-radius: 12px;
  border: none;
  font-size: 1.3rem;
  padding: 3px 12px;
  cursor: pointer;
  transition: background .15s;
}
.cookie-modal-content .close-cookie-modal:hover, .cookie-modal-content .close-cookie-modal:focus {
  background: #ffd8aa;
}
.cookie-modal-content .cookie-category {
  margin: 19px 0 13px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-modal-content .cookie-category label {
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
}
.cookie-modal-content .cookie-category input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.cookie-modal-content .cookie-category input[disabled] {
  opacity: 0.7;
}
.cookie-modal-content .cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal-content button {
  background: var(--color-btn-bg);
  color: #fff;
  border-radius: 17px;
  border: none;
  padding: 8px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 7px var(--color-shadow);
  transition: background .15s;
  font-size: 1rem;
}
.cookie-modal-content button.secondary {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-btn-bg);
}
.cookie-modal-content button.secondary:hover, .cookie-modal-content button.secondary:focus {
  background: var(--color-warm1);
  color: var(--color-secondary);
}
.cookie-modal-content button:hover, .cookie-modal-content button:focus {
  background: var(--color-btn-bg-hover);
}

/* ===================
   MEDIA QUERIES
   =================== */
@media (max-width: 1023px) {
  .container {
    max-width: 96vw;
    padding-left: 10px; padding-right: 10px;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}
@media (max-width: 900px) {
  .nav-container {
    gap: 10px;
  }
  .main-nav {
    gap: 12px;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.07rem; }
  h2 { font-size: 1.45rem; }
  .hero, .cta, .thankyou {
    padding: 38px 0;
    border-radius: 16px;
  }
  .section, .legal {
    padding: 24px 6px;
    border-radius: 12px;
  }
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
  .footer-contact { min-width: unset; font-size: 0.99rem; }
  .content-wrapper { padding-left: 5px; padding-right: 5px; }
}
@media (max-width: 650px) {
  .container { max-width: 99vw; padding-left: 2px; padding-right: 2px; }
  .content-wrapper { max-width: unset; }
  .footer-logo img { width: 38px; height: 38px; }
}
@media (max-width: 600px) {
  .hero h1,
  .thankyou h1,
  .cta h2 { font-size: 1.17rem; }
  .footer-wrapper, .footer-links { gap: 9px; }
  .footer-logo { flex: 0 0 50px; }
  .testimonial-card {
    padding: 17px 10px; max-width: none; min-width: 72vw;
  }
  .service-cards > div, .feature-grid > div, .values-grid > div {
    min-width: unset; max-width: unset; padding: 15px 8px;
  }
  .card { padding: 13px 7px; }
  .info-box { padding: 12px 6px; }
}
@media (max-width: 500px) {
  .mobile-menu { max-width: 99vw; padding: 16px 7px 7px 10px; }
  .mobile-menu-close { font-size: 1.8rem; padding: 3px 8px; }
  .footer-logo img { width: 28px; height: 28px; }
}

/* FLEX DIRECTION ADJUSTMENTS FOR RESPONSIVENESS */
@media (max-width: 800px) {
  .features .content-wrapper, .service-cards, .service-list, .feature-grid, .values-grid {
    flex-direction: column !important;
    gap: 14px !important;
    align-items: stretch !important;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 18px !important;
  }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column !important; align-items: stretch !important; gap: 15px !important;}
}

/* COOKIE BANNER MOBILE */
@media (max-width: 520px) {
  .cookie-banner { padding: 15px 5px; font-size: 0.97rem; }
  .cookie-banner .cookie-btns { gap: 9px; }
  .cookie-modal-content { padding: 16px 6px; min-width: 170px; max-width: 96vw; }
}

/* ========== ANIMATIONS & MICRO-INTERACTIONS =========== */
.cta-btn, .btn, button, input[type='submit'] {
  transition: background .17s, box-shadow .17s, transform .09s;
}
.card, .testimonial-card, .footer-links a {
  transition: box-shadow 0.18s, transform 0.18s, background .14s, color .12s;
}
.card:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* === FOCUS VISIBLE ==== */
a:focus, button:focus, .cta-btn:focus, .btn:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ======= UTILITY CLASSES ======= */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 32px !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ======= Hide elements visually but keep them accessible ======= */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

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