        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #ffffff; color: #1a1a1a; min-height: 100vh;
            display: flex; flex-direction: column;
        }
        a { text-decoration: none; color: inherit; }

        /* ── NAV (via partials/navbar.blade.php) ── */

        /* ── HERO ── */
        .cs-hero {
            flex: 1; display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            padding: 80px 32px 60px; text-align: center;
            background: #f9fafb;
            border-bottom: 1px solid #e5e7eb;
        }
        .cs-badge {
            display: inline-block; font-size: 11px; font-weight: 700;
            padding: 6px 24px; border-radius: 20px;
            letter-spacing: 2.5px; text-transform: uppercase;
            background: #1a3a5c; color: #eab308;
            border: 1px solid #1a3a5c;
            margin-bottom: 36px;
        }
        .cs-icon { font-size: 72px; margin-bottom: 24px; line-height: 1; }
        .cs-title {
            font-size: clamp(32px, 6vw, 52px); font-weight: 800;
            color: #111827; margin-bottom: 16px; letter-spacing: -0.02em;
        }
        .cs-subtitle {
            font-size: 18px; color: #4b5563; max-width: 520px;
            margin: 0 auto 20px; line-height: 1.7;
        }
        .cs-longdesc {
            font-size: 15px; color: #6b7280; max-width: 600px;
            margin: 0 auto 48px; line-height: 1.8;
        }

        /* ── FORM ── */
        .cs-form-wrap { width: 100%; max-width: 460px; margin: 0 auto 24px; }
        .cs-form {
            display: flex; border-radius: 8px; overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }
        .cs-input {
            flex: 1; padding: 15px 20px;
            border: 2px solid #e5e7eb; border-right: none;
            border-radius: 8px 0 0 8px;
            background: #fff; color: #111827;
            font-size: 14px; font-family: inherit; outline: none;
        }
        .cs-input::placeholder { color: #9ca3af; }
        .cs-input:focus { border-color: #eab308; }
        .cs-btn {
            padding: 15px 28px; border: none;
            background: #eab308; color: #0f172a;
            font-size: 14px; font-weight: 700; font-family: inherit;
            cursor: pointer; white-space: nowrap; transition: background 0.2s;
        }
        .cs-btn:hover { background: #d4a007; }
        .cs-success {
            display: none; background: #f0fdf4;
            border: 1px solid #86efac;
            color: #166534; padding: 14px 20px; border-radius: 8px;
            font-size: 14px; font-weight: 600; margin-top: 12px;
        }
        .cs-hint {
            font-size: 12px; color: #9ca3af;
            margin-top: 12px;
        }

        /* ── FEATURES ── */
        .cs-features {
            max-width: 800px; margin: 0 auto; padding: 0 32px 60px;
        }
        .cs-features-title {
            font-size: 12px; font-weight: 700; color: #1a3a5c;
            letter-spacing: 2px; text-transform: uppercase;
            text-align: center; margin-bottom: 32px;
        }
        .cs-features-grid {
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
        }
        .cs-feature {
            display: flex; align-items: flex-start; gap: 12px;
            padding: 16px 20px; border-radius: 8px;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            transition: border-color 0.2s;
        }
        .cs-feature:hover { border-color: #eab308; }
        .cs-feature-check {
            color: #1a3a5c; font-size: 16px; font-weight: 700;
            flex-shrink: 0; margin-top: 1px;
        }
        .cs-feature-text { font-size: 14px; color: #4b5563; line-height: 1.5; }

        /* ── EDILIA CTA ── */
        .cs-edilia {
            max-width: 600px; margin: 0 auto; padding: 0 32px 60px; text-align: center;
        }
        .cs-edilia-card {
            background: #1a3a5c;
            border-radius: 12px; padding: 32px;
        }
        .cs-edilia-title {
            font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px;
        }
        .cs-edilia-desc {
            font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; line-height: 1.6;
        }
        .cs-edilia-btn {
            display: inline-block; background: #eab308; color: #0f172a;
            font-weight: 700; font-size: 14px; padding: 12px 28px;
            border-radius: 6px; transition: background 0.2s;
        }
        .cs-edilia-btn:hover { background: #d4a007; }

        /* ── BACK ── */
        .cs-back {
            text-align: center; padding-bottom: 48px;
        }
        .cs-back a {
            color: #9ca3af; font-size: 14px;
            transition: color 0.2s;
        }
        .cs-back a:hover { color: #1a3a5c; }

        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .cs-hero { padding: 60px 20px 40px; }
            .cs-icon { font-size: 56px; }
            .cs-form { flex-direction: column; border-radius: 8px; }
            .cs-input { border-right: 2px solid #e5e7eb; border-radius: 8px 8px 0 0; }
            .cs-btn { border-radius: 0 0 8px 8px; text-align: center; }
            .cs-features-grid { grid-template-columns: 1fr; }
            .cs-features { padding: 0 20px 40px; }
            .cs-edilia { padding: 0 20px 40px; }
        }
