/* akofada Landing Page - Platinum Standard */
:root {
    --primary: #4154F1;
    --primary-dark: #3648d4;
    --dark: #0f172a;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-500: #64748b;
    --gray-700: #334155;
    --white: #ffffff;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(65,84,241,0.3) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-text h1 { font-size: 56px; font-weight: 900; line-height: 1.1; color: white; margin-bottom: 20px; }
.hero-text h1 span { color: #818cf8; }
.hero-text p { font-size: 20px; color: #94a3b8; margin-bottom: 32px; line-height: 1.6; max-width: 500px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; text-align: center; color: white; }
.hero-card .icon { font-size: 32px; margin-bottom: 8px; }
.hero-card .label { font-size: 14px; opacity: 0.8; }

/* Buttons */
.btn-primary { background: var(--primary); color: white; padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 16px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(65,84,241,0.4); }
.btn-outline { border: 2px solid rgba(255,255,255,0.3); color: white; padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 16px; text-decoration: none; transition: all 0.3s; }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-dark { background: var(--dark); color: white; padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 16px; text-decoration: none; display: inline-block; }

/* Sections */
.section { padding: 80px 0; }
.section-dark { background: var(--gray-50); }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title { font-size: 40px; font-weight: 900; text-align: center; margin-bottom: 16px; color: var(--dark); }
.section-subtitle { font-size: 18px; text-align: center; color: var(--gray-500); margin-bottom: 48px; }

/* How It Works */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card { text-align: center; padding: 32px 24px; }
.step-number { width: 64px; height: 64px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 900; margin: 0 auto 16px; }
.step-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: var(--gray-500); }

/* Industries */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.industry-card { background: white; border-radius: 16px; padding: 32px 20px; text-align: center; text-decoration: none; color: inherit; transition: all 0.3s; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.industry-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.industry-card h5 { font-weight: 700; margin: 12px 0 4px; }
.industry-card p { color: var(--gray-500); font-size: 14px; }

/* Products */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { background: white; border: 1px solid var(--gray-100); border-radius: 16px; padding: 32px 24px; transition: all 0.3s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.product-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.product-card p { color: var(--gray-500); margin-bottom: 12px; }
.text-link { color: var(--primary); font-weight: 600; text-decoration: none; }

/* CTA */
.cta-section { background: var(--dark); color: white; padding: 80px 0; text-align: center; }
.cta-section h2 { font-size: 40px; font-weight: 900; margin-bottom: 16px; }
.cta-section p { font-size: 18px; opacity: 0.8; margin-bottom: 32px; }

/* Responsive */
@media (max-width: 768px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 36px; }
    .steps-grid, .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
}
