/* CIBI — welcome.blade.php */
:root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --primary-light: #818cf8;
            --primary-bg: #eef2ff;
            --danger: #ef4444;
            --danger-bg: #fef2f2;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --text-light: #94a3b8;
            --bg: #f8fafc;
            --card-bg: #ffffff;
            --border: #e2e8f0;
            --radius: 12px;
            --radius-sm: 8px;
            --radius-lg: 16px;
            --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
            --shadow: 0 2px 8px rgba(0,0,0,.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,.08);
            --shadow-lg: 0 8px 32px rgba(0,0,0,.10);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
            background: var(--card-bg); color: var(--text-dark);
            font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }

        /* === Navbar === */
        .nav {
            position: sticky; top: 0; z-index: 100;
            height: 64px; background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border);
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 24px;
        }
        .nav-brand { display: flex; align-items: center; gap: 10px; }
        .nav-logo {
            width: 40px; height: 40px; border-radius: 10px;
            background: linear-gradient(135deg, var(--primary), #8b5cf6);
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-weight: 800; font-size: 18px;
        }
        .nav-brand-text { font-size: 18px; font-weight: 700; color: var(--text-dark); }
        .nav-brand-text small { display: block; font-size: 11px; font-weight: 500; color: var(--text-muted); }
        .nav-actions { display: flex; align-items: center; gap: 12px; }

        /* === Buttons === */
        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 10px 22px; border-radius: var(--radius-sm);
            font-size: 14px; font-weight: 600; border: none; cursor: pointer;
            transition: all .15s ease; text-decoration: none;
        }
        .btn-primary { background: var(--primary); color: #fff; }
        .btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-md); }
        .btn-secondary { background: transparent; color: var(--text-dark); border: 1px solid var(--border); }
        .btn-secondary:hover { background: var(--bg); border-color: var(--text-light); }
        .btn-lg { padding: 14px 32px; font-size: 15px; }

        /* === Testing Banner === */
        .testing-banner {
            background: #fef3c7; border-bottom: 1px solid #fde68a;
            color: #92400e; padding: 12px 24px; font-size: 14px; font-weight: 600;
            display: flex; align-items: center; gap: 10px; justify-content: center;
            text-align: center; line-height: 1.5;
        }
        .testing-banner svg { color: #d97706; }

        /* === Hero === */
        .hero {
            position: relative; overflow: hidden;
            padding: 80px 24px 100px; text-align: center;
            background: linear-gradient(180deg, var(--primary-bg) 0%, transparent 100%);
        }
        .hero::before {
            content: ''; position: absolute; top: -50%; right: -20%;
            width: 600px; height: 600px; border-radius: 50%;
            background: radial-gradient(circle, rgba(99,102,241,.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero::after {
            content: ''; position: absolute; bottom: -30%; left: -10%;
            width: 400px; height: 400px; border-radius: 50%;
            background: radial-gradient(circle, rgba(139,92,246,.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 6px 16px; border-radius: 20px;
            background: var(--card-bg); border: 1px solid var(--border);
            font-size: 13px; font-weight: 600; color: var(--primary);
            margin-bottom: 24px; box-shadow: var(--shadow-sm);
        }
        .hero h1 {
            font-size: 42px; font-weight: 800; line-height: 1.2;
            color: var(--text-dark); margin-bottom: 20px;
            letter-spacing: -0.02em;
        }
        .hero p {
            font-size: 17px; color: var(--text-muted); line-height: 1.7;
            max-width: 600px; margin: 0 auto 36px;
        }
        .hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

        /* === Features === */
        .features { padding: 80px 24px; background: var(--bg); }
        .features-inner { max-width: 1080px; margin: 0 auto; }
        .section-title {
            text-align: center; font-size: 30px; font-weight: 800;
            color: var(--text-dark); margin-bottom: 12px;
        }
        .section-subtitle {
            text-align: center; font-size: 15px; color: var(--text-muted);
            margin-bottom: 48px;
        }
        .features-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
        }
        .feature-card {
            background: var(--card-bg); border: 1px solid var(--border);
            border-radius: var(--radius); padding: 28px;
            transition: all .2s ease;
        }
        .feature-card:hover {
            border-color: var(--primary); box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .feature-icon {
            width: 48px; height: 48px; border-radius: 12px;
            background: var(--primary-bg); color: var(--primary);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 16px;
        }
        .feature-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
        .feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

        /* === Domains === */
        .domains { padding: 80px 24px; }
        .domains-inner { max-width: 1080px; margin: 0 auto; }
        .domains-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
        }
        .domain-item {
            display: flex; align-items: center; gap: 14px;
            padding: 20px; background: var(--card-bg);
            border: 1px solid var(--border); border-radius: var(--radius-sm);
            transition: all .15s ease;
        }
        .domain-item:hover { border-color: var(--primary); box-shadow: var(--shadow); }
        .domain-icon {
            width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            font-size: 18px; font-weight: 800; color: #fff;
        }
        .domain-name { font-size: 15px; font-weight: 700; color: var(--text-dark); }
        .domain-desc { font-size: 13px; color: var(--text-muted); }

        /* === CTA Section === */
        .cta-section { padding: 80px 24px; background: var(--bg); }
        .cta-inner {
            max-width: 760px; margin: 0 auto; text-align: center;
            background: linear-gradient(135deg, var(--primary), #8b5cf6);
            border-radius: var(--radius-lg); padding: 56px 40px;
            box-shadow: var(--shadow-lg);
        }
        .cta-inner h2 {
            font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 12px;
        }
        .cta-inner p { font-size: 15px; color: rgba(255,255,255,.9); margin-bottom: 28px; }
        .cta-inner .btn-primary {
            background: #fff; color: var(--primary-dark);
        }
        .cta-inner .btn-primary:hover { background: rgba(255,255,255,.95); box-shadow: var(--shadow-lg); }

        /* === Steps (Cara Kerja) === */
        .steps { padding: 80px 24px; background: var(--bg); }
        .steps-inner { max-width: 1080px; margin: 0 auto; }
        .steps-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
            counter-reset: step;
        }
        .step-card {
            position: relative; background: var(--card-bg);
            border: 1px solid var(--border); border-radius: var(--radius);
            padding: 28px 24px; text-align: center; transition: all .2s ease;
        }
        .step-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
        .step-number {
            width: 40px; height: 40px; border-radius: 50%;
            background: var(--primary); color: #fff;
            display: flex; align-items: center; justify-content: center;
            font-size: 16px; font-weight: 800; margin: 0 auto 16px;
        }
        .step-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
        .step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

        /* === Team (Asesor) === */
        .team { padding: 80px 24px; }
        .team-inner {
            max-width: 760px; margin: 0 auto; text-align: center;
            background: var(--card-bg); border: 1px solid var(--border);
            border-radius: var(--radius-lg); padding: 48px 40px;
            box-shadow: var(--shadow);
        }
        .team-icon {
            width: 64px; height: 64px; border-radius: 16px;
            background: var(--primary-bg); color: var(--primary);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 20px;
        }
        .team-inner h2 { font-size: 24px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
        .team-inner p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

        /* === Footer === */
        .footer {
            background: var(--card-bg); border-top: 1px solid var(--border);
            padding: 40px 24px 24px;
        }
        .footer-inner {
            max-width: 1080px; margin: 0 auto;
            display: flex; flex-wrap: wrap; justify-content: space-between;
            gap: 32px; align-items: flex-start;
        }
        .footer-brand { flex: 1; min-width: 240px; }
        .footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
        .footer-brand-name { font-size: 16px; font-weight: 700; color: var(--text-dark); }
        .footer-brand-desc { font-size: 13px; color: var(--text-muted); max-width: 320px; }
        .footer-col { flex: 0 0 auto; min-width: 160px; }
        .footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
        .footer-col a { font-size: 13px; color: var(--text-muted); transition: color .15s ease; }
        .footer-col a:hover { color: var(--primary); }
        .footer-bottom {
            max-width: 1080px; margin: 32px auto 0; padding-top: 20px;
            border-top: 1px solid var(--border); text-align: center;
        }
        .footer-bottom p { font-size: 12px; color: var(--text-light); }

        /* === Responsive === */
        @media (max-width: 900px) {
            .features-grid, .domains-grid { grid-template-columns: repeat(2, 1fr); }
            .steps-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 640px) {
            .nav { padding: 0 16px; }
            .nav-brand-text { font-size: 16px; }
            .nav-brand-text small { display: none; }
            .hero { padding: 48px 20px 64px; }
            .hero h1 { font-size: 28px; }
            .hero p { font-size: 15px; }
            .hero-cta { flex-direction: column; align-items: stretch; }
            .hero-cta .btn { justify-content: center; }
            .features, .domains, .cta-section { padding: 48px 20px; }
            .steps, .team { padding: 48px 20px; }
            .section-title { font-size: 24px; }
            .features-grid, .domains-grid, .steps-grid { grid-template-columns: 1fr; }
            .team-inner { padding: 32px 24px; }
            .team-inner h2 { font-size: 20px; }
            .cta-inner { padding: 36px 24px; }
            .cta-inner h2 { font-size: 22px; }
            .footer-inner { flex-direction: column; }
        }
