/* ========================================
   Citio Static Pages CSS
   For: About, Careers, Contact, Privacy, Terms, Security
   ======================================== */

/* ========================================
   Page Layout
   ======================================== */
.static-page {
    position: relative;
    z-index: 10;
    padding: 140px 0 80px;
    min-height: 100vh;
}

.static-page .container {
    max-width: 900px;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-label {
    display: inline-block;
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    background: rgba(239, 68, 68, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-intro {
    font-size: 18px;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   Content Sections
   ======================================== */
.content-section {
    margin-bottom: 60px;
}

.content-section.centered {
    text-align: center;
}

.section-icon {
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ef4444;
}

.content-section.centered .section-icon {
    margin-left: auto;
    margin-right: auto;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.content-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    margin-top: 24px;
}

.content-section p {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.content-section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.6;
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: rgba(239, 68, 68, 0.5);
    border-radius: 50%;
}

/* ========================================
   Feature Grid (About page)
   ======================================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.feature-item {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-2px);
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ef4444;
    margin: 0 0 8px 0;
}

.feature-item p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   Value Grid (Careers page)
   ======================================== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.value-item {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

.value-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
}

.value-item p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   Notice Card (Careers page)
   ======================================== */
.notice-card {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.4);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.notice-icon {
    width: 64px;
    height: 64px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ef4444;
}

.notice-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.notice-card p {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 12px;
}

.notice-card p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Stats Section (About page)
   ======================================== */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px 0;
}

.stat-card {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-4px);
}

.stat-value {
    font-size: 40px;
    font-weight: 800;
    color: #ef4444;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #9ca3af;
}

/* ========================================
   Contact Grid
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #ef4444;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.contact-link {
    color: #ef4444;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #f87171;
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form {
    max-width: 600px;
    margin: 32px auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #d1d5db;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.4);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-group select option {
    background: #1f2937;
    color: #fff;
}

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

.contact-form .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
}

.response-note {
    font-size: 14px;
    color: #6b7280;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    text-align: center;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 20px;
    padding: 48px;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 24px;
}

/* ========================================
   Legal Pages (Privacy, Terms)
   ======================================== */
.legal-page .page-header {
    margin-bottom: 40px;
}

.legal-content {
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid rgba(75, 85, 99, 0.2);
    border-radius: 20px;
    padding: 48px;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(75, 85, 99, 0.2);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 17px;
    font-weight: 600;
    color: #d1d5db;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-section p {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-section ul {
    margin: 16px 0;
}

.legal-section ul li {
    font-size: 15px;
    margin-bottom: 8px;
}

.legal-section ul li strong {
    color: #d1d5db;
}

.legal-section a {
    color: #ef4444;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: #f87171;
}

/* ========================================
   Security Page
   ======================================== */
.security-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.security-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-2px);
}

.security-icon {
    width: 56px;
    height: 56px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #ef4444;
}

.security-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.security-card p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

.security-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.security-detail {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 16px;
    padding: 24px;
}

.security-detail h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px 0;
}

.security-detail ul {
    margin: 0;
}

.security-detail ul li {
    font-size: 14px;
    margin-bottom: 8px;
}

.security-detail ul li:last-child {
    margin-bottom: 0;
}

.disclosure-box {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
    text-align: center;
}

.disclosure-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px 0;
}

.disclosure-box p {
    font-size: 15px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.security-email {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 16px;
    transition: color 0.2s ease;
}

.security-email:hover {
    color: #f87171;
}

.disclosure-note {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.guidelines {
    margin-top: 32px;
}

.guidelines h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px 0;
}

/* ========================================
   Responsive - Tablet
   ======================================== */
@media (max-width: 900px) {
    .static-page {
        padding: 120px 0 60px;
    }

    .feature-grid,
    .value-grid,
    .security-details {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .security-overview {
        grid-template-columns: repeat(2, 1fr);
    }

    .legal-content {
        padding: 32px 24px;
    }
}

/* ========================================
   Responsive - Mobile
   ======================================== */
@media (max-width: 600px) {
    .static-page {
        padding: 100px 0 48px;
    }

    .page-header {
        margin-bottom: 40px;
    }

    .page-label {
        font-size: 11px;
        padding: 6px 12px;
    }

    .page-intro {
        font-size: 16px;
    }

    .content-section {
        margin-bottom: 40px;
    }

    .content-section h2 {
        font-size: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .notice-card {
        padding: 32px 24px;
    }

    .stat-card {
        padding: 24px;
    }

    .stat-value {
        font-size: 32px;
    }

    .cta-section {
        padding: 32px 24px;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .security-overview {
        grid-template-columns: 1fr;
    }

    .security-card {
        padding: 24px;
    }

    .disclosure-box {
        padding: 24px;
    }

    .legal-content {
        padding: 24px 20px;
    }

    .legal-section h2 {
        font-size: 18px;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 14px;
    }
}
