/* ============================================
   LAUNCH TUBE - Complete Stylesheet
   ============================================ */

/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    background: #f9fafc;
    color: #1e1e2f;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- BUTTONS ----- */
.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 40px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    text-align: center;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: scale(1.02);
    color: #ffffff !important;
}

.btn-primary.btn-full {
    width: 100%;
}

.btn-primary.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 40px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
}

.btn-outline:hover {
    background: #2563eb;
    color: #ffffff !important;
}

.btn-outline.btn-small {
    padding: 6px 18px;
    font-size: 0.9rem;
}

/* ----- HEADER / NAV ----- */
.navbar {
    background: #ffffff;
    padding: 16px 0;
    border-bottom: 1px solid #e9edf4;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.95);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #0b1a33;
}

.logo a {
    color: #0b1a33;
}

.logo span {
    color: #2563eb;
}

.logo .domain {
    font-size: 0.7rem;
    font-weight: 400;
    color: #64748b;
    letter-spacing: 0;
    display: block;
    margin-top: -4px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
    font-weight: 500;
    flex-wrap: wrap;
}

.nav-links a {
    color: #2d3a4f;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #2563eb;
}

.nav-links .btn-primary,
.nav-links .btn-outline {
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    font-size: 1.6rem;
    background: none;
    border: none;
    color: #1e1e2f;
    cursor: pointer;
}

/* ----- HERO ----- */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #0b1a33;
    max-width: 800px;
    margin: 0 auto 16px;
}

.hero h1 span {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 28px;
}

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

.trust-badge {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #334155;
}

.trust-badge i {
    color: #2563eb;
    margin-right: 8px;
}

/* ----- SERVICES SECTION ----- */
.services-section {
    padding: 60px 0 40px;
}

.services-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.services-section .sub {
    text-align: center;
    color: #475569;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 18px 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: 0.25s ease;
    border: 1px solid #eef2f8;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
    border-color: #dbe3f0;
}

.service-card .platform-icon {
    font-size: 2.8rem;
    margin-bottom: 8px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card ul {
    list-style: none;
    margin: 14px 0 18px;
    padding: 0;
}

.service-card ul li {
    padding: 4px 0;
    color: #334155;
    font-size: 0.95rem;
    border-bottom: 1px dashed #eef2f8;
}

.service-card ul li:last-child {
    border-bottom: none;
}

/* ----- HOW IT WORKS ----- */
.how-it-works-section {
    padding: 60px 0;
    background: #ffffff;
}

.how-it-works-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    background: #2563eb;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0 auto 12px;
}

.step h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.step p {
    color: #475569;
    font-size: 0.95rem;
}

/* ----- WHY US ----- */
.why-us-section {
    padding: 60px 0 40px;
}

.why-us-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.benefit {
    text-align: center;
    max-width: 200px;
}

.benefit i {
    font-size: 2.4rem;
    color: #2563eb;
    margin-bottom: 8px;
}

.benefit h4 {
    font-size: 1.1rem;
}

.benefit p {
    color: #475569;
    font-size: 0.95rem;
}

/* ----- PRICING SECTION ----- */
.pricing-section {
    padding: 60px 0 40px;
    background: #ffffff;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-section .sub {
    text-align: center;
    color: #475569;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 20px 0;
}

.pricing-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid #eef2f8;
    transition: 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    border: 2px solid #2563eb;
    transform: scale(1.02);
    background: #ffffff;
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-header .price {
    font-size: 3rem;
    font-weight: 800;
    color: #0b1a33;
    margin: 12px 0;
}

.pricing-header .price::after {
    content: '/mo';
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
}

.pricing-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin: 20px 0 30px;
    text-align: left;
    padding: 0;
}

.pricing-features li {
    padding: 8px 0;
    color: #334155;
    border-bottom: 1px solid #eef2f8;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #2563eb;
    margin-right: 10px;
}

/* ----- SOCIAL PROOF ----- */
.social-proof-section {
    padding: 60px 0;
    background: #f8fafc;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0b1a33;
}

.stat-label {
    display: block;
    color: #475569;
    font-size: 0.95rem;
}

.testimonial {
    margin-top: 32px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
    padding: 24px 32px;
    border-radius: 16px;
    border: 1px solid #eef2f8;
}

.testimonial .stars {
    color: #f59e0b;
    margin-bottom: 8px;
}

.testimonial p {
    font-style: italic;
    color: #1e293b;
    font-size: 1.05rem;
}

