/* =========================================
   LANDING PAGE - ORACLE ENTERPRISE STYLE
   ========================================= */

/* Header */
.landing-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--oracle-red);
    letter-spacing: -0.5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
}

.header-nav a:hover {
    color: var(--oracle-red);
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item { text-align: center; }
.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--oracle-red);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.features, .business-types {
    padding: 80px 0;
}

.features { background: var(--bg-secondary); }
.business-types { background: #ffffff; }

/* Grids */
.features-grid, .business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card, .business-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover, .business-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--oracle-red);
}

.feature-icon, .business-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: inline-block;
    background: var(--oracle-red-light);
    color: var(--oracle-red);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3, .business-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

.business-card ul {
    list-style: none;
    margin-top: 16px;
}

.business-card li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    border-bottom: 1px solid var(--border-light);
}

.business-card li:last-child { border-bottom: none; }

/* CTA Section */
.cta-section {
    background: var(--oracle-red);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: var(--oracle-red);
    border-color: #ffffff;
}

.cta-section .btn-primary:hover {
    background: var(--bg-secondary);
    color: var(--oracle-red-hover);
}

/* Footer */
.landing-footer {
    background: var(--text-primary);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 2;
}

.footer-section a:hover { color: #ffffff; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h2 { font-size: 32px; }
    .hero-stats { flex-direction: column; gap: 30px; }
    .header-nav a:not(.btn) { display: none; }
}