:root {
    /* SURM Core Palette - Mint Theme Default */
    --bg-darker: #050505;
    --bg-dark: #121212;
    --bg-medium: #1e1e1e;
    --bg-light: #2c2c2c;
    --accent: #00ffaa;
    --accent-rgb: 0, 255, 170;
    /* Mint Green */
    --accent-dark: #00aa77;
    --text-white: #ffffff;
    --text-grey: #8a8a8a;
    --shadow: rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] {
    --bg-dark: #080808;
    --bg-medium: #111111;
    --bg-light: #222222;
    --accent: #d80000;
    --accent-rgb: 216, 0, 0;
    --accent-dark: #8b0000;
}

[data-theme="neon"] {
    --bg-dark: #0d001a;
    --bg-medium: #1a0033;
    --bg-light: #2a004d;
    --accent: #ff00ff;
    --accent-rgb: 255, 0, 255;
    --accent-dark: #990099;
}

[data-theme="light"] {
    --bg-dark: #f0f0f0;
    --bg-medium: #e4e4e4;
    --bg-light: #c0c0c0;
    --accent: #0088ff;
    --accent-rgb: 0, 136, 255;
    --accent-dark: #0055aa;
    --shadow: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .plugin-container {
    --text-white: #121212;
    --text-grey: #555555;
    color: var(--text-white);
}

/* Light Theme Specific Overrides */
[data-theme="light"] .env-graph {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .slider-thumb {
    background: #000000;
}

[data-theme="light"] .slider-track {
    background: #c0c0c0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    user-select: none;
}

body {
    background: var(--bg-darker);
    color: var(--text-white);
    overflow-x: hidden;
}

/* MARKETING NAV */
.marketing-nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.nav-logo {
    font-family: 'Impact', sans-serif;
    font-style: italic;
    font-size: 28px;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 2px;
}

/* Modal CSS for Interactive Demo */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.modal-content {
    position: relative;
    width: 95vw;
    max-width: 1080px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.close-modal-btn:hover {
    opacity: 1;
}

/* Ensure the demo in the modal scrolls if the screen is too short, but usually fits */
.modal-content .plugin-container {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    max-height: 100%;
    overflow-y: auto;
}

/* Hide scrollbar for a cleaner look but keep functionality */
.modal-content .plugin-container::-webkit-scrollbar {
    width: 6px;
}

.modal-content .plugin-container::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

.modal-content .plugin-container::-webkit-scrollbar-thumb {
    background: var(--bg-light);
    border-radius: 10px;
}

.v-tag {
    font-size: 14px;
    color: var(--accent);
    margin-left: 5px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 800;
}

.nav-links a {
    color: var(--text-grey);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-white);
}

.btn-primary-small {
    background: var(--accent);
    color: var(--bg-darker);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(var(--accent-rgb), 0.5);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 180px 20px 100px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--accent);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-darker);
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.3);
    transition: transform 0.2s;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.stat {
    color: var(--text-grey);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat strong {
    color: var(--text-white);
    font-size: 30px;
    display: block;
    margin-bottom: 5px;
    font-weight: 900;
}

/* Glows */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.glow-1 {
    width: 500px;
    height: 500px;
    top: 0;
    left: 10%;
    background: var(--accent);
}

.glow-2 {
    width: 600px;
    height: 600px;
    top: 20%;
    right: 10%;
    background: #0088ff;
}

/* INTERACTIVE DEMO (The Replica) */
.demo-section {
    padding: 50px 20px 100px;
    position: relative;
    z-index: 20;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-grey);
    font-size: 16px;
    line-height: 1.6;
}

.plugin-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    transform: perspective(2000px) rotateX(10deg) scale(0.95);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.plugin-wrapper:hover {
    transform: perspective(2000px) rotateX(0deg) scale(1.0);
}