.testimonial-author {
    display: block;
    margin-top: 8px;
    font-weight: 600;
    color: #0b1a33;
}

/* ----- FAQ SECTION ----- */
.faq-section {
    padding: 60px 0 40px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-section .sub {
    text-align: center;
    color: #475569;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid #eef2f8;
}

.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #0b1a33;
}

.faq-item p {
    color: #475569;
    margin: 0;
}

/* ----- FINAL CTA ----- */
.final-cta-section {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #0b1a33 0%, #1e3a5f 100%);
    color: #ffffff;
}

.final-cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

.final-cta-section p {
    color: #94a3b8;
    margin: 8px 0 24px;
}

.final-cta-section .btn-primary {
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

/* ----- FOOTER ----- */
.footer {
    background: #0b1a33;
    color: #cbd5e1;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-brand .logo {
    color: #fff;
    font-size: 1.5rem;
}

.footer-brand .logo span {
    color: #60a5fa;
}

.footer-brand .logo .domain {
    color: #94a3b8;
}

.footer-description {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 8px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-links-group h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer-links-group a {
    display: block;
    color: #94a3b8;
    padding: 4px 0;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links-group a:hover {
    color: #60a5fa;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1e2d4a;
    border-radius: 50%;
    color: #94a3b8;
    font-size: 1.2rem;
    transition: 0.2s;
}

.footer-social a:hover {
    background: #2563eb;
    color: #fff;
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #1e2d4a;
    flex-wrap: wrap;
    gap: 12px;
}

.copy {
    color: #7f8ea3;
    font-size: 0.85rem;
}

.payment-methods {
    display: flex;
    gap: 12px;
    font-size: 1.5rem;
    color: #94a3b8;
}

.payment-methods i {
    opacity: 0.7;
    transition: 0.2s;
}

.payment-methods i:hover {
    opacity: 1;
    color: #fff;
}

/* ----- UTILITY CLASSES ----- */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        padding: 16px 0 8px;
        border-top: 1px solid #e9edf4;
        margin-top: 12px;
        align-items: stretch;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 8px 0;
        text-align: center;
    }

    .nav-links .btn-primary,
    .nav-links .btn-outline {
        text-align: center;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 20px auto;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    
    .benefits-grid {
        gap: 30px;
    }
    
    .stats-grid {
        gap: 30px;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .trust-badge {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-header .price {
        font-size: 2.5rem;
    }
    
    .final-cta-section h2 {
        font-size: 1.8rem;
    }
}

/* ----- AUTH PAGES (Login / Signup) ----- */
.auth-section {
    padding: 60px 0 80px;
    flex: 1;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.auth-box {
    max-width: 450px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 36px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f8;
    width: 100%;
}

.auth-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b1a33;
}

.auth-header p {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 4px;
}

.auth-form .form-group {
    margin-bottom: 18px;
}

.auth-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #1e293b;
}

.auth-form .input-with-icon {
    position: relative;
}

.auth-form .input-with-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
}

.auth-form .input-with-icon input {
    width: 100%;
    padding: 12px 14px 12px 44px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.2s;
    background: #f8fafc;
    color: #0b1a33;
}

.auth-form .input-with-icon input:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.auth-form .input-with-icon input::placeholder {
    color: #94a3b8;
}

.auth-form small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 0.8rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 18px 0 22px;
    flex-wrap: wrap;
    gap: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #475569;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
    cursor: pointer;
}

.checkbox-label span {
    user-select: none;
}

.checkbox-label a {
    color: #2563eb;
    font-weight: 500;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.forgot-link {
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider span {
    background: #ffffff;
    padding: 0 16px;
    color: #94a3b8;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.auth-footer {
    text-align: center;
    margin-top: 4px;
}

.auth-footer p {
    color: #64748b;
    font-size: 0.95rem;
}

.auth-footer a {
    color: #2563eb;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ----- ALERTS ----- */
.alert {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid transparent;
}

.alert i {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.alert-error i {
    color: #dc2626;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}

.alert-success i {
    color: #22c55e;
}

/* ============================================
   ADDITIONAL PAGE STYLES
   ============================================ */

/* ----- PAGE HERO ----- */
.page-hero {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8edf5 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b1a33;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 1.2rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

/* ----- SERVICES PAGE ----- */
.services-detailed {
    padding: 40px 0 20px;
}

.service-platform {
    margin-bottom: 50px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid #eef2f8;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.platform-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

.service-table-wrapper {
    overflow-x: auto;
}

.service-table {
    width: 100%;
    border-collapse: collapse;
}

.service-table th {
    background: #f8fafc;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e9edf4;
}

.service-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eef2f8;
}

.service-table tr:hover {
    background: #f8fafc;
}

/* ----- CUSTOM QUOTE ----- */
.custom-quote {
    text-align: center;
    padding: 40px 0;
    background: #f8fafc;
    border-radius: 20px;
    margin: 20px 0 40px;
}

.custom-quote h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.custom-quote p {
    color: #475569;
    margin-bottom: 20px;
}

/* ----- HOW IT WORKS PAGE ----- */
.steps-detailed {
    padding: 40px 0;
}

.step-detailed {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eef2f8;
}

.step-detailed .step-number {
    background: #2563eb;
    color: #fff;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.step-content p {
    color: #475569;
    margin-bottom: 12px;
}

.step-content ul {
    margin: 12px 0 20px 20px;
    color: #475569;
}

.step-content ul li {
    padding: 4px 0;
}

.step-image {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    margin-top: 12px;
}

.step-image p {
    margin-top: 8px;
    font-weight: 500;
    color: #0b1a33;
}

/* ----- TRUST SECTION ----- */
.trust-section {
    padding: 40px 0 60px;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    text-align: center;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eef2f8;
    transition: 0.3s;
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.trust-item i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 12px;
}

.trust-item h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.trust-item p {
    color: #475569;
    font-size: 0.95rem;
}

/* ----- PRICING PAGE ----- */
.pricing-plans-page {
    padding: 40px 0;
}

/* ----- FAQ PAGE ----- */
.faq-page-section {
    padding: 40px 0;
}

.faq-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-category {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #eef2f8;
}

.faq-category h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0b1a33;
}

.faq-category .faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef2f8;
}

.faq-category .faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-category .faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #0b1a33;
}

.faq-category .faq-item p {
    color: #475569;
}

/* ----- STILL QUESTIONS ----- */
.still-questions {
    text-align: center;
    padding: 40px 0;
    background: #f8fafc;
    border-radius: 20px;
    margin: 20px 0 40px;
}

.still-questions h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.still-questions p {
    color: #475569;
    margin-bottom: 20px;
}

/* ----- SUPPORT PAGE ----- */
.support-page-section {
    padding: 40px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.support-info h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #eef2f8;
}

.contact-method i {
    font-size: 2rem;
    color: #2563eb;
    margin-top: 4px;
}

.contact-method h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-method p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.contact-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eef2f8;
}

.contact-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #1e293b;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.2s;
    background: #f8fafc;
    color: #0b1a33;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ----- RESPONSIVE FOR PAGES ----- */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .faq-page-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .step-detailed {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .step-detailed .step-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .step-content ul {
        text-align: left;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .platform-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-table {
        font-size: 0.9rem;
    }
    
    .service-table th,
    .service-table td {
        padding: 8px 10px;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .support-info h2 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-table {
        font-size: 0.8rem;
    }
    
    .service-table th,
    .service-table td {
        padding: 6px 8px;
    }
    
    .service-table .btn-small {
        padding: 4px 12px;
        font-size: 0.75rem;
    }
}

/* ============================================
   DASHBOARD & LOGGED-IN PAGES STYLES
   ============================================ */

/* ----- DASHBOARD LAYOUT ----- */
.dashboard-section {
    padding: 40px 0 60px;
    background: #f8fafc;
    min-height: calc(100vh - 200px);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* ----- DASHBOARD SIDEBAR ----- */
.dashboard-sidebar {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #eef2f8;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.user-profile {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef2f8;
}

.user-profile .avatar {
    width: 70px;
    height: 70px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 12px;
}

.user-profile h3 {
    font-size: 1.1rem;
    color: #0b1a33;
}

.user-profile p {
    color: #64748b;
    font-size: 0.9rem;
    word-break: break-all;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 16px;
}

.dashboard-nav a {
    padding: 10px 14px;
    border-radius: 8px;
    color: #475569;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.dashboard-nav a:hover {
    background: #f1f5f9;
    color: #0b1a33;
}

.dashboard-nav a.active {
    background: #2563eb;
    color: #fff;
}

.dashboard-nav a i {
    width: 20px;
    text-align: center;
}

/* ----- DASHBOARD MAIN ----- */
.dashboard-main {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #eef2f8;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.dashboard-header h1 {
    font-size: 1.8rem;
    color: #0b1a33;
}

.dashboard-header p {
    color: #64748b;
    font-size: 1rem;
}

/* ----- STATS CARDS ----- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.stat-card {
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #eef2f8;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: #e0e7ff;
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b1a33;
}

.stat-info p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* ----- ORDERS TABLE ----- */
.recent-orders {
    margin: 30px 0;
}

.recent-orders h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #0b1a33;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #eef2f8;
}

.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.table-wrapper th {
    text-align: left;
    padding: 12px 16px;
    background: #f8fafc;
    font-weight: 600;
    border-bottom: 2px solid #eef2f8;
    color: #0b1a33;
}

.table-wrapper td {
    padding: 12px 16px;
    border-bottom: 1px solid #eef2f8;
    color: #334155;
}

.table-wrapper tr:last-child td {
    border-bottom: none;
}

.table-wrapper tr:hover {
    background: #f8fafc;
}

/* ----- STATUS BADGES ----- */
.status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.status.completed {
    background: #dcfce7;
    color: #166534;
}

.status.processing {
    background: #fef9c3;
    color: #854d0e;
}

.status.pending {
    background: #f3e8ff;
    color: #6b21a5;
}

.status.cancelled {
    background: #fee2e2;
    color: #991b1b;
}

/* ----- QUICK ORDER ----- */
.quick-order {
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #eef2f8;
    margin-top: 20px;
}

.quick-order h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #0b1a33;
}

.quick-order p {
    color: #64748b;
    margin-bottom: 16px;
}

/* ----- ORDER DETAILS ----- */
.order-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.order-info-card,
.order-timeline-card {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #eef2f8;
}

.order-info-card h2,
.order-timeline-card h2 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef2f8;
    color: #0b1a33;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    color: #64748b;
    font-size: 0.95rem;
}

.info-row .value {
    font-weight: 500;
    text-align: right;
    color: #0b1a33;
}

/* ----- TIMELINE ----- */
.timeline-item {
    display: flex;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-icon {
    width: 36px;
    height: 36px;
    background: #e0e7ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: #0b1a33;
}

.timeline-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* ----- PROFILE FORM ----- */
.profile-content {
    margin-top: 10px;
}

.profile-form h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #0b1a33;
}

.profile-form hr {
    margin: 24px 0;
    border: none;
    border-top: 1px solid #eef2f8;
}

.profile-form .form-hint {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.profile-form .form-group {
    margin-bottom: 16px;
}

.profile-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #1e293b;
}

.profile-form input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.2s;
    background: #f8fafc;
    color: #0b1a33;
}

