/* ============================================
   PAYMART SUITE — B2B Landing Page Styles
   ============================================ */

/* --- Inter Font (self-hosted) --- */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #0a2540;
    --primary-light: #0f3460;
    --accent: #635bff;
    --accent-hover: #5a4cf5;
    --accent-light: rgba(99,91,255,.1);
    --accent-glow: rgba(99,91,255,.25);
    --accent-purple: #7c3aed;
    --bg: #ffffff;
    --bg-alt: #f6f9fc;
    --bg-dark: #0a2540;
    --text: #1a1a2e;
    --text-muted: #6b7c93;
    --text-light: #8f9bb3;
    --border: #e3e8ef;
    --success: #0d9488;
    --error: #dc2626;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --shadow-accent: 0 4px 20px rgba(99,91,255,.3);
    --transition: .25s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; }

/* Container */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 600; font-size: .9375rem; border-radius: var(--radius-sm); padding: 12px 28px; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); font-family: var(--font); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-accent); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--border); }
.btn-outline-dark:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 8px 18px; font-size: .875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ========== NAV ========== */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: box-shadow var(--transition); }
.navbar.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 800; color: var(--primary); text-decoration: none; }
.logo:hover { color: var(--primary); }
.logo-icon { width: 32px; height: 32px; }
.logo-accent { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { color: var(--text); font-weight: 500; font-size: .9375rem; padding: 8px 14px; border-radius: var(--radius-sm); transition: background var(--transition); }
.nav-links a:hover { background: var(--bg-alt); color: var(--accent); }
.nav-links a.btn-primary { background: var(--accent); color: #fff; border: 1px solid var(--accent); border-radius: var(--radius-sm); font-weight: 600; }
.nav-links a.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-accent); }
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 2px; }
.nav-dropdown .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 8px 30px rgba(0,0,0,.12); min-width: 220px; padding: 8px 0; z-index: 1001; list-style: none; margin: 0; }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu li a { display: block; padding: 10px 20px; font-size: .9375rem; color: var(--text); border-radius: 0; }
.dropdown-menu li a:hover { background: var(--bg-alt); color: var(--accent); }
.lang-switcher { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.lang-btn { background: none; border: none; color: var(--text-muted); font-weight: 600; font-size: .8125rem; cursor: pointer; padding: 4px 6px; border-radius: 4px; transition: all var(--transition); font-family: var(--font); }
.lang-btn.active { color: var(--accent); background: var(--accent-light); }
.lang-btn:hover { color: var(--accent); }
.lang-divider { color: var(--border); font-size: .75rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all .3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, #0a2540 0%, #0f3460 40%, #1a1a5e 70%, #2d1b69 100%); color: #fff; overflow: hidden; padding: 120px 0 80px; }
.hero-bg-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(99,91,255,.12) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(10,37,64,.3) 0%, transparent 50%); pointer-events: none; }
.hero-container { position: relative; z-index: 1; max-width: 1100px; display: flex; align-items: center; gap: 48px; }
@media (min-width: 900px) {
    .hero-clipart-wrap { flex-shrink: 0; width: 320px; }
    .hero-clipart-wrap img { width: 100%; height: auto; display: block; }
    .hero-content { flex: 1; }
    .hero-content { text-align: left; }
    .hero-badge { margin-left: 0; }
    .hero-actions { justify-content: flex-start; }
}
@media (max-width: 899px) {
    .hero-container { flex-direction: column; gap: 24px; }
    .hero-clipart-wrap {  }
}
.hero-badge { display: inline-block; background: rgba(99,91,255,.15); color: #a8a3ff; font-size: .8125rem; font-weight: 600; padding: 6px 16px; border-radius: 100px; margin-bottom: 24px; letter-spacing: .02em; border: 1px solid rgba(99,91,255,.3); }
.hero-title { font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; margin-bottom: 24px; }
.text-accent { color: var(--accent); }
.hero-subtitle { font-size: 1.125rem; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 36px; max-width: 600px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-actions .btn-outline { border-color: rgba(255,255,255,.25); }
.hero-actions .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.hero-bridge-bg { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); height: 450px; z-index: 0; pointer-events: none; }
.hero-bridge-bg img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-particles canvas { width: 100%; height: 100%; display: block; }
.hero-clipart-wrap { margin: 40px auto 0; position: relative; z-index: 1; }
.hero-clipart-wrap img { width: 100%; height: auto; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-value { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

/* ========== SECTIONS ========== */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-tag { display: inline-block; background: var(--accent-light); color: var(--accent); font-size: .8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--primary); letter-spacing: -.02em; margin-bottom: 16px; }
.section-subtitle { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.65; }

/* ========== PLATFORM ========== */
.platform { background: var(--bg); }
.platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.platform-card { padding: 36px 32px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg); transition: all var(--transition); }
.platform-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.platform-icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: 12px; }
.module-icon-wrap svg { width: 36px; height: 36px; color: var(--accent); }
.cv-icon svg { width: 48px; height: 48px; color: var(--accent); margin-bottom: 12px; }
.usecase-icon svg { width: 48px; height: 48px; color: var(--accent); margin-bottom: 12px; }
.baas-icon svg { width: 44px; height: 44px; color: var(--accent); }
.trust-item svg { width: 36px; height: 36px; color: var(--accent); }
.module-card svg.icon { width: 36px; height: 36px; }
.platform-card svg.icon { width: 40px; height: 40px; }
.platform-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.platform-card p { font-size: .9375rem; color: var(--text-muted); line-height: 1.6; }

