:root {
    --ink-900: #0b0f14;
    --ink-800: #111720;
    --ink-700: #1b2432;
    --sand-50: #f7f5f1;
    --sand-100: #efeae2;
    --silver-100: #eef1f4;
    --silver-200: #d8dde4;
    --silver-300: #b6bfcc;
    --gold-500: #d4a15d;
    --gold-600: #b7803f;
    --teal-500: #2fb7a4;
    --sky-500: #5b8dff;
    --emerald-500: #3aa978;
    --text-strong: #101723;
    --text: #293241;
    --text-muted: #6b7280;
    --surface: #fbfaf7;
    --surface-alt: #f4f2ee;
    --card: rgba(255, 255, 255, 0.92);
    --border: rgba(16, 23, 35, 0.12);
    --shadow-soft: 0 20px 60px rgba(9, 15, 22, 0.12);
    --shadow-strong: 0 30px 80px rgba(9, 15, 22, 0.18);
    --radius-xl: 26px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", "Sora", sans-serif;
    background: var(--surface);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.lang {
    display: inline;
}

html[data-lang="en"] .lang-fr {
    display: none !important;
}

html[data-lang="fr"] .lang-en {
    display: none !important;
}

.wrap {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.section {
    padding: clamp(3.5rem, 7vw, 6.5rem) 0;
    position: relative;
    z-index: 1;
}

.section--soft {
    background: var(--surface-alt);
}

.section--dark {
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 60%),
        linear-gradient(130deg, #0b0f14 0%, #141c28 55%, #162332 100%);
    color: #f7f4ed;
    border-radius: clamp(24px, 4vw, 40px);
    width: min(1400px, 96%);
    margin: clamp(1rem, 3vw, 2rem) auto;
    overflow: hidden;
}

.section--dark .section-subtitle,
.section--dark .text-muted {
    color: rgba(247, 244, 237, 0.75);
}

.ambient-bg {
    position: fixed;
    inset: -20% -10% 0;
    background: radial-gradient(circle at 20% 20%, rgba(212, 161, 93, 0.18), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(47, 183, 164, 0.12), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(91, 141, 255, 0.12), transparent 45%);
    z-index: -2;
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(16, 23, 35, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 23, 35, 0.05) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.text-gradient {
    background: linear-gradient(120deg, var(--gold-500), #f2d3a4 55%, var(--teal-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-header {
    position: sticky;
    top: 1rem;
    z-index: 50;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled .nav-shell {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-strong);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "Sora", "Manrope", sans-serif;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a2332, #2d3a4e);
    color: #f7f4ed;
    font-size: 0.85rem;
    font-weight: 700;
}

.nav-links {
    display: none;
    gap: 1.4rem;
    align-items: center;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.nav-actions .btn {
    display: none;
}

.nav-toggle {
    background: transparent;
    border: none;
    display: inline-flex;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-strong);
    border-radius: 999px;
}

.nav-drawer {
    margin-top: 0.8rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    padding: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: grid;
    gap: 0.6rem;
}

.nav-drawer[data-open="true"] {
    max-height: 360px;
}

.nav-cta {
    margin-top: 0.5rem;
}

.lang-toggle {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-strong);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.85rem 1.6rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(120deg, var(--gold-500), #f1cf9b);
    color: var(--ink-900);
    box-shadow: 0 20px 40px rgba(212, 161, 93, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(212, 161, 93, 0.45);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--text-strong);
    background: rgba(255, 255, 255, 0.85);
}

.section--dark .btn-secondary {
    border-color: rgba(247, 244, 237, 0.35);
    color: inherit;
    background: rgba(255, 255, 255, 0.1);
}

.hero {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-family: "Sora", "Manrope", sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 1.05;
    margin: 1.2rem 0 1rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 34rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stats {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    margin-top: 2.5rem;
}

.stat {
    background: rgba(15, 20, 28, 0.55);
    border: 1px solid rgba(247, 244, 237, 0.15);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
}

.stat-label {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(247, 244, 237, 0.7);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(247, 244, 237, 0.2);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
}

.orb {
    position: relative;
    width: min(360px, 70vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(91, 141, 255, 0.45), transparent 45%),
        radial-gradient(circle at 70% 70%, rgba(47, 183, 164, 0.35), transparent 45%),
        radial-gradient(circle at 40% 60%, rgba(212, 161, 93, 0.4), transparent 55%),
        #101725;
    box-shadow: 0 35px 80px rgba(5, 10, 18, 0.6);
}

.orb::before,
.orb::after {
    content: "";
    position: absolute;
    inset: -12%;
    border-radius: 50%;
    border: 1px solid rgba(247, 244, 237, 0.15);
}

.orb::after {
    inset: -24%;
    border-color: rgba(247, 244, 237, 0.08);
}

.orb-lines {
    position: absolute;
    inset: 12%;
    width: 76%;
    height: 76%;
    fill: none;
    stroke: rgba(247, 244, 237, 0.5);
    stroke-width: 2;
    opacity: 0.8;
}

.orb-lines circle {
    fill: rgba(247, 244, 237, 0.9);
    stroke: none;
}

.floating-card {
    position: absolute;
    right: 10%;
    top: 10%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(247, 244, 237, 0.2);
    color: #f7f4ed;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    animation: float 6s ease-in-out infinite;
}

.floating-card--alt {
    left: 5%;
    right: auto;
    top: auto;
    bottom: 10%;
    animation-delay: 1.5s;
}

.floating-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.3rem;
    color: rgba(247, 244, 237, 0.7);
}

.floating-value {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.section-header {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 2.5rem;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.section-title {
    font-family: "Sora", "Manrope", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    margin: 0;
}

.section-subtitle {
    font-size: 1.05rem;
    max-width: 38rem;
    margin: 0;
    color: var(--text-muted);
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.logo-pill {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.quotes-grid {
    display: grid;
    gap: 1.2rem;
}

.quote-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow-soft);
}

.quote {
    margin: 0 0 1rem;
    font-size: 1.05rem;
}

.quote-author {
    font-weight: 600;
    margin: 0;
}

.quote-role {
    color: var(--text-muted);
    font-weight: 500;
}

.pillars-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow-soft);
}

.card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.1rem;
}

.card p {
    margin: 0;
    color: var(--text-muted);
}

.legal-card h1 {
    font-family: "Sora", "Manrope", sans-serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin: 0 0 0.6rem;
}

.legal-card h2 {
    font-size: 1.15rem;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}

.legal-card p,
.legal-card li {
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-card ul {
    padding-left: 1.2rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.legal-card a {
    color: var(--text-strong);
    font-weight: 600;
}

.card .icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
    color: var(--gold-600);
}

.lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.feature-row {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row--reverse {
    direction: rtl;
}

.feature-row--reverse > * {
    direction: ltr;
}

.feature-text h3 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.feature-text p {
    color: var(--text-muted);
    margin-top: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: grid;
    gap: 0.6rem;
}

.feature-list li {
    padding-left: 1.6rem;
    position: relative;
    color: var(--text-strong);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-500), var(--teal-500));
}

.feature-panel {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: linear-gradient(150deg, #f6f4ef, #ffffff);
    min-height: 260px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.panel-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(16, 23, 35, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 23, 35, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.panel-node {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold-500);
    box-shadow: 0 0 18px rgba(212, 161, 93, 0.6);
}

.panel-node--one {
    top: 30%;
    left: 20%;
}

.panel-node--two {
    top: 55%;
    right: 25%;
    background: var(--teal-500);
}

.panel-node--three {
    bottom: 20%;
    left: 45%;
    background: var(--sky-500);
}

.panel-label {
    position: absolute;
    right: 16px;
    top: 16px;
    background: rgba(16, 23, 35, 0.08);
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.panel-heat {
    position: absolute;
    inset: 15% 10% auto;
    height: 120px;
    border-radius: 18px;
    background: radial-gradient(circle at 20% 50%, rgba(212, 161, 93, 0.6), transparent 60%),
        radial-gradient(circle at 60% 30%, rgba(47, 183, 164, 0.5), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(91, 141, 255, 0.5), transparent 60%);
    opacity: 0.8;
}

.panel-chart {
    position: absolute;
    bottom: 18%;
    left: 12%;
    right: 12%;
    height: 90px;
    border-radius: 16px;
    background: linear-gradient(120deg, rgba(212, 161, 93, 0.2), rgba(47, 183, 164, 0.2));
}

.panel-radar {
    position: absolute;
    inset: 18% 16% 18% 16%;
    border-radius: 50%;
    border: 2px dashed rgba(16, 23, 35, 0.1);
    background: radial-gradient(circle, rgba(47, 183, 164, 0.25), transparent 65%);
}

.differentiators-grid {
    display: grid;
    gap: 1.3rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.data-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.data-metrics {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    margin-top: 2rem;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
}

.metric-label {
    margin: 0;
    color: var(--text-muted);
}

.data-panel {
    position: relative;
    border-radius: var(--radius-xl);
    background: linear-gradient(140deg, #101723, #1a2332);
    min-height: 300px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.data-panel-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
}

.data-panel-line {
    position: absolute;
    top: 30%;
    left: -20%;
    width: 140%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(247, 244, 237, 0.6), transparent);
}

.data-panel-node {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold-500);
    top: 45%;
    left: 30%;
    box-shadow: 0 0 18px rgba(212, 161, 93, 0.7);
}

.data-panel-card {
    position: absolute;
    bottom: 20%;
    right: 16%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(247, 244, 237, 0.2);
    padding: 0.8rem 1rem;
    border-radius: 14px;
    color: #f7f4ed;
}

.panel-title {
    margin: 0 0 0.3rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.panel-value {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
}

.pricing-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 2rem;
    display: grid;
    gap: 1rem;
    box-shadow: var(--shadow-soft);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.pricing-card ul li {
    position: relative;
    padding-left: 1.4rem;
}

.pricing-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--teal-500);
}

.pricing-card--featured {
    border: 1px solid rgba(212, 161, 93, 0.4);
    box-shadow: 0 25px 60px rgba(212, 161, 93, 0.25);
}

.pricing-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.pricing-subtitle {
    color: var(--text-muted);
    margin: 0;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card);
    padding: 1.2rem 1.4rem;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    color: var(--text-muted);
    margin: 0.8rem 0 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.contact-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.contact-card h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-top: 0;
}

.contact-card p {
    color: rgba(247, 244, 237, 0.75);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(247, 244, 237, 0.18);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
}

.contact-panel-title {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin: 0 0 1rem;
    color: rgba(247, 244, 237, 0.6);
}

.contact-panel ol {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(247, 244, 237, 0.8);
    display: grid;
    gap: 0.7rem;
}

.footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-grid h4 {
    margin: 0 0 0.8rem;
    font-size: 0.95rem;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-bottom {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (min-width: 900px) {
    .nav-links,
    .nav-actions {
        display: flex;
    }

    .nav-actions .btn {
        display: inline-flex;
    }

    .nav-toggle,
    .nav-drawer {
        display: none;
    }

    .hero-grid,
    .feature-row,
    .data-grid,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quotes-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .nav-shell {
        border-radius: 20px;
    }

    .hero-cta,
    .contact-actions {
        flex-direction: column;
    }

    .hero-cta .btn,
    .contact-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 3px;
}
