/* --- 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.4;
  font-family: 'Roboto', Arial, sans-serif;
  color: #223144;
  background: #F3F1ED;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #7A1126;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover:not(.cta-btn) {
  color: #EF476F;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
}

/* --- BRAND COLOR PALETTE & CONST ------------------ */
:root {
  --clr-primary: #7A1126;
  --clr-secondary: #223144;
  --clr-accent: #F3F1ED;
  --clr-contrast: #FFBA08;
  --clr-bright: #EF476F;
  --clr-green: #26D08D;
  --clr-blue: #3BBEF4;
  --clr-dark: #16141A;
  --card-shadow: 0 5px 18px rgba(122, 17, 38, 0.09), 0 1.5px 7px 1px rgba(34, 49, 68, 0.07);
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 7px;
}

/* --- Layout Containers & Responsive Padding -------- */
.container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1250px;
  width: 100%;
  padding: 0 20px;
}

/* --- Typography ---------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--clr-primary);
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--clr-secondary);
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: var(--clr-primary);
}
.subheadline {
  font-size: 1.22rem;
  color: var(--clr-secondary);
  margin-bottom: 18px;
  font-weight: 500;
}
p {
  color: #2D3345;
  margin-bottom: 18px;
  font-size: 1rem;
}
.text-section,
.content-wrapper > .text-section {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--clr-secondary);
}

/* display playful/dynamic font for numbers & big headings */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* --- Spacing & Section Layouts -------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--radius-lg);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  padding: 26px 24px;
  transition: box-shadow 0.22s, transform 0.22s;
  min-width: 260px;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(122, 17, 38, 0.15);
  transform: translateY(-3px) scale(1.03) rotate(-1deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
.features-grid > div {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  padding: 26px 24px;
  flex: 1 1 250px;
  min-width: 240px;
  max-width: 330px;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.features-grid > div:hover {
  box-shadow: 0 10px 34px rgba(122,17,38,0.18);
  transform: translateY(-6px) scale(1.02) rotate(1.5deg);
}
.features-grid img {
  width: 49px;
  height: 49px;
  margin-bottom: 12px;
  filter: drop-shadow(0 5px 10px #EF476F33);
  animation: bounceFade 1.5s ease-in-out infinite alternate;
}
@keyframes bounceFade {
  0% { transform: translateY(0) scale(1); filter: brightness(1); }
  100% { transform: translateY(-6px) scale(1.045); filter: brightness(1.04); }
}

/* --- BUTTONS & CTAs ---------------------------------- */
.cta-btn {
  background: linear-gradient(90deg, #EF476F 0%, #FFBA08 100%);
  box-shadow: 0 3px 12px #EF476F22;
  color: #fff;
  padding: 16px 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 10px;
  letter-spacing: 0.2px;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FFBA08 0%, #EF476F 100%);
  color: #fff;
  transform: scale(1.035) rotate(-1.5deg);
  box-shadow: 0 7px 22px #7A112655;
}

button,
.mobile-menu-toggle,
.mobile-menu-close {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  background: var(--clr-primary);
  color: #fff;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.12s;
  font-size: 1.15rem;
  padding: 0.45em 1.1em;
  box-shadow: 0 2px 8px #7A112629;
  margin: 0 5px;
}
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--clr-primary);
  font-size: 2.1rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 9px #F3F1ED58;
  margin-left: 20px;
  transition: background 0.2s, color 0.18s, box-shadow 0.2s;
}
.mobile-menu-toggle:active {
  background: var(--clr-bright);
  color: #fff;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  color: var(--clr-bright);
  border: none;
  box-shadow: none;
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 1202;
}
.mobile-menu-close:hover {
  color: var(--clr-primary);
}

/* --- HEADER ---------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 4px 17px 0 #7A112605;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img {
  height: 49px;
  margin-right: 34px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--clr-secondary);
  font-size: 1.04rem;
  font-weight: 600;
  padding: 9px 12px 9px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.16s, color 0.19s;
  margin-right: 2px;
}
header nav a:hover, header nav a.active {
  background: var(--clr-bright);
  color: #fff;
}
header .cta-btn {
  margin-left: 32px;
  margin-right: 0;
  box-shadow: 0 2px 15px #EF476F23;
}
.mobile-menu-toggle {
  display: none;
}

/* --- MOBILE MENU ------------------------------------ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(90deg, #fff 65%, #FFBA081a 100%);
  box-shadow: -5px 0 24px 0 #7A112655;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.8,.2,.4,1.3);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 25px;
  overflow-y: auto;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0%);
  transition: transform 0.45s cubic-bezier(.8,.2,.4,1.3);
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 80px;
}
.mobile-menu .mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--clr-primary);
  font-size: 1.18rem;
  font-weight: 700;
  background: none;
  padding: 20px 0;
  border-radius: var(--radius-md);
  transition: color 0.18s, background 0.18s;
  text-align: left;
  border-bottom: 2px solid #F3F1ED;
}
.mobile-menu .mobile-nav a:hover {
  color: #fff;
  background: var(--clr-bright);
}

.mobile-menu .mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 20px;
}

/* --- MAIN ------------------------------------------ */
main {
  margin-top: 18px;
  margin-bottom: 42px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--radius-lg);
}

/* --- TESTIMONIAL CARDS ----------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  margin-bottom: 24px;
  transition: box-shadow 0.22s, transform 0.19s;
  min-width: 270px;
  max-width: 680px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px #7A112622;
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #1A1A1A;
  flex: 2 1 auto;
  margin-bottom: 0;
  line-height: 1.6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.user-details {
  flex: 1 0 120px;
  font-size: 0.97rem;
  color: var(--clr-primary);
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.user-details span {
  color: #FFBA08;
  font-size: 1.1em;
  letter-spacing: 1px;
}

/* --- CALL OUT -------------------------------------- */
.callout {
  background: #FFBA081b;
  border-left: 5px solid var(--clr-primary);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  margin-top: 18px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #7A1126;
  box-shadow: 0 2px 12px #FFBA0822;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  animation: calloutPulse 2.5s linear infinite cubic-bezier(.8,.2,.4,1.3);
}
@keyframes calloutPulse {
  0% { box-shadow: 0 2px 12px #FFBA0822; }
  50% { box-shadow: 0 6px 20px #FFBA084A; }
  100% { box-shadow: 0 2px 12px #FFBA0822; }
}

/* --- FOOTER ---------------------------------------- */
footer {
  background: #f6f3ef;
  box-shadow: 0 -2px 18px #7A11260b;
  font-size: 1rem;
  margin-top: 70px;
}
footer .container {
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 20px 10px 20px;
  max-width: 1300px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--clr-secondary);
  font-size: 1.04rem;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover {
  background: #FFBA08;
  color: #fff;
}
.footer-contact {
  color: var(--clr-primary);
  font-size: 0.98rem;
  margin-bottom: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  vertical-align: middle;
  margin: 0 7px -3px 0;
}
.social-media {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 6px;
  margin-top: 4px;
}
.social-media span {
  color: var(--clr-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.social-media img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  margin-right: 1px;
  transition: filter 0.17s, transform 0.19s;
}
.social-media img:hover {
  filter: brightness(1.2) drop-shadow(0 3px 8px #EF476F66);
  transform: rotate(-11deg) scale(1.13);
}
.legal-disclaimer {
  font-size: 0.84rem;
  color: #A8A8A8;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

/* --- ACCORDION FAQ (finanzplanung) ----------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.faq-accordion > div {
  background: #fff;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px #7A112616;
  transition: box-shadow 0.2s, transform 0.19s;
  cursor: pointer;
}
.faq-accordion > div:hover {
  box-shadow: 0 7px 21px #EF476F18;
  transform: scale(1.018) rotate(-0.6deg);
}
.faq-accordion h3 {
  font-size: 1.13rem;
  color: var(--clr-primary);
  margin: 0 0 7px 0;
}
.faq-accordion p {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--clr-secondary);
  transition: color 0.1s;
}

/* --- TABLE (anlageprodukte) ------------------------ */
.comparison-table {
  margin: 40px 0 26px 0;
  width: 100%;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 4px 18px #22314410;
  overflow: hidden;
  padding: 0 0 22px 0;
}
.comparison-table table {
  width: 100%;
  background: transparent;
  border-collapse: collapse;
}
.comparison-table th {
  background: var(--clr-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 13px 8px;
  text-align: left;
  border-right: 1px solid #fff0;
}
.comparison-table td {
  color: var(--clr-secondary);
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  padding: 13px 8px;
  border-bottom: 1px solid #F3F1ED;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table tr:hover td {
  background: #FFBA080e;
}
.pros-cons {
  display: flex;
  gap: 34px;
  flex-direction: row;
  margin: 13px 0 0 0;
  align-items: flex-start;
}
.pros-cons div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.01rem;
  color: var(--clr-secondary);
}
.pros-cons img {
  width: 22px;
  height: 22px;
}

/* --- Miscellaneous sections --------------------- */
.text-section {
  margin-bottom: 0;
}
.text-section strong {
  color: var(--clr-primary);
}
.text-section img {
  vertical-align: sub;
  margin-right: 6px;
  display: inline-block;
}

/* --- OL & UL fixes for playful look ------------ */
ul, ol {
  padding-left: 24px;
}
ul li {
  list-style-type: disc;
}
ol li {
  list-style-type: decimal;
}
.text-section ul li::marker {
  color: #EF476F;
  font-size: 1.1em;
}
.text-section ol li::marker {
  color: #3BBEF4;
  font-size: 1.15em;
}

/* --- Cookie Consent Banner & Modal -------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 26px #22314422;
  padding: 20px 16px;
  z-index: 2005;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  font-size: 1rem;
  animation: fadeUp 0.5s cubic-bezier(.6,.4,.2,1.2); 
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}
@keyframes fadeUp {
  0% { opacity:0; transform:translateY(40px); }
  100% { opacity:1; transform:translateY(0px); }
}
.cookie-banner p {
  color: var(--clr-secondary);
  margin-bottom: 0;
  font-size: 1rem;
  max-width: 400px;
}
.cookie-banner .cookie-btn {
  background: var(--clr-bright);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 11px 18px;
  margin-right: 10px;
  margin-bottom: 0;
  border-radius: var(--radius-sm);
  border: none;
  transition: background 0.16s, box-shadow 0.13s, transform 0.1s;
  box-shadow: 0 2px 9px #FFBA0852;
  cursor: pointer;
  outline: none;
}
.cookie-banner .cookie-btn:last-child {
  margin-right: 0;
  background: var(--clr-primary);
}
.cookie-banner .cookie-btn:hover {
  background: var(--clr-contrast);
  color: var(--clr-dark);
}

.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(34,49,68,0.33);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.37s;
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: var(--radius-lg);
  min-width: 320px;
  max-width: 94vw;
  box-shadow: 0 6px 38px #22314442;
  padding: 27px 32px 27px 28px;
  animation: popIn 0.43s cubic-bezier(.6,.4,.2,1.2);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
@keyframes popIn {
  0% { opacity:0; transform:scale(0.7); }
  100% { opacity:1; transform:scale(1); }
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 13px;
  right: 16px;
  font-size: 2.1rem;
  color: var(--clr-bright);
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal h3 {
  color: var(--clr-primary);
  font-size: 1.18rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  font-size: 1.04rem;
  margin-bottom: 9px;
}
.cookie-modal label {
  color: var(--clr-secondary);
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--clr-bright);
  width: 19px;
  height: 19px;
  margin-right: 5px;
}

/* --- Responsive Design (Mobile First) ------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
  .features-grid > div {
    min-width: 200px;
    max-width: 100%;
  }
  .comparison-table, .testimonial-card {
    max-width: 98vw;
    font-size: 0.98rem;
  }
}

@media (max-width: 900px) {
  .features-grid {
    gap: 14px;
  }
  .section, section {
    padding: 35px 7px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    padding: 12px 8px 14px 12px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .cta-btn {
    margin-left: 8px;
    padding: 13px 18px;
  }
  .features-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .features-grid > div {
    width: 98%;
    min-width: unset;
    max-width: 99vw;
    padding: 19px 10px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 12px;
  }
  .pros-cons {
    gap: 14px;
    font-size: 0.96rem;
    flex-direction: column;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .section, section {
    padding: 25px 4vw;
    margin-bottom: 38px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 7px 18px 9px;
  }
}

@media (max-width: 500px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.13rem; }
  body { font-size: 15px; }
  footer .container { padding: 18px 6px 4px 6px; }
}

/* --- MICRO INTERACTION ANIMATIONS (playful/dynamic) ---- */
a, .cta-btn, button, .card, .features-grid > div, .testimonial-card, .faq-accordion > div, .social-media img {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.17s;
}
.card:active, .features-grid > div:active {
  transform: scale(0.98) rotate(1deg);
  background: #FFBA080f;
}

/* --- Playful Visual Accent Dots --- */
.features-grid > div::after {
  content: '';
  position: absolute;
  top: 14px; right: -15px;
  width: 31px; height: 31px;
  background: #EF476F29;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: orbit 3.8s linear infinite alternate;
}
@keyframes orbit {
  0% { transform: translateY(0) scale(1) rotateZ(0deg); }
  100% { transform: translateY(-8px) scale(1.1) rotateZ(15deg); }
}

/* --- Hide non-mobile nav on mobile ----------------- */
@media (max-width: 768px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important;}
}

/* --- Utility Classes ------------------------------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-12 { margin-bottom: 12px; }
.mt-32 { margin-top: 32px; }
.centered { text-align: center; }

/* --- Explicitly mark accent/dynamic color elements ------------------- */
.accent-bg { background: var(--clr-accent); }
.brighter-txt { color: var(--clr-contrast); }
.primary-txt { color: var(--clr-primary); }

/* --- ACCESSIBILITY: Focus rings & contrast ------------ */
*:focus-visible {
  outline: 2px dashed #FFBA08;
  outline-offset: 2px;
}

/* --- END OF STYLE.CSS --- */
