/* ========================================
   HEADER & FOOTER STYLES
   ======================================== */

/* Header */
.okrpro-header {
    background: white;
    border-bottom: 1px solid #E5E7EB;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.okrpro-header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.okrpro-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.okrpro-logo img {
    height: 40px;
    width: auto;
}

.okrpro-nav ul.okrpro-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.okrpro-nav ul.okrpro-menu li {
    margin: 0;
}

.okrpro-nav ul.okrpro-menu li a {
    text-decoration: none;
    color: #4B5563;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.okrpro-nav ul.okrpro-menu li a:hover {
    color: #2563EB;
}

.okrpro-header-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.okrpro-btn-primary-sm,
.okrpro-btn-secondary-sm {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.okrpro-btn-primary-sm {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
    border: none;
}

.okrpro-btn-primary-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.okrpro-btn-secondary-sm {
    border: 1px solid #E5E7EB;
    color: #4B5563;
    background: white;
}

.okrpro-btn-secondary-sm:hover {
    border-color: #2563EB;
    color: #2563EB;
}

/* Footer */
.okrpro-footer {
    background: #0F172A;
    color: white;
    padding: 3rem 2rem;
    margin-top: 0;
}

.okrpro-footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.okrpro-footer-logo p {
    margin-top: 0.5rem;
    color: #94A3B8;
    font-size: 0.875rem;
}

.okrpro-footer-links {
    display: flex;
    gap: 2rem;
}

.okrpro-footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s;
}

.okrpro-footer-links a:hover {
    color: white;
}

/* Screenshot Placeholder */
.okrpro-screenshot-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #9CA3AF;
    border: 2px dashed #D1D5DB;
}

/* Body Reset for Full Width Template */
body.okrpro-fullwidth {
    margin: 0;
    padding: 0;
}

body.okrpro-fullwidth .site-content,
body.okrpro-fullwidth .ast-container,
body.okrpro-fullwidth #primary {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Responsive Header */
@media (max-width: 1024px) {
    .okrpro-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .okrpro-header-cta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .okrpro-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .okrpro-footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}


/**
 * OKR PRO - Homepage Styles
 * File: css/home-style.css
 */

/* Reset & Base */
.okrpro-hero,
.okrpro-social-proof,
.okrpro-problem-solution,
.okrpro-features,
.okrpro-role-section,
.okrpro-stats,
.okrpro-final-cta {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.okrpro-hero {
    position: relative;
    padding: 8rem 2rem 6rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.okrpro-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.okrpro-hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.okrpro-hero-text h1 .highlight {
    background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.okrpro-hero-text p {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.okrpro-hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.okrpro-trust-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94A3B8;
    font-size: 0.875rem;
}

/* Buttons */
.okrpro-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.okrpro-btn-primary {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.okrpro-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.okrpro-btn-secondary {
    border: 2px solid #E5E7EB;
    color: #4B5563;
    background: white;
}

.okrpro-btn-secondary:hover {
    border-color: #2563EB;
    color: #2563EB;
    background: #EFF6FF;
}

/* Glassmorphism Card */
.okrpro-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.okrpro-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(96, 165, 250, 0.3);
}

.okrpro-dashboard-preview {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.okrpro-preview-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.okrpro-preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.6), rgba(220, 38, 38, 0.6));
}

.okrpro-preview-dot:nth-child(2) {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.6), rgba(245, 158, 11, 0.6));
}

.okrpro-preview-dot:nth-child(3) {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.6), rgba(22, 163, 74, 0.6));
}

.okrpro-preview-cards {
    display: grid;
    gap: 1rem;
}

.okrpro-preview-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.okrpro-preview-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(96, 165, 250, 0.3);
}

.okrpro-card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: white;
}

.okrpro-card-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.okrpro-badge-active {
    background: rgba(37, 99, 235, 0.2);
    color: #60A5FA;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.okrpro-badge-completed {
    background: rgba(16, 185, 129, 0.2);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.okrpro-card-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #94A3B8;
}

.okrpro-progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.okrpro-progress-fill {
    height: 100%;
    border-radius: 4px;
    animation: fillProgress 2s ease-out;
    position: relative;
    overflow: hidden;
}