.profile-form input:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.profile-form small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 0.8rem;
}

/* ----- ORDERS PAGE ----- */
.orders-content {
    margin-top: 10px;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 240px 1fr;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .order-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        position: static;
        margin-bottom: 20px;
    }
    
    .dashboard-main {
        padding: 20px;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 12px 16px;
    }
    
    .stat-info h3 {
        font-size: 1.2rem;
    }
    
    .table-wrapper {
        font-size: 0.85rem;
    }
    
    .table-wrapper th,
    .table-wrapper td {
        padding: 8px 10px;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    .info-row .value {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-main {
        padding: 16px;
    }
    
    .dashboard-sidebar {
        padding: 16px;
    }
    
    .table-wrapper {
        font-size: 0.75rem;
    }
    
    .table-wrapper th,
    .table-wrapper td {
        padding: 6px 8px;
    }
    
    .status {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
}

/* ----- EMPTY STATE ----- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #e2e8f0;
}

.empty-state i {
    font-size: 4rem;
    color: #94a3b8;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #0b1a33;
}

.empty-state p {
    color: #64748b;
    margin-bottom: 20px;
}

/* ----- SECTION HEADER ----- */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-header h2 {
    font-size: 1.3rem;
    color: #0b1a33;
    margin: 0;
}

/* ----- MEMBER SINCE ----- */
.member-since {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 4px;
}

/* ----- RESPONSIVE FIXES ----- */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .empty-state {
        padding: 40px 16px;
    }
    
    .empty-state i {
        font-size: 3rem;
    }
    
    .empty-state h3 {
        font-size: 1.2rem;
    }
}

/* Login notice */
.login-notice {
    background: #f0f4ff;
    padding: 10px 14px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-notice i {
    font-size: 1rem;
}