/* 
   Savant Tech - Enterprise Landing Page Styles 
   Theme: Modern, Corporate, Secure, Minimalist
*/

:root {
    /* Color Palette */
    --primary-color: #471421;
    /* Wine/Burgundy - Deep corporate red */
    --secondary-color: #631c2f;
    /* Lighter Burgundy for cards/sections */
    --accent-color: #ff6b00;
    /* Vibrant Orange */
    --accent-gradient-start: #ff4d00;
    --accent-gradient-end: #ffb700;
    --accent-hover: #e65100;
    /* Darker Orange */
    --text-main: #334155;
    /* Slate 700 - Readable dark text for light backgrounds */
    --text-light: #f8fafc;
    /* Slate 50 - Text for dark backgrounds */
    --text-muted: #64748b;
    /* Slate 500 */
    --background-light: #ffffff;
    --background-off-white: #f1f5f9;
    /* Slate 100 */
    --success-color: #10b981;
    /* Emerald 500 */
    --border-color: #e2e8f0;
    /* Slate 200 */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Layout */
    --container-width: 1200px;
    --border-radius: 0px;
    /* Removed rounded corners */
    --chamfer: 15px;
    /* Size of the angle cut */

    /* Typography */
    --font-heading: 'Audiowide', cursive;
    --font-body: 'Audiowide', cursive;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
    /* Offset for fixed navbar + extra breathing room */
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--background-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    letter-spacing: -0.02em;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    letter-spacing: 0.05em;
    border: none;
    clip-path: polygon(var(--chamfer) 0,
            100% 0,
            100% calc(100% - var(--chamfer)),
            calc(100% - var(--chamfer)) 100%,
            0 100%,
            0 var(--chamfer));
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gradient-start) 0%, var(--accent-gradient-end) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    /* Orange glow */
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent-gradient-start) 0%, var(--accent-gradient-end) 100%);
    color: white;
    border: none;
    width: 100%;
    margin-top: var(--spacing-sm);
    clip-path: polygon(var(--chamfer) 0,
            100% 0,
            100% calc(100% - var(--chamfer)),
            calc(100% - var(--chamfer)) 100%,
            0 100%,
            0 var(--chamfer));
}

.btn-submit:hover {
    background-color: var(--accent-hover);
}