/* ========== MODULES ========== */
.modules { background: var(--bg-alt); }
.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.module-card { background: var(--bg); border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--border); transition: all var(--transition); position: relative; overflow: hidden; }
.module-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.module-number { position: absolute; top: 12px; right: 16px; font-size: .75rem; font-weight: 800; color: rgba(99,91,255,.15); letter-spacing: .04em; }
.module-icon-wrap { margin-bottom: 12px; }
.module-emoji { font-size: 1.75rem; }
.module-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.module-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.55; }
a.module-card { display: block; text-decoration: none; color: inherit; }
a.module-card:hover { color: inherit; }
a.module-card h3 { color: var(--primary); }
a.module-card:hover h3 { color: var(--accent); }

/* ========== CAPE VERDE ========== */
.cape-verde { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); }
.cv-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.cv-feature { padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg); transition: all var(--transition); }
.cv-feature:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.cv-icon { font-size: 2.5rem; margin-bottom: 12px; }
.cv-feature h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.cv-feature p { font-size: .9375rem; color: var(--text-muted); line-height: 1.6; }

/* ========== FEATURES TABLE ========== */
.features { background: var(--bg); }
.features-table-wrap { max-width: 900px; margin: 0 auto; overflow-x: auto; }
.features-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.features-table thead { background: var(--primary); }
.features-table th { padding: 16px 20px; font-size: .875rem; font-weight: 700; color: #fff; text-align: left; letter-spacing: .02em; }
.features-table tbody tr { transition: background var(--transition); }
.features-table tbody tr:nth-child(even) { background: var(--bg-alt); }
.features-table tbody tr:hover { background: rgba(99,91,255,.04); }
.features-table td { padding: 14px 20px; font-size: .9375rem; border-bottom: 1px solid var(--border); line-height: 1.55; }
.features-table tbody tr:last-child td { border-bottom: none; }
.ft-feature { font-weight: 700; color: var(--primary); white-space: nowrap; min-width: 160px; }

/* ========== INTEGRATION ========== */
.integration { background: var(--bg-alt); }
.integration-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.integration-card { padding: 36px 32px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg); transition: all var(--transition); }
.integration-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.int-icon { margin-bottom: 16px; color: var(--accent); }
.integration-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.integration-card p { font-size: .9375rem; color: var(--text-muted); line-height: 1.6; }

/* ========== USE CASES ========== */
.use-cases { background: var(--bg); }
.usecases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.usecase-card { padding: 36px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg); transition: all var(--transition); }
.usecase-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.usecase-label { display: inline-block; background: var(--accent-light); color: var(--accent); font-size: .6875rem; font-weight: 800; letter-spacing: .1em; padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; text-transform: uppercase; }
.usecase-icon { font-size: 2.5rem; margin-bottom: 12px; }
.usecase-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.usecase-card p { font-size: .9375rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.usecase-list { list-style: none; padding: 0; }
.usecase-list li { position: relative; padding: 6px 0 6px 24px; font-size: .875rem; color: var(--text-muted); line-height: 1.5; }
.usecase-list li::before { content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); opacity: .4; }