/* === THE PLUGIN CSS (Imported from previous version) === */
.plugin-container {
    width: 100%;
    max-width: 1080px;
    background: var(--bg-dark);
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 1px 1px var(--bg-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    pointer-events: auto;
}

.header {
    height: 60px;
    background: var(--bg-dark);
    border-bottom: 2px solid var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    text-decoration: none;
    position: relative;
    width: 200px;
    text-align: center;
}

.logo-text {
    font-family: 'Impact', sans-serif;
    font-style: italic;
    font-size: 32px;
    letter-spacing: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s, color 0.3s;
    white-space: nowrap;
}

.default-text {
    color: var(--accent);
    opacity: 1;
}

.hover-text {
    color: var(--text-white);
    opacity: 0;
}

.logo:hover .default-text {
    opacity: 0;
}

.logo:hover .hover-text {
    opacity: 1;
}

.preset-browser {
    display: flex;
    background: var(--bg-medium);
    border: 1px solid var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.preset-browser button {
    background: transparent;
    border: none;
    color: var(--text-white);
    padding: 8px 12px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
}

.preset-browser button:hover {
    background: var(--bg-light);
}

.preset-name {
    border-left: 1px solid var(--bg-light) !important;
    border-right: 1px solid var(--bg-light) !important;
    min-width: 120px;
}

.theme-selector {
    background: var(--bg-medium);
    color: var(--text-white);
    border: 1px solid var(--bg-light);
    border-radius: 4px;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

.grid-main {
    display: flex;
    flex: 1;
    padding: 10px;
    gap: 10px;
}

.col-left {
    flex: 0 0 32%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.col-right {
    flex: 0 0 32%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.col-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.panel {
    background: var(--bg-medium);
    border: 1px solid var(--bg-light);
    border-radius: 6px;
    padding: 10px;
    box-shadow: inset 0 2px 10px var(--shadow), 0 2px 5px var(--shadow);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bg-light);
    padding-bottom: 6px;
    margin-bottom: 10px;
}

.panel-header h2 {
    font-size: 11px;
    color: var(--text-white);
    letter-spacing: 1px;
    font-weight: 800;
}

.toggle-btn {
    background: var(--bg-dark);
    color: var(--text-grey);
    border: 1px solid var(--bg-light);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-btn.bg-accent {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 10px var(--accent-dark);
    border-color: var(--accent);
}

.knobs-row {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.knob-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: ns-resize;
}

.knob-dial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-dark);
    position: relative;
    box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: rotate(-135deg);
    transition: background 0.3s;
}

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

.knob-indicator {
    width: 2px;
    height: 12px;
    background: var(--bg-dark);
    position: absolute;
    top: 2px;
    left: 19px;
    border-radius: 2px;
}

.mini-knob .knob-dial {
    width: 30px;
    height: 30px;
}

.mini-knob .knob-indicator {
    left: 14px;
    top: 1px;
    height: 10px;
}

.large .knob-dial {
    width: 60px;
    height: 60px;
}

.large .knob-indicator {
    left: 29px;
    top: 3px;
    height: 15px;
}

.label {
    font-size: 9px;
    color: var(--text-grey);
    letter-spacing: 0.5px;
    font-weight: 600;
}

.waveform-selectors,
.filter-types,
.lfo-waves {
    display: flex;
    gap: 5px;
}

.osc-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: var(--bg-dark);
    border-radius: 4px;
    margin-bottom: 10px;
}

.wave-btn,
.filter-btn {
    background: var(--bg-dark);
    color: var(--text-white);
    border: 1px solid var(--bg-light);
    border-radius: 4px;
    width: 30px;
    height: 30px;
    font-size: 12px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.filter-btn {
    width: auto;
    padding: 0 15px;
}

.wave-btn.active,
.filter-btn.active {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 10px var(--accent-dark);
    border-color: var(--accent);
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.filter-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filter-right {
    display: flex;
    gap: 20px;
}

.filter-type-display {
    background: var(--bg-dark);
    font-size: 10px;
    color: var(--text-grey);
    padding: 4px 10px;
    border-radius: 10px;
    margin-top: 5px;
}

.center-display-panel {
    flex: 1;
    min-height: 250px;
    background: var(--bg-dark);
    border-radius: 6px;
    border: 1px solid var(--bg-light);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#scopeCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.env-content {
    display: flex;
    justify-content: flex-start;
    /* Keep everything aligned to left */
    align-items: stretch;
    height: 90px;
    gap: 15px;
    /* Spacing between sliders and graph */
}

.sliders {
    flex: 0 0 160px;
    /* Fixed width for sliders container */
    display: flex;
    justify-content: space-between;
    /* Space out the 4 sliders evenly inside */
    padding-top: 10px;
}

.slider-track {
    width: 4px;
    height: 60px;
    background: var(--bg-dark);
    border-radius: 2px;
    position: relative;
}

.slider-thumb {
    width: 16px;
    height: 8px;
    background: var(--text-white);
    position: absolute;
    left: -6px;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    cursor: ns-resize;
}

.env-graph {
    flex: 1;
    height: 100%;
    min-height: 90px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-left: 15px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.labels-row {
    margin-top: 4px;
    width: 160px;
    /* Match width of .sliders */
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: var(--text-grey);
    padding: 0 5px;
    /* Slight padding to align letters precisely under thumbs */
}

.footer-effects {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: var(--bg-dark);
    border-top: 2px solid var(--bg-light);
    gap: 10px;
}

.fx-module {
    flex: 1;
    background: var(--bg-medium);
    border: 1px solid var(--bg-light);
    border-radius: 4px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.fx-label {
    font-size: 10px;
    color: var(--text-white);
    font-weight: 800;
    margin-bottom: 5px;
}

.fx-module .knobs-row {
    padding: 5px 0;
    display: flex;
    gap: 5px;
}

/* MARKETING FEATURES SECTION */
.marketing-features {
    max-width: 1200px;
    margin: 50px auto 100px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.feat-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 15px;
}

/* PRESETS SECTION */
.presets-section {
    max-width: 1000px;
    margin: 50px auto 100px;
    padding: 0 20px;
}

.factory-banner {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    padding: 40px;
    display: flex;
    align-items: center;
    transition: transform 0.3s, border-color 0.3s;
}

.factory-banner:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.factory-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb), 0.05) 0%, transparent 50%);
    z-index: 0;
}

.factory-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

.factory-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(var(--accent-rgb), 0.05);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.factory-text {
    flex: 1;
}

.factory-text h3 {
    color: var(--text-white);
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.factory-text p {
    color: var(--text-grey);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
}

.factory-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feat-tag {
    font-size: 12px;
    color: var(--text-grey);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.factory-status {
    flex-shrink: 0;
    align-self: center;
}

.status-badge {
    background: var(--accent);
    color: var(--bg-darker);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.2);
}

@media (max-width: 768px) {
    .factory-banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .factory-tags {
        justify-content: center;
    }

    .factory-status {
        margin-top: 20px;
    }
}

.presets-cta {
    text-align: center;
    margin-top: 40px;
}

/* FOOTER */
.site-footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-grey);
    font-size: 14px;
}

/* FAQ SECTION */
.faq-section {
    max-width: 800px;
    margin: 50px auto 100px;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-white);
    letter-spacing: 1px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 12px;
    transition: background 0.3s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-item h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: var(--accent);
    font-weight: 600;
}

.faq-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-grey);
}

/* THANK YOU MODAL SPECIFICS */
.thank-you-content {
    background: var(--bg-medium);
    border: 1px solid var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--bg-light);
    transform: scale(0.9);
}

.modal-overlay.active .thank-you-content {
    transform: scale(1);
}

.success-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-body h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 15px;
}

.thank-you-body p {
    color: var(--text-grey);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.installation-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.installation-steps .step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.installation-steps .step-num {
    background: var(--accent);
    color: var(--bg-darker);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.installation-steps .step p {
    margin: 0;
    font-size: 14px;
    color: var(--text-white);
}

.installation-steps .step p strong {
    color: var(--accent);
}