/* ===== Shared Page Styles ===== */

.page-content {
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: calc(100vh - 80px);
}

.page-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .page-header h1 {
        font-size: 40px;
    }
}

.page-subtitle {
    color: var(--accents-5);
    font-size: 15px;
}

.page-body {
    max-width: 760px;
    margin: 0 auto;
}

/* Page Sections */
.page-section {
    margin-bottom: 36px;
}

.page-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.page-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
}

.page-section p {
    color: var(--accents-5);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.page-section ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.page-section ul li {
    position: relative;
    padding-left: 20px;
    color: var(--accents-5);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 6px;
}

.page-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accents-4);
}

.page-section a {
    color: var(--foreground);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-section a:hover {
    opacity: 0.7;
}

/* ===== Contact Page ===== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: var(--accents-1);
    border: 1px solid var(--accents-2);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accents-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--foreground);
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 13px;
    color: var(--accents-5);
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-link {
    font-size: 13px;
    color: var(--foreground);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-link:hover {
    opacity: 0.7;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--accents-1);
    border: 1px solid var(--accents-2);
    border-radius: 12px;
    padding: 32px;
}

.contact-form-wrapper h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--font-sans);
    font-size: 14px;
    border: 1px solid var(--accents-2);
    border-radius: 8px;
    background: var(--background);
    color: var(--foreground);
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accents-5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--accents-4);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--foreground);
    color: var(--background);
    border: none;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-submit:hover {
    opacity: 0.9;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 32px;
    color: var(--accents-5);
}

.form-success svg {
    color: #22c55e;
}

.form-success h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
}

.form-success p {
    font-size: 15px;
    color: var(--accents-5);
}

/* ===== About Page ===== */

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.stat-card {
    background: var(--accents-1);
    border: 1px solid var(--accents-2);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 36px;
    }
}

.stat-label {
    font-size: 12px;
    color: var(--accents-5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 13px;
    }
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accents-1);
    border: 1px solid var(--accents-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--foreground);
}

.about-feature h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
    color: var(--accents-5);
    line-height: 1.6;
}