/* Navigation */
.navbar {
    background: linear-gradient(to right, #2a0c13 0%, #631c2f 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    /* Stacking context holder */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.logo-link {
    display: flex;
    align-items: center;
    z-index: 100;
    /* Lower than mobile menu */
    /* Garante que fique sobre o menu mobile se necessário */
}

.logo-img {
    height: 125px;
    /* Ajuste conforme a proporção do seu logo */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Tenta integrar o fundo do GIF */
}

.logo-mobile-menu {
    display: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 2rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: white;
}

.btn-nav {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-nav:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #2a0c13 0%, #631c2f 100%);
    color: white;
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.subheadline {
    font-size: 1.5rem;
    color: var(--text-muted);
    color: #94a3b8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.micro-text {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Problem Section */
.problem {
    background-color: var(--background-off-white);
}

.card-problem {
    background: white;
    padding: 2.5rem;

    border-radius: 0;
    border: none;
    clip-path: polygon(20px 0,
            100% 0,
            100% calc(100% - 20px),
            calc(100% - 20px) 100%,
            0 100%,
            0 20px);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.card-problem:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-problem {
    font-size: 2rem;
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.card-problem h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-problem p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Solution Section */
.solution-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.solution-list i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.solution-visual {
    background: linear-gradient(to right, #2a0c13 0%, #631c2f 100%);
    border-radius: 0;
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
    padding: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Abstract Server Animation */
.server-illustration {
    width: 200px;
    height: 300px;
    background: #334155;
    border-radius: 4px;
    padding: 10px;
    border: 2px solid #475569;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.server-unit {
    height: 33%;
    background: linear-gradient(to right, #2a0c13 0%, #631c2f 100%);
    border-radius: 2px;
    border: 1px solid #74253a;
    display: flex;
    align-items: center;
    padding: 0 10px;
    justify-content: flex-end;
    gap: 8px;
    position: relative;
}

.server-unit::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 2px;
    background: #334155;
}

.blink {
    width: 6px;
    height: 6px;
    background-color: #ffb700;
    border-radius: 50%;
    animation: blink-animation 1.5s infinite;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.7s;
}

@keyframes blink-animation {

    0%,
    100% {
        opacity: 0.2;
        box-shadow: 0 0 0 transparent;
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 8px #ffb700;
    }
}

/* Features */
.features {
    background-color: white;
}

.feature-card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 0;
    text-align: center;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    background: #f8fafc;
    /* Slight contrast since border is cut */
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 1;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Differentials */
.differentials {
    background: linear-gradient(to right, #2a0c13 0%, #631c2f 100%);
    color: white;
}

.differentials h2 {
    color: white;
}

.diff-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.diff-item h3 {
    color: var(--accent-gradient-end);
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.diff-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Implementation */
.implementation {
    background-color: var(--background-off-white);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2.5rem;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    z-index: 1;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
}

/* Security */
.security {
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23f1f5f9" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    background-color: white;
}

.security-container {
    background: white;
    padding: 3rem;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

.security-list {
    list-style-type: none;
    margin-top: 2rem;
}

.security-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.security-list li:last-child {
    border-bottom: none;
}

/* Authority */
.authority {
    background: linear-gradient(to right, #2a0c13 0%, #631c2f 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.authority-text {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* CTA & Form */
.cta-section {
    background: linear-gradient(180deg, var(--background-off-white) 0%, white 100%);
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cta-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.video-container {
    margin-top: 2rem;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-wrapper {
    background: white;
    padding: 2.5rem;
    background: white;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    border: 1px solid var(--border-color);
    clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hidden-verify {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: -9999px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.privacy-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(to right, #2a0c13 0%, #631c2f 100%);
    color: white;
    padding: 4rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
    align-items: center;
}

.footer-logo {
    max-width: 350px;
    height: auto;
    object-fit: contain;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--accent-gradient-end);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    background-color: #1a050b;
    /* Very dark burgundy */
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-container,
    .cta-container,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    display: block;
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
        /* Center logo in mobile */
        position: relative;
    }

    .logo-link {
        margin-left: 0;
        z-index: 100;
        /* Lower than menu */
    }

    .logo-img {
        height: 60px;
        /* Smaller logo for mobile header */
    }

    .menu-toggle {
        display: block;
        position: fixed;
        right: 20px;
        top: 25px;
        z-index: 5000;
        /* Always on top of everything */
        color: white;
        font-size: 2rem;
        cursor: pointer;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #2a0c13;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 4000;
        /* Higher than navbar, lower than toggle */
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    /* Hide logo when menu is open */
    body.menu-open .logo-link {
        opacity: 0;
        visibility: hidden;
    }

    .nav-links a {
        margin: 1rem 0;
        font-size: 1.5rem;
        /* Larger links for full screen */
        width: 100%;
        text-align: center;
        padding: 1rem;
        display: block;
    }

    .btn-nav {
        margin-top: 1rem;
        width: 80%;
        /* Don't take full width to look better */
        max-width: 300px;
    }

    /* Centering and adjusting Section Titles on Mobile */
    .section-title {
        text-align: center;
        font-size: 1.8rem;
        /* Smaller font to fit long words like "Funcionalidades" */
        padding: 0 10px;
        /* Safety margin from edges */
        line-height: 1.2;
        word-wrap: break-word;
    }

    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .video-container {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    max-width: 600px;
    width: 100%;
    padding: 2rem;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    display: none;
    /* Initially hidden */
}

.modal.active {
    display: block;
    animation: modalSlideUp 0.3s ease forwards;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-content h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.modal-content p {
    margin-bottom: 1rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    font-size: 32px;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 2000;
    transition: transform 0.3s ease, background-color 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
}

.modal-content ul {
    list-style-type: none;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.modal-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

.modal-content ul li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}