
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background-color: #f8fafc;
            color: #0f2b3d;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header / Navigation - Classic Navy */
        .navbar {
            background-color: #ffffff;
            border-bottom: 1px solid #e2e8f0;
            position: sticky;
            top: 0;
            z-index: 10;
            backdrop-filter: blur(4px);
            background-color: rgba(255, 255, 255, 0.96);
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            flex-wrap: wrap;
            gap: 16px;
        }

        .logo {
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: -0.3px;
            color: #0f2b3d;
        }

        .logo span {
            color: #8b5a2b;
            font-weight: 600;
            font-size: 0.9rem;
            background: #fef3e8;
            padding: 2px 8px;
            border-radius: 30px;
            margin-left: 8px;
        }

        .contact-btn {
            background-color: #8b5a2b;
            color: white;
            padding: 10px 24px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .contact-btn:hover {
            background-color: #6b451f;
            transform: translateY(-1px);
        }

        /* Hero - with brand colors */
        .hero {
            padding: 64px 0 48px 0;
            background: linear-gradient(135deg, #fef9f0 0%, #ffffff 100%);
        }

        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
            justify-content: space-between;
        }

        .hero-text {
            flex: 1;
            min-width: 280px;
        }

        .hero-badge {
            display: inline-block;
            background-color: #fef3e8;
            color: #8b5a2b;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .hero-text h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: #0f2b3d;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .hero-text h1 span {
            color: #8b5a2b;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: #334155;
            margin-bottom: 28px;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        .btn-primary {
            background-color: #8b5a2b;
            color: white;
            padding: 14px 32px;
            border-radius: 44px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
            display: inline-block;
            box-shadow: 0 2px 8px rgba(139, 90, 43, 0.2);
        }

        .btn-primary:hover {
            background-color: #6b451f;
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 1.5px solid #8b5a2b;
            background: white;
            color: #8b5a2b;
            padding: 12px 28px;
            border-radius: 44px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-outline:hover {
            background-color: #fef3e8;
        }

        .hero-stats {
            flex: 0.8;
            background: white;
            padding: 32px;
            border-radius: 28px;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
        }

        .stat-item {
            margin-bottom: 20px;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #8b5a2b;
        }

        /* Checklist Section */
        .checklist {
            padding: 64px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 48px;
            color: #0f2b3d;
        }

        .check-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .check-card {
            background: #f9fafb;
            padding: 24px;
            border-radius: 24px;
            border-left: 5px solid #8b5a2b;
            transition: transform 0.1s ease;
        }

        .check-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #0f2b3d;
        }

        .check-card p {
            color: #475569;
        }

        .check-icon {
            font-size: 2rem;
            margin-bottom: 12px;
        }

        /* Price Section */
        .price-section {
            background: #f1f5f9;
            padding: 64px 0;
        }

        .price-card {
            max-width: 780px;
            margin: 0 auto;
            background: white;
            border-radius: 32px;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }

        .price-header {
            background: #0f2b3d;
            color: white;
            padding: 28px 32px;
            text-align: center;
        }

        .price-header h2 {
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        .price-amount {
            font-size: 3rem;
            font-weight: 800;
            margin: 16px 0 8px;
        }

        .price-amount small {
            font-size: 1rem;
            font-weight: normal;
        }

        .price-body {
            padding: 32px;
        }

        .price-note {
            background-color: #fef9c3;
            padding: 16px;
            border-radius: 20px;
            margin-bottom: 24px;
            font-size: 0.9rem;
            color: #854d0e;
        }

        .price-list {
            list-style: none;
            margin: 24px 0;
        }

        .price-list li {
            padding: 10px 0;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .price-list li::before {
            content: "✓";
            color: #8b5a2b;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .caveat-box {
            background: #fef3e8;
            border-left: 5px solid #8b5a2b;
            padding: 20px;
            margin-top: 24px;
            border-radius: 16px;
        }

        .caveat-box strong {
            color: #8b5a2b;
        }

        /* Attorney & LLM content */
        .attorney {
            padding: 64px 0;
            background: white;
        }

        .attorney-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }

        .attorney-text {
            flex: 1;
        }

        .attorney-text h3 {
            font-size: 1.8rem;
            margin-bottom: 16px;
            color: #0f2b3d;
        }

        .badge-law {
            background: #e6f7ec;
            color: #166534;
            padding: 4px 12px;
            border-radius: 30px;
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        /* Contact Form */
        .contact {
            background: #fef7e6;
            padding: 64px 0;
        }

        .form-card {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            border-radius: 32px;
            padding: 40px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
        }

        .form-card h2 {
            color: #0f2b3d;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            font-weight: 500;
            margin-bottom: 8px;
            color: #0f2b3d;
        }

        input, textarea, select {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #cbd5e1;
            border-radius: 20px;
            font-family: inherit;
            transition: 0.2s;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #8b5a2b;
            box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
        }

        button[type="submit"] {
            background: #8b5a2b;
            color: white;
            padding: 14px 24px;
            border: none;
            border-radius: 44px;
            font-weight: 600;
            width: 100%;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.2s;
        }

        button[type="submit"]:hover {
            background: #6b451f;
        }

        /* FAQ items */
        .faq-item {
            margin-top: 24px;
            background: #f8fafc;
            padding: 16px;
            border-radius: 24px;
        }

        .faq-item h4 {
            font-weight: 700;
            color: #8b5a2b;
        }

        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 2rem;
            }
            .price-amount {
                font-size: 2.2rem;
            }
            .form-card {
                padding: 24px;
            }
            .nav-inner {
                flex-direction: column;
            }
        }
    


    footer a:hover {
        color: #ffffff !important;
    }


/* WordPress compatibility */
body.admin-bar .navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px;
    }
}

.wp-site-blocks,
.entry-content,
.is-layout-constrained > * {
    margin-block-start: 0;
    margin-block-end: 0;
}

.entry-content > * {
    max-width: none;
}


/* Editable page-template content */
.hero-text > .wp-block-heading:first-child,
.attorney-text > .wp-block-heading:first-child,
.price-body > .wp-block-heading:first-child,
.form-card > .wp-block-heading:first-child {
    margin-top: 0;
}

.price-body .wp-block-list,
.attorney-text .wp-block-list,
.form-card .wp-block-list,
.checklist .wp-block-list {
    margin: 16px 0 16px 24px;
}

.price-body .wp-block-paragraph,
.attorney-text .wp-block-paragraph,
.form-card .wp-block-paragraph,
.checklist .wp-block-paragraph,
.hero-text .wp-block-paragraph {
    margin-bottom: 16px;
}

.price-body .wp-block-heading,
.attorney-text .wp-block-heading,
.form-card .wp-block-heading,
.checklist .wp-block-heading,
.hero-text .wp-block-heading {
    color: #0f2b3d;
    margin-bottom: 16px;
}


/* Static homepage content rendering */
.home main > .entry-content,
.front-page main > .entry-content {
    max-width: none;
}


/* Reference screenshot preview */
.bjk-reference-screenshot-wrap{
    padding:48px 24px;
    display:flex;
    justify-content:center;
    background:#eef2f5;
}

.bjk-reference-screenshot{
    width:min(100%, 1200px);
    border-radius:18px;
    box-shadow:0 12px 40px rgba(0,0,0,0.12);
    display:block;
}
