/* CompleteSolutions4U — public site pages */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

.hi {
    font-family: 'Noto Sans Devanagari', 'Outfit', sans-serif;
}

.site-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(7, 8, 20, 0.75);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 200;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.site-brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    display: grid;
    place-items: center;
    font-family: var(--font-astro);
    font-size: 0.72rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-glow), var(--gold));
    color: var(--text-dark);
}

.site-brand-logo {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.site-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.site-brand-text strong {
    font-family: var(--font-astro);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.site-brand-text span {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--gold);
}

.site-nav-actions {
    display: flex;
    gap: 0.6rem;
    margin-left: 0.5rem;
}

.btn-sm {
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
}

.site-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.45rem 0.65rem;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.1rem;
}

main.site-main {
    flex: 1;
}

/* Hero */
.landing-hero {
    padding: 4rem 2rem 3rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.landing-hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.landing-hero-copy .tagline {
    color: var(--gold);
    font-family: var(--font-astro);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.landing-hero-copy .lede {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.landing-hero-visual {
    position: relative;
}

.astro-showcase {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.astro-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.12), transparent 55%);
    pointer-events: none;
}

.astro-showcase-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.astro-showcase h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.astro-showcase p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.feature-list li::before {
    content: "✦";
    color: var(--gold);
    flex-shrink: 0;
}

/* Sections */
.site-section {
    width: 100%;
    padding: 3.5rem 2rem;
}

.section-head {
    text-align: left;
    width: 100%;
    margin: 0 0 2.5rem;
}

.section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.65rem;
}

.section-head p {
    color: var(--text-muted);
    line-height: 1.6;
}

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

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.75rem;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-4px);
}

.step-num {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-family: var(--font-astro);
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.cta-band {
    margin: 0 2rem 3rem;
    width: calc(100% - 4rem);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(79, 70, 229, 0.08));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;
    padding: 2.5rem;
    text-align: center;
}

.cta-band h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.cta-band p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Legal / content pages */
.page-content {
    width: 100%;
    padding: 3rem 2rem 4rem;
}

.page-content h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 0.5rem;
}

.page-meta {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.page-content h2 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--gold);
}

.page-content p,
.page-content li {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.85rem;
}

.page-content ul,
.page-content ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.5rem;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--gold);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: rgba(4, 5, 12, 0.6);
    border-top: 1px solid var(--glass-border);
    padding: 2.5rem 2rem 1.5rem;
    margin-top: auto;
}

.footer-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.75rem;
}

.footer-col h4 {
    font-family: var(--font-astro);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    width: 100%;
    margin: 2rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.disclaimer-box {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 1rem 0;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.checkbox-group a {
    color: var(--gold);
}

/* Wallet & Pricing */
.wallet-container {
    margin-top: 2rem;
}

.wallet-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5rem;
}

.wallet-balance-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 220px;
}

.wallet-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.wallet-balance-card h2 {
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
}

.wallet-status {
    font-size: 0.85rem;
}

.amount-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.amount-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    transition: var(--transition);
}

.amount-chip:hover,
.amount-chip.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.pricing-product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.5rem;
    margin: 1.5rem 0 2rem;
}

.pricing-product-card h2 {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.pricing-product-card ul {
    padding-left: 1.2rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .landing-hero {
        grid-template-columns: 1fr;
        padding-top: 2.5rem;
    }

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

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

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

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

@media (max-width: 900px) {
    #admin-manual-credit-form {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 720px) {
    .site-menu-btn {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 4.2rem;
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        align-items: stretch;
        background: rgba(7, 8, 20, 0.97);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        padding: 1rem;
        display: none;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav-actions {
        flex-direction: column;
        margin-left: 0;
    }

    .site-header {
        padding: 1rem;
    }
}