/* ========== BANKING AS A SERVICE ========== */
.baas-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: #fff; }
.baas-section .section-tag { background: rgba(255,255,255,.15); color: #a8a3ff; border-color: rgba(255,255,255,.2); }
.baas-section .section-title { color: #fff; }
.baas-section .section-subtitle { color: rgba(255,255,255,.65); }
.baas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.baas-card { padding: 32px 28px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: all var(--transition); }
.baas-card:hover { border-color: var(--accent); background: rgba(99,91,255,.1); box-shadow: var(--shadow-accent); transform: translateY(-4px); }
.baas-icon { width: 44px; height: 44px; color: var(--accent); margin-bottom: 16px; }
.baas-icon svg { width: 44px; height: 44px; }
.baas-card h3 { font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.baas-card p { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ========== CONTACT FORM ========== */
.contact { background: var(--bg-alt); }
.demo-form { max-width: 800px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    font-family: var(--font); font-size: .9375rem; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); color: var(--text); transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: var(--error); }
.form-group textarea { resize: vertical; min-height: 100px; }
.submit-btn { width: 100%; margin-top: 8px; }
.form-privacy { text-align: center; font-size: .8125rem; color: var(--text-muted); margin-top: 16px; }
.form-message { margin-top: 16px; padding: 16px; border-radius: var(--radius-sm); text-align: center; font-weight: 500; }
.form-message.success { background: rgba(13,148,136,.1); color: var(--success); border: 1px solid rgba(13,148,136,.2); }
.form-message.error { background: rgba(220,38,38,.1); color: var(--error); border: 1px solid rgba(220,38,38,.2); }
.form-message.hidden { display: none; }

/* ========== FOOTER ========== */
.footer { background: var(--primary); color: rgba(255,255,255,.65); padding: 60px 0 0; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { flex: 1 1 280px; min-width: 200px; }
.footer-links { flex: 1 1 180px; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand .logo-text { color: #fff; font-size: 1.25rem; }
.footer-brand p { font-size: .9375rem; line-height: 1.6; color: rgba(255,255,255,.5); margin-top: 12px; }
.footer-links h4, .footer-legal h4 { color: #fff; font-size: .9375rem; font-weight: 600; margin-bottom: 16px; }
.footer-links ul, .footer-legal ul { list-style: none; }
.footer-links li, .footer-legal li { margin-bottom: 10px; }
.footer-links a, .footer-legal a { color: rgba(255,255,255,.5); font-size: .875rem; transition: color var(--transition); }
.footer-links a:hover, .footer-legal a:hover { color: #fff; }
.footer-bottom { padding: 24px 0; text-align: center; font-size: .8125rem; color: rgba(255,255,255,.35); }

/* ========== 404 PAGE ========== */
.error-page { display: flex; align-items: center; justify-content: center; min-height: 100vh; text-align: center; background: var(--bg); }
.error-content { max-width: 560px; padding: 40px 24px; }
.error-code { font-size: 6rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 16px; }
.error-title { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.error-text { font-size: 1rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { gap: 32px; }
    .platform-grid, .cv-features, .usecases-grid, .integration-grid, .baas-grid { grid-template-columns: 1fr; }
    .features-table th, .features-table td { padding: 12px 14px; font-size: .875rem; }
    .ft-feature { white-space: normal; min-width: auto; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-links.active { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 16px 24px; border-bottom: 1px solid var(--border); gap: 4px; }
    .nav-links.active .lang-switcher { justify-content: flex-start; padding: 8px 14px; }
    .nav-links.active a.btn-primary { text-align: center; display: block; }
    .nav-dropdown .dropdown-menu { position: static; box-shadow: none; border: none; padding: 4px 0 4px 20px; display: none; min-width: auto; background: transparent; }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .nav-dropdown .dropdown-toggle { cursor: pointer; padding: 8px 14px; }
    .nav-dropdown .dropdown-toggle svg { transition: transform .2s; }
    .nav-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }
    .nav-toggle { display: flex; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-title { font-size: 2rem; }
    .section { padding: 60px 0; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .btn-lg { width: 100%; text-align: center; }
    .modules-grid, .baas-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .footer-grid { flex-direction: row; }
    .footer-brand { flex: 1 1 100%; }
    .footer-links { flex: 0 0 auto; padding: 0 10px; }
}

.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.trust-item { text-align: center; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); transition: all var(--transition); }
.trust-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.trust-badge { font-size: 1.125rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.trust-item p { font-size: .8125rem; color: var(--text-muted); }
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}
