/* MobaXterm Official v24 Theme */
:root {
    --mob-orange: #FF7F27;
    /* Official Action Color */
    --mob-blue: #0056B3;
    --mob-dark: #2D2D2D;
    --mob-sidebar: #3B4252;
    --text-main: #333;
    --bg-light: #f5f5f5;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #fff;
    color: var(--text-main);
}

header {
    background: #fff;
    border-bottom: 3px solid var(--mob-blue);
    padding: 0.8rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--mob-dark);
}

.logo img {
    height: 42px;
    width: 42px;
}

.hero {
    background: linear-gradient(180deg, #F9F9F9 0%, #E6E6E6 100%);
    padding: 4rem 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--mob-blue);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-download {
    background-color: var(--mob-orange);
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.btn-download:hover {
    background-color: #e66a1b;
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1.4;
    position: relative;
}

.hero-visual img {
    width: 100%;
    max-width: 650px;
    /* Constrain image size */
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
    background: #fff;
    /* Ensure it looks like a window */
}

/* Feature Grid matching official icons style */
.features {
    padding: 4rem 10%;
    background: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: box-shadow 0.3s;
}

.feature-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item h3 {
    color: var(--mob-blue);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
}

footer {
    background: #333;
    color: #888;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}