/* ================================================
   PINGGALAXY HOMEPAGE
   ================================================ */

/* Scoped reset - only affects .pg-home and its children */
.pg-home {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--pg-dark);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

.pg-home *,
.pg-home *::before,
.pg-home *::after {
    box-sizing: border-box;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(135deg, var(--pg-bg-page) 0%, #e8e8ed 100%);
    display: flex;
    align-items: center;
    padding: 80px 5% 60px 5%;
    position: relative;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--pg-dark);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-content .tagline {
    font-size: 1.4rem;
    color: var(--pg-grey);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-content .product-name {
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--pg-grey-light);
    margin-bottom: 12px;
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background: var(--pg-white);
    color: var(--pg-dark);
    text-decoration: none;
    border: 2px solid var(--pg-dark);
    border-radius: 2px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--pg-dark);
    color: var(--pg-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: var(--pg-grey);
    text-decoration: none;
    border: 2px solid var(--pg-border-medium);
    border-radius: 2px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-secondary:hover {
    border-color: var(--pg-dark);
    color: var(--pg-dark);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 600px;
    height: 500px;
    background: linear-gradient(135deg, var(--pg-border-medium) 0%, var(--pg-grey-light) 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

