/* Main Page Styles (for PG approval standard landing) */
html, body {
    overflow-y: auto !important;
    height: auto !important;
    background: var(--bg) !important;
}

.main-wrapper {
    width: 100%;
    min-height: 100dvh;
    background: var(--bg);
    display: flex;
    justify-content: center;
}

.main-container {
    width: 100%;
    max-width: 470px;
    min-height: 100dvh;
    background: var(--container-bg);
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.main-header {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 20px;
    color: white;
}

.header-btn {
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.header-btn:hover {
    background: rgba(255,255,255,0.2);
}

main {
    padding-top: 70px;
}

.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    background: radial-gradient(circle at center, rgba(192, 80, 110, 0.12) 0%, transparent 60%);
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
    background: linear-gradient(to bottom right, #ffffff, #A89AAE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 48px;
    font-weight: 500;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: white;
    font-size: 18px;
    font-weight: 800;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(192, 80, 110, 0.3);
    letter-spacing: -0.01em;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(192, 80, 110, 0.4);
}

.feature-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px 140px;
    text-align: center;
}

.feature-section h2 {
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 48px 32px;
    border-radius: 24px;
    text-align: left;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.04);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--accent-light);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.main-footer {
    background: transparent;
    padding: 30px 20px 40px;
    border-top: none;
}

.footer-inner {
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.footer-info {
    color: rgba(255,255,255,0.2);
    font-size: 11px;
    line-height: 1.5;
}

.footer-info strong {
    color: rgba(255,255,255,0.3);
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 16px;
    margin-top: 4px;
    justify-content: center;
}

.footer-links a {
    color: rgba(255,255,255,0.25);
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
}

.copyright {
    margin-top: 4px;
    color: rgba(255,255,255,0.15);
    font-size: 10px;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 16px; }
    .feature-section { padding: 60px 24px 100px; }
}
