/* SOLTECK — Design System (CryptoVault-inspired) */

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

/* ========================================
   CSS Variables — Dark Theme (Default)
======================================== */
:root, [data-theme="dark"] {
    --bg-primary: #1a2421;
    --bg-secondary: #212e2a;
    --bg-card: #2a3834;
    --bg-card-hover: #334540;
    --accent: #99DDCC;
    --accent-dark: #55776f;
    --accent-light: #b3e8db;
    --accent-gradient: linear-gradient(135deg, #55776f 0%, #99DDCC 50%, #b3e8db 100%);
    --accent-gradient-hover: linear-gradient(135deg, #99DDCC 0%, #b3e8db 50%, #cdf0e8 100%);
    --text-primary: #f0f5f3;
    --text-secondary: #a8b8b2;
    --text-muted: #6e7e78;
    --border: #3a4a44;
    --shadow: rgba(0, 0, 0, 0.3);
    --overlay: rgba(0, 0, 0, 0.5);
}

/* ========================================
   CSS Variables — Light Theme
======================================== */
[data-theme="light"] {
    --bg-primary: #f4f7f6;
    --bg-secondary: #e8efec;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f4f2;
    --accent: #55776f;
    --accent-dark: #4a6b63;
    --accent-light: #3d5f58;
    --accent-gradient: linear-gradient(135deg, #3d5f58 0%, #55776f 50%, #6b9189 100%);
    --accent-gradient-hover: linear-gradient(135deg, #55776f 0%, #6b9189 50%, #99DDCC 100%);
    --text-primary: #1a2e28;
    --text-secondary: #4a5e58;
    --text-muted: #6a7e78;
    --border: #c8d8d2;
    --shadow: rgba(0, 0, 0, 0.08);
    --overlay: rgba(0, 0, 0, 0.3);
}

/* ========================================
   Body & Typography
======================================== */
body {
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Layout — Grid System
======================================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.row {
    display: grid;
    gap: 24px;
}

.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-5 { grid-template-columns: repeat(5, 1fr); }
.cols-hero { grid-template-columns: 3fr 2fr; }
.cols-contact { grid-template-columns: 1fr 2fr; }
.cols-why { grid-template-columns: 80px 1fr; }

.text-center { text-align: center; }

/* ========================================
   Sections
======================================== */
.section {
    padding: 80px 0;
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.section-alt {
    background-color: var(--bg-secondary);
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
}

.section-desc.center {
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Header
======================================== */
.st-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.st-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.st-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.st-logo img {
    height: 54px;
    transition: filter 0.3s ease;
}

[data-theme="light"] .st-logo img {
    filter: brightness(0.2) sepia(1) hue-rotate(110deg) saturate(0.5);
}

.st-slogan {
    font-size: 19px;
    color: var(--text-secondary);
    font-variant: small-caps;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.st-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Desktop nav */
.st-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.st-nav > a {
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.st-nav > a:hover {
    color: var(--text-primary);
    background-color: var(--bg-card);
}

.st-nav > a.st-active {
    background: var(--accent-gradient);
    color: #1a2421;
    font-weight: 700;
}

/* Dropdown Solutions */
.st-dropdown {
    position: relative;
}

.st-dropdown-toggle {
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    font-family: inherit;
}

.st-dropdown-toggle:hover {
    color: var(--text-primary);
    background-color: var(--bg-card);
}

.st-dropdown-toggle.st-active {
    background: var(--accent-gradient);
    color: #1a2421;
    font-weight: 700;
}

.st-dropdown-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.st-dropdown:hover .st-dropdown-toggle svg {
    transform: rotate(180deg);
}

.st-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px var(--shadow);
    z-index: 110;
}

.st-dropdown:hover .st-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.st-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.st-dropdown-menu a:hover {
    background-color: var(--bg-card);
    color: var(--text-primary);
}

.st-dropdown-menu a.st-active {
    color: var(--accent);
    font-weight: 600;
}

/* Mobile dropdown */
.st-mobile-dropdown-label {
    display: block;
    padding: 14px 16px;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Theme toggle button */
.st-theme-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    margin-left: 8px;
}

.st-theme-btn:hover {
    background-color: var(--bg-card-hover);
    color: var(--text-primary);
}

.st-theme-btn svg {
    width: 20px;
    height: 20px;
}

/* Mobile hamburger */
.st-hamburger {
    display: none;
    width: 44px;
    height: 44px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    transition: all 0.2s ease;
}

.st-hamburger:hover {
    background-color: var(--bg-card-hover);
}

.st-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
}

.st-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.st-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.st-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.st-overlay {
    position: fixed;
    inset: 0;
    background-color: var(--overlay);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.st-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile menu */
.st-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.st-mobile-menu.active {
    transform: translateX(0);
}

.st-mobile-menu a {
    display: block;
    padding: 14px 16px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.st-mobile-menu a:hover {
    background-color: var(--bg-card);
    color: var(--text-primary);
}

.st-mobile-menu a.st-active {
    background: var(--accent-gradient);
    color: #1a2421;
}

/* ========================================
   Hero
======================================== */
.st-hero {
    background: linear-gradient(135deg, #1a2421 0%, #0f1a16 100%);
    padding: 140px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

[data-theme="light"] .st-hero {
    background: linear-gradient(135deg, #3d5850 0%, #2f4a42 100%);
}

.st-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #f0f5f3;
}

.st-hero .st-accent {
    color: #99DDCC;
}

.st-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.45);
    font-size: 16px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 480px;
}

.st-hero .hero-buttons {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========================================
   Cards
======================================== */
.card {
    background-color: var(--bg-card);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow);
}

/* ========================================
   Stat Cards (Hero)
======================================== */
.st-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    text-align: center;
    padding: 24px 16px;
    transition: all 0.3s ease;
}

.st-stat-card:hover {
    background: rgba(153, 221, 204, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.st-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #99DDCC;
    line-height: 1;
}

.st-stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Service Cards
======================================== */
.st-service-card {
    border-left: 3px solid transparent;
    background-color: var(--bg-card);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.st-service-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow);
}

.st-service-card .st-icon {
    width: 48px;
    height: 48px;
    background: rgba(153, 221, 204, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

[data-theme="light"] .st-service-card .st-icon {
    background: rgba(85, 119, 111, 0.08);
}

.st-service-card .st-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

a.st-service-card {
    display: block;
    color: var(--text-primary);
    cursor: pointer;
}

.st-service-card h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.st-service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   Tags
======================================== */
.st-tag {
    display: inline-block;
    background: rgba(153, 221, 204, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin: 3px 2px;
    border: 1px solid rgba(153, 221, 204, 0.15);
}

[data-theme="light"] .st-tag {
    background: rgba(85, 119, 111, 0.08);
    border-color: rgba(85, 119, 111, 0.12);
}

.st-tags {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid var(--border);
    background-color: transparent;
    color: var(--text-primary);
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    background-color: var(--bg-card-hover);
}

.btn.primary {
    background: var(--accent-gradient);
    border: none;
    color: #1a2421;
}

.btn.primary:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 221, 204, 0.25);
}

.btn.outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn.outline:hover {
    border-color: #99DDCC;
    color: #99DDCC;
}

/* Bouton dans contexte clair */
.section .btn.outline,
.section-alt .btn.outline {
    color: var(--text-secondary);
    border-color: var(--border);
}

.section .btn.outline:hover,
.section-alt .btn.outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ========================================
   "Pourquoi nous" Section
======================================== */
.st-why-icon {
    font-size: 40px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
}

.st-why-block h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.st-why-block p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   CTA Section
======================================== */
.st-cta {
    background: linear-gradient(135deg, #1a2421 0%, #0f1a16 100%);
    padding: 80px 0;
    text-align: center;
}

[data-theme="light"] .st-cta {
    background: linear-gradient(135deg, #3d5850 0%, #2f4a42 100%);
}

.st-cta h2 {
    font-size: 26px;
    font-weight: 800;
    color: #f0f5f3;
    margin-bottom: 8px;
}

.st-cta p {
    color: rgba(255, 255, 255, 0.4);
    max-width: 500px;
    margin: 0 auto 28px;
}

.st-cta .btn-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Solutions Page
======================================== */
.st-sol-block {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.st-sol-block:last-child {
    border-bottom: none;
}

.st-sol-num {
    font-size: 4rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -2px;
}

.st-sol-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.st-sol-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.st-sol-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.st-sol-content ul li {
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.st-sol-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gradient);
}

/* ========================================
   Contact Page
======================================== */
.st-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.st-contact-item:last-child {
    border-bottom: none;
}

.st-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.st-contact-item .label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.st-contact-item .value {
    color: var(--text-primary);
    font-weight: 500;
}

.st-contact-item a {
    color: var(--accent);
}

/* ========================================
   Form Elements
======================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(153, 221, 204, 0.15);
}

[data-theme="light"] .form-input:focus {
    box-shadow: 0 0 0 3px rgba(85, 119, 111, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236e7e78' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.st-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    margin: 20px 0;
}

.st-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    margin-top: 1px;
    flex-shrink: 0;
}

.form-msg {
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 16px;
    display: none;
}

.form-msg.success {
    display: block;
    background: rgba(153, 221, 204, 0.1);
    color: var(--accent);
    border: 1px solid rgba(153, 221, 204, 0.2);
}

.form-msg.error {
    display: block;
    background: rgba(220, 53, 69, 0.08);
    color: #e06060;
    border: 1px solid rgba(220, 53, 69, 0.15);
}

.hp-field {
    position: absolute;
    left: -9999px;
}

/* ========================================
   Footer
======================================== */
.st-footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 48px 0 0;
    font-size: 14px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.st-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.st-footer-brand .st-logo img {
    height: 40px;
}

.st-footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 260px;
}

.st-footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.st-footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.st-footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
}

.st-footer-col a:hover {
    color: var(--accent);
}

.st-footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
}

.st-footer-bottom strong {
    color: var(--accent);
    font-weight: 600;
}

/* ========================================
   Legal Page
======================================== */
.st-legal h2 {
    font-size: 20px;
    margin-top: 32px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.st-legal h2:first-of-type {
    margin-top: 0;
}

.st-legal h3 {
    color: var(--accent);
    font-size: 15px;
    margin-top: 20px;
}

.st-legal p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.st-legal li {
    color: var(--text-secondary);
    padding: 4px 0;
    line-height: 1.6;
}

.st-legal a {
    color: var(--accent);
}

/* ========================================
   Responsive — Tablet (1024px)
======================================== */
@media (max-width: 1024px) {
    .cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cols-hero {
        grid-template-columns: 1fr;
    }

    .cols-contact {
        grid-template-columns: 1fr;
    }

    .st-hamburger {
        display: flex;
    }

    .st-nav {
        display: none;
    }
}

/* ========================================
   Responsive — Mobile (640px)
======================================== */
@media (max-width: 640px) {
    .section {
        padding: 48px 0;
    }

    .cols-2,
    .cols-3,
    .cols-4,
    .cols-5 {
        grid-template-columns: 1fr;
    }

    .cols-why {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .st-hero {
        padding: 100px 0 48px;
        min-height: auto;
    }

    .st-hero h1 {
        font-size: 1.8rem;
    }

    .st-slogan {
        display: none;
    }

    .st-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .st-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .card {
        padding: 20px;
    }

    .st-cta {
        padding: 48px 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .st-sol-num {
        font-size: 2.5rem;
    }
}

/* ========================================
   Print
======================================== */
@media print {
    .st-header,
    .st-footer,
    .st-hamburger,
    .st-overlay,
    .st-mobile-menu,
    .st-theme-btn {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
