/* CreditSoft Global Styles */
:root { 
    --primary: #2563eb; 
    --primary-dark: #1d4ed8; 
    --success: #10b981; 
    --danger: #ef4444;
    --warning: #f59e0b;
    --dark: #0f172a; 
    --light: #f8fafc; 
    --gray: #64748b; 
    --border: #e2e8f0; 
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--light); color: var(--dark); line-height: 1.6; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.btn { display: inline-block; padding: 14px 28px; border-radius: 10px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); text-decoration: none; }

/* Navigation */
.nav { position: absolute; top: 0; left: 0; right: 0; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; z-index: 100; }
.nav-logo img { height: 70px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: white; text-decoration: none; font-weight: 500; opacity: 0.9; }
.nav-links a:hover { opacity: 1; }
.nav-cta { background: var(--primary); padding: 10px 20px; border-radius: 8px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
.hamburger span { width: 25px; height: 3px; background: white; border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(15, 23, 42, 0.98); z-index: 99; padding: 100px 20px 20px; }
.mobile-menu.active { display: flex; flex-direction: column; gap: 20px; }
.mobile-menu a { color: white; text-decoration: none; font-weight: 500; font-size: 20px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }

@media(max-width: 768px) { 
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav { padding: 16px 20px; }
    .nav-logo img { height: 50px; }
}

/* Hero */
.hero { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2563eb 100%); color: white; padding: 120px 24px 60px; text-align: center; }
.hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 12px; }
.hero p { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto; }
@media(max-width: 768px) { .hero h1 { font-size: 32px; } }

/* Cards */
.card { background: white; border-radius: 16px; padding: 32px; margin-bottom: 24px; border: 1px solid var(--border); }
.card h2 { font-size: 28px; margin-bottom: 16px; }
.card h3 { font-size: 20px; margin-bottom: 12px; }

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* Footer */
.footer { background: #0a0f1a; color: var(--gray); padding: 40px 0; text-align: center; font-size: 14px; }
.footer a { color: var(--primary); text-decoration: none; }

/* Alerts */
.alert { padding: 16px 20px; border-radius: 12px; margin-bottom: 24px; }
.alert-warning { background: #fef3c7; border: 1px solid #fcd34d; color: #92400e; }
.alert-danger { background: #fee2e2; border: 1px solid #ef4444; color: #991b1b; }
.alert-success { background: #d1fae5; border: 1px solid #10b981; color: #065f46; }

/* Tables */
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.table th { background: var(--light); font-weight: 600; font-size: 13px; text-transform: uppercase; }
.table tr:hover { background: var(--light); }

/* Badges */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-neutral { background: var(--light); color: var(--gray); }

/* Forms */
input, select, textarea { width: 100%; padding: 14px; border: 2px solid var(--border); border-radius: 10px; font-size: 16px; font-family: inherit; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); }

/* Page sections */
.page-header { padding: 40px 24px; text-align: center; background: var(--light); margin-bottom: 40px; }
.page-header h1 { font-size: 36px; margin-bottom: 8px; }
.page-header p { color: var(--gray); font-size: 18px; }

.page-content { display: flex; gap: 40px; }
.cro-content { flex: 1; }

.section { padding: 60px 24px; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 32px; margin-bottom: 40px; }

/* Utility */
.text-center { text-align: center; }
.text-gray { color: var(--gray); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-sm { font-size: 14px; }
.text-xs { font-size: 12px; }
.text-lg { font-size: 18px; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }
.p-4 { padding: 32px; }

.section-pad { padding: 60px 0; }
.cta-button { font-size: 18px; padding: 16px 32px; }
.founder-photo { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; }
