/* ========================================
   Subpage Styles
   ======================================== */

/* Light Navigation for Subpages */
.subnav-link {
    color: rgba(26, 46, 26, 0.65);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}
.subnav-link:hover { color: var(--color-forest); }
.subnav-link.active { color: var(--color-forest); font-weight: 500; }

/* Page Header */
.page-header {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--color-cream) 0%, rgba(197, 214, 197, 0.2) 100%);
    position: relative;
    overflow: hidden;
}
.page-header .glow-orb {
    opacity: 0.2;
}
.page-breadcrumb {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}
.page-breadcrumb a {
    color: var(--color-moss);
    text-decoration: none;
}
.page-breadcrumb a:hover { text-decoration: underline; }
.page-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 500;
    color: var(--color-forest);
    line-height: 1.2;
    margin-bottom: 20px;
}
.page-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 640px;
    line-height: 1.7;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}
.content-section-alt {
    background: linear-gradient(180deg, var(--color-cream) 0%, rgba(197, 214, 197, 0.12) 50%, var(--color-cream) 100%);
}
.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: 16px;
    line-height: 1.3;
}
.section-subheading {
    font-size: 15px;
    color: var(--color-text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    gap: 24px;
}
.feature-grid-2 { grid-template-columns: repeat(2, 1fr); }
.feature-grid-3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .feature-grid-3, .feature-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .feature-grid-2, .feature-grid-3, .feature-grid-4 { grid-template-columns: 1fr; }
}

/* Content Cards */
.content-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}
.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(61,90,61,0.1);
    border-color: rgba(139,168,139,0.2);
}
.content-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(197,214,197,0.4), rgba(212,232,184,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.content-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: 12px;
}
.content-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, rgba(139, 168, 139, 0.3) 40%, rgba(26, 46, 26, 0.92) 100%);
    text-align: center;
}
.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 16px;
}
.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.comparison-table th {
    background: var(--color-cream);
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-forest);
    font-size: 14px;
}
.comparison-table td {
    font-size: 14px;
    color: var(--color-text-secondary);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .check { color: var(--color-moss); }
.comparison-table .cross { color: var(--color-text-muted); opacity: 0.4; }

/* Step List */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.step-item {
    display: flex;
    gap: 24px;
}
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-sage-light), var(--color-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-forest);
    flex-shrink: 0;
}
.step-content h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: 8px;
}
.step-content p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* FAQ Section (light variant) */
.faq-light .faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); }

/* Download Card */
.download-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(61,90,61,0.12);
}
.download-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(197,214,197,0.4), rgba(212,232,184,0.3));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.download-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: 8px;
}
.download-card p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}
.download-card .version {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 12px;
}

/* Team Member */
.team-card {
    text-align: center;
    padding: 32px;
}
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-sage-light), var(--color-glow));
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--color-forest);
}
.team-card h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: 4px;
}
.team-card p {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Stat Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
@media (max-width: 768px) {
    .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.stat-item-number {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 500;
    color: var(--color-forest);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item-label {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 32px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--color-sage-light);
}
.timeline-item {
    position: relative;
    padding-bottom: 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-moss);
    border: 3px solid var(--color-cream);
    box-shadow: 0 0 0 2px var(--color-sage-light);
}
.timeline-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-moss);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.timeline-item h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: 6px;
}
.timeline-item p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}
