#logoclick {
    z-index: 100000;
    pointer-events: all;
    cursor: pointer;
}
.hero {
    background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 100%);
    color: black;
    padding: 60px 20px;
    text-align: center;
}
.hero h1 {
    font-size: 3em;
    margin: 0 0 20px 0;
}
.hero p {
    font-size: 1.4em;
    margin: 0 0 30px 0;
    opacity: 0.95;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-buttons button {
    padding: 15px 30px;
    font-size: 1.1em;
    cursor: pointer;
    border: 2px solid white;
    border-radius: 5px;
    background: white;
    color: #7CA3D1;
    font-weight: bold;
}
.hero-buttons button:hover {
    background: rgba(255,255,255,0.6);
    color: black;
}
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.benefit-card h3 {
    margin-top: 0;
    color: #7CA3D1;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.feature-item {
    padding: 20px;
    background: white;
    border-left: 4px solid #7CA3D1;
    border-radius: 5px;
}
.feature-item h4 {
    margin-top: 0;
    color: #7CA3D1;
}
.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.use-case {
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.use-case h4 {
    margin-top: 0;
    color: #7CA3D1;
    font-size: 1.3em;
}
.cta-box {
    background: #7CA3D1;
    color: white;
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}
.cta-box h2 {
    color: white;
    margin-top: 0;
}
.cta-box button {
    padding: 15px 40px;
    font-size: 1.2em;
    cursor: pointer;
    border: 2px solid white;
    border-radius: 5px;
    background: white;
    color: #7CA3D1;
    font-weight: bold;
    margin: 10px;
}
.cta-box button:hover {
    background: transparent;
    color: white;
}
.highlight-box {
    background: #f0f0f0;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}
.comparison-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.comparison-table th {
    background: #7CA3D1;
    color: white;
    padding: 15px;
    text-align: left;
}
.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}
.comparison-table tr:hover {
    background: #f8f9fa;
}
.checkmark {
    color: #27ae60;
    font-weight: bold;
}
.section-title {
    font-size: 2.5em;
    margin: 30px 0 15px 0;
    text-align: center;
    color: #516888;
}
.subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
}
.section-alt {
    background: #f8f9fa;
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1.1em;
    }
    .section-title {
        font-size: 2em;
    }
}