* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: white;
    color: #111;
}

/* ========== HEADER & RESPONSIVE NAVBAR ========== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 1.8rem;
    color: #dc2626;
    font-weight: 800;
    transform: rotate(45deg);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111;
}

.logo-text span {
    font-weight: 400;
    color: #666;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #dc2626;
}

.quote-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.quote-btn:hover {
    background: #b91c1c;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #111;
    transition: all 0.3s ease;
}

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

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

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

@media (max-width: 900px) {
    .header-container {
        padding: 1rem 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .quote-btn {
        display: none;
    }
}

/* ========== REMOTEVIEWER HERO ========== */
.rv-hero {
    background: #0a0a0a;
    padding: 8rem 0 5rem;
    text-align: center;
}

.rv-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.rv-hero-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #dc2626;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.rv-hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.rv-hero-title .red-text {
    color: #dc2626;
}

.rv-hero-line {
    width: 60px;
    height: 2px;
    background: #dc2626;
    margin: 0 auto 1rem;
}

.rv-hero-text {
    font-size: 0.9rem;
    color: #888;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== OVERVIEW SECTION ========== */
.overview {
    padding: 5rem 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #dc2626;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.red-text {
    color: #dc2626;
}

.overview-line {
    width: 50px;
    height: 2px;
    background: #dc2626;
    margin: 1rem 0 1.5rem;
}

.overview-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 1rem;
    flex-wrap: wrap;
}

.download-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dc2626;
    color: white;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.download-btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.download-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #111;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.download-btn-secondary:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.download-note {
    font-size: 0.7rem;
    color: #999;
}

.overview-image {
    background: #f5f5f5;
    border: 1px solid #eee;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.placeholder-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.placeholder-content p {
    font-size: 0.9rem;
    color: #666;
}

.placeholder-content small {
    font-size: 0.7rem;
    color: #999;
}

/* ========== FEATURES SECTION ========== */
.features {
    padding: 5rem 0;
    background: #f5f5f5;
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-line {
    width: 50px;
    height: 2px;
    background: #dc2626;
    margin: 1rem auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-left: 3px solid #dc2626;
}

.feature-icon {
    font-size: 1.2rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
}

/* ========== PARAMETERS SECTION ========== */
.parameters {
    padding: 5rem 0;
    background: white;
}

.parameters-header {
    text-align: center;
    margin-bottom: 3rem;
}

.parameters-line {
    width: 50px;
    height: 2px;
    background: #dc2626;
    margin: 1rem auto 0;
}

.parameters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.param-category {
    background: #fafafa;
    padding: 1.5rem;
    border-left: 2px solid #dc2626;
}

.param-category h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

.param-category ul {
    list-style: none;
}

.param-category li {
    font-size: 0.8rem;
    color: #555;
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.param-category li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #dc2626;
}

/* ========== REQUIREMENTS SECTION ========== */
.requirements {
    padding: 5rem 0;
    background: #f5f5f5;
}

.requirements-header {
    text-align: center;
    margin-bottom: 3rem;
}

.requirements-line {
    width: 50px;
    height: 2px;
    background: #dc2626;
    margin: 1rem auto 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.req-card {
    background: white;
    padding: 2rem;
    border-top: 3px solid #dc2626;
}

.req-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

.req-card ul {
    list-style: none;
}

.req-card li {
    font-size: 0.8rem;
    color: #555;
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.req-card li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-size: 0.6rem;
}

/* ========== DOWNLOAD CTA ========== */
.download-cta {
    background: #0a0a0a;
    padding: 4rem 0;
}

.download-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.download-cta-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.download-cta-content p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: #dc2626;
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.cta-note {
    font-size: 0.7rem;
    color: #666;
    margin-top: 1.5rem;
}

/* ========== FOOTER ========== */
.footer {
    background: #050505;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    font-size: 1.5rem;
    color: #dc2626;
    transform: rotate(45deg);
}

.footer-logo span {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
}

.footer-logo span span {
    font-weight: 400;
    color: #666;
}

.footer-description {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #dc2626;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #dc2626;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #111;
    font-size: 0.7rem;
    color: #555;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .parameters-grid {
        grid-template-columns: 1fr;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rv-hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .feature-card {
        padding: 1.5rem;
    }
}


.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111;
}

.logo-text span {
    font-weight: 400;
    color: #666;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 1rem;
    }
}