.okrpro-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes fillProgress {
    from { width: 0%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.okrpro-progress-green {
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
}

.okrpro-progress-blue {
    background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
}

.okrpro-progress-yellow {
    background: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);
}

/* Social Proof */
.okrpro-social-proof {
    padding: 4rem 2rem;
    background: white;
    border-bottom: 1px solid #E5E7EB;
}

.okrpro-social-proof-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.okrpro-social-proof h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6B7280;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.okrpro-company-types {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.okrpro-company-type {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-radius: 12px;
    font-weight: 600;
    color: #374151;
    border: 1px solid #E5E7EB;
    transition: all 0.3s;
}

.okrpro-company-type:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #2563EB;
    color: #2563EB;
}

/* Problem Solution */
.okrpro-problem-solution {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, white 0%, #F9FAFB 100%);
}

.okrpro-problem-solution-content {
    max-width: 1280px;
    margin: 0 auto;
}

.okrpro-section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.okrpro-section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #6B7280;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.okrpro-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.okrpro-comparison-card {
    padding: 2.5rem;
    border-radius: 16px;
    background: white;
    border: 2px solid #E5E7EB;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.okrpro-comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #DC2626;
}

.okrpro-comparison-card.okrpro-solution::before {
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
}

.okrpro-comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.okrpro-comparison-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.okrpro-comparison-card .okrpro-comparison-icon {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
}

.okrpro-comparison-card.okrpro-solution .okrpro-comparison-icon {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
}

.okrpro-comparison-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #DC2626;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.okrpro-comparison-card.okrpro-solution .okrpro-comparison-label {
    color: #059669;
}

.okrpro-comparison-text {
    color: #4B5563;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Features Section */
.okrpro-features {
    padding: 6rem 2rem;
    background: white;
    position: relative;
}

.okrpro-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.03), transparent 50%);
    pointer-events: none;
}

.okrpro-features-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.okrpro-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.okrpro-feature-card {
    display: flex;
    gap: 1.5rem;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    border: 2px solid #F3F4F6;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.okrpro-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.okrpro-feature-card:hover::before {
    opacity: 1;
}

.okrpro-feature-card:hover {
    border-color: #2563EB;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
}

.okrpro-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    color: white;
}

.okrpro-feature-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111827;
}

.okrpro-feature-content p {
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.okrpro-feature-benefit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #2563EB;
    font-weight: 600;
    transition: gap 0.3s;
}

.okrpro-feature-card:hover .okrpro-feature-benefit {
    gap: 0.75rem;
}

/* Role Tabs */
.okrpro-role-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #F9FAFB 0%, white 100%);
}

.okrpro-role-content {
    max-width: 1280px;
    margin: 0 auto;
}

.okrpro-role-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.okrpro-role-tab {
    padding: 1rem 2rem;
    border-radius: 12px;
    background: white;
    border: 2px solid #E5E7EB;
    cursor: pointer;
    font-weight: 600;
    color: #6B7280;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.okrpro-role-tab.active {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-color: #2563EB;
    color: #2563EB;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
}

.okrpro-role-tab:hover {
    border-color: #2563EB;
    transform: translateY(-2px);
}

.okrpro-role-tab-content {
    display: none;
}

.okrpro-role-tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.okrpro-role-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.okrpro-benefit-item {
    display: flex;
    gap: 1.25rem;
    align-items: start;
}

.okrpro-benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.okrpro-benefit-text h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: #111827;
}

.okrpro-benefit-text p {
    color: #6B7280;
    line-height: 1.7;
}

.okrpro-role-visual {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.okrpro-role-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05), transparent 50%);
}

.okrpro-screenshot-container {
    width: 100%;
    position: relative;
    z-index: 1;
}

.okrpro-screenshot-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s;
}

.okrpro-screenshot-container:hover img {
    transform: scale(1.02);
}

/* Stats Section */
.okrpro-stats {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0F172A 0%, #1E40AF 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.okrpro-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.okrpro-stats-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.okrpro-stats-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

.okrpro-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.okrpro-stat-item {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.okrpro-stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.okrpro-stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #93C5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.okrpro-stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Final CTA */
.okrpro-final-cta {
    padding: 6rem 2rem;
    background: white;
}

.okrpro-final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.okrpro-final-cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #111827 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.okrpro-final-cta p {
    font-size: 1.375rem;
    color: #6B7280;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.okrpro-final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.okrpro-micro-copy {
    font-size: 0.95rem;
    color: #9CA3AF;
}

/* Responsive */
@media (max-width: 1024px) {
    .okrpro-hero-content,
    .okrpro-role-tab-content.active {
        grid-template-columns: 1fr;
    }
    
    .okrpro-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .okrpro-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .okrpro-section-title {
        font-size: 2rem;
    }
    
    .okrpro-comparison-grid,
    .okrpro-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .okrpro-hero-ctas,
    .okrpro-final-cta-buttons {
        flex-direction: column;
    }
    
    .okrpro-role-tabs {
        flex-direction: column;
    }
}