/* ===== Page Hero ===== */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #0b1120 0%, #1a1f3a 100%);
    text-align: center;
}
.page-hero.compact {
    padding: 120px 0 40px;
}
.page-hero h1 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}
.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
}

/* ===== Form Styles ===== */
.form-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.form-wrapper.narrow {
    max-width: 440px;
}

.form-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 4px;
}

.form-tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    transition: all 0.3s ease;
}
.form-tab.active {
    background: #1a56db;
    color: #ffffff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 6px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a56db;
    box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 0;
}
.checkbox-group label a {
    color: #1a56db;
}
.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.forgot-link {
    font-size: 13px;
    color: #1a56db;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #64748b;
}
.form-footer a {
    color: #1a56db;
    font-weight: 500;
}

/* ===== Products Page ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.product-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}
.product-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.product-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}
.product-card .features-list {
    font-size: 13px;
    color: #64748b;
}
.product-card .features-list li {
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
}
.product-card .features-list li:last-child {
    border-bottom: none;
}

/* ===== About Page ===== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}
.about-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline {
    position: relative;
    padding: 32px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 40px;
}
.timeline-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
}
.timeline-item:nth-child(even) {
    margin-left: 50%;
}
.timeline-dot {
    position: absolute;
    top: 0;
    width: 12px;
    height: 12px;
    background: #1a56db;
    border-radius: 50%;
}
.timeline-item:nth-child(odd) .timeline-dot {
    right: -6px;
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -6px;
}

/* ===== Platform Page ===== */
.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 48px;
}
.platform-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
}
.platform-info p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}
.platform-features {
    margin-bottom: 24px;
}
.platform-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}
.platform-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .platform-grid { grid-template-columns: 1fr; }
    .form-wrapper { padding: 24px; }
    .timeline::before { left: 0; }
    .timeline-item { width: 100%; margin-left: 20px !important; text-align: left !important; padding-left: 20px; }
    .timeline-dot { left: -26px !important; right: auto !important; }
}

a.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
a.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}