body {
    background: #ffffff;
    color: #111;
    overflow-x: hidden;
}

.g1cam-hero {
    padding: 120px 0 90px;
    background: linear-gradient(135deg, #f5f7fb 0%, #ffffff 100%);
}

.g1cam-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.g1cam-hero .g1cam-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.g1cam-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 113, 227, 0.08);
    color: #0b5bd3;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 18px;
}

.g1cam-title {
    font-size: 4.2em;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.g1cam-subtitle {
    font-size: 1.3em;
    line-height: 1.7;
    color: #1d1d1f;
    margin-bottom: 32px;
}

.g1cam-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.g1cam-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #0b5bd3;
    transition: all 0.3s ease;
}

.g1cam-btn.primary {
    background: #0b5bd3;
    color: #fff;
    box-shadow: 0 10px 20px rgba(11, 91, 211, 0.2);
}

.g1cam-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(11, 91, 211, 0.25);
}

.g1cam-btn.outline {
    background: transparent;
    color: #0b5bd3;
}

.g1cam-btn.outline:hover {
    background: rgba(11, 91, 211, 0.08);
}

.g1cam-btn.ghost {
    background: transparent;
    border-color: rgba(17, 17, 17, 0.2);
    color: #111;
}

.g1cam-btn.ghost:hover {
    border-color: #111;
}

.g1cam-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.g1cam-stat {
    padding: 16px 18px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    display: grid;
    gap: 6px;
}

.stat-value {
    font-size: 1.2em;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9em;
    color: #5f6368;
}

.g1cam-hero-media {
    display: flex;
    justify-content: center;
}

.g1cam-device {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.25));
}

.g1cam-section {
    padding: 90px 0;
}

.g1cam-section-header {
    margin-bottom: 40px;
}

.g1cam-section-title {
    font-size: 2.6em;
    font-weight: 700;
    margin-bottom: 12px;
}

.g1cam-section-subtitle {
    color: #1d1d1f;
    font-size: 1.1em;
}

.g1cam-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.g1cam-card {
    padding: 26px;
    border-radius: 18px;
    background: #f5f7fb;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.g1cam-card h3 {
    font-size: 1.25em;
    margin-bottom: 12px;
}

.g1cam-card p {
    color: #1d1d1f;
    line-height: 1.6;
}

.g1cam-specs {
    background: #fafafa;
}

.g1cam-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.g1cam-spec {
    background: #fff;
    border-radius: 16px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: grid;
    gap: 6px;
}

.spec-label {
    font-size: 0.95em;
    color: #5f6368;
}

.spec-value {
    font-weight: 600;
}

.g1cam-cta {
    padding: 100px 0 120px;
}

.g1cam-cta-card {
    background: #fff;
    color: #111;
    border-radius: 26px;
    padding: 50px;
    display: grid;
    gap: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.g1cam-cta-card p {
    color: #1d1d1f;
}

.g1cam-cta .g1cam-btn.primary {
    background: #0b5bd3;
    color: #fff;
    border-color: #0b5bd3;
}

.g1cam-cta .g1cam-btn.primary:hover {
    background: #094fb8;
    border-color: #094fb8;
}

.g1cam-cta .g1cam-btn.ghost {
    color: #0b5bd3;
    border-color: #0b5bd3;
}

.g1cam-cta .g1cam-btn.ghost:hover {
    background: rgba(11, 91, 211, 0.08);
}

@media (max-width: 1024px) {
    .g1cam-hero .g1cam-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .g1cam-actions {
        justify-content: center;
    }

    .g1cam-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .g1cam-grid,
    .g1cam-specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .g1cam-title {
        font-size: 3em;
    }

    .g1cam-section-title {
        font-size: 2.2em;
    }

    .g1cam-cta-card {
        padding: 36px;
    }
}
