body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 13.8px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
main {
    flex: 1 0 auto;
}
main > section {
    width: 100%;
}
.site-footer {
    flex-shrink: 0;
    margin-top: 0;
}
.site-footer > div {
    max-width: 1280px !important;
    padding-top: 1.35rem !important;
    padding-bottom: 1.35rem !important;
    gap: 1.4rem !important;
}
.site-footer p,
.site-footer a,
.site-footer button {
    font-size: 0.78rem !important;
    line-height: 1.45;
}
.site-footer .text-2xl {
    font-size: 1rem !important;
}
h1 { font-size: clamp(1.6rem, 2vw, 2.15rem) !important; line-height: 1.12 !important; }
h2 { font-size: clamp(1.18rem, 1.45vw, 1.55rem) !important; line-height: 1.18 !important; }
h3 { font-size: clamp(1rem, 1.2vw, 1.25rem) !important; line-height: 1.22 !important; }
p { line-height: 1.52; }
main > section.max-w-7xl { max-width: 1280px !important; }
main > section.max-w-6xl { max-width: 1180px !important; }
main > section.max-w-5xl { max-width: 1040px !important; }
.text-xs { font-size: 0.74rem !important; }
.text-sm { font-size: 0.84rem !important; }
.text-lg { font-size: 0.96rem !important; }
.text-xl { font-size: 1.04rem !important; }
.text-2xl { font-size: 1.22rem !important; }
.text-3xl { font-size: 1.48rem !important; }
.text-4xl { font-size: 1.85rem !important; }
.py-10 { padding-top: 1.55rem !important; padding-bottom: 1.55rem !important; }
.py-8 { padding-top: 1.35rem !important; padding-bottom: 1.35rem !important; }
.p-6 { padding: 1.2rem !important; }
.p-5 { padding: 0.9rem !important; }
.p-4 { padding: 0.8rem !important; }
.gap-6 { gap: 0.95rem !important; }
.gap-5 { gap: 0.82rem !important; }
.gap-4 { gap: 0.72rem !important; }
.mt-8 { margin-top: 1.25rem !important; }
.mt-6 { margin-top: 1rem !important; }
.mt-5 { margin-top: 0.82rem !important; }
.mt-4 { margin-top: 0.68rem !important; }
.site-header {
    background:
        linear-gradient(90deg, rgba(7, 12, 20, 0.95), rgba(30, 58, 95, 0.92)),
        radial-gradient(circle at 25% 0%, rgba(201, 168, 76, 0.18), transparent 38%);
    border-bottom: 1px solid rgba(201, 168, 76, 0.28);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
}
.brand-sign {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(340px, 52vw);
    min-height: 86px;
    padding: 0.45rem 0.6rem 0.5rem;
    position: relative;
    text-align: center;
    border: 0;
    border-radius: 0;
    background: transparent;
}
.brand-sign img {
    width: 100%;
    height: 58px;
    object-fit: contain;
    object-position: center;
    filter: saturate(1.05) contrast(1.08);
}
.brand-sign span {
    color: rgba(255,255,255,0.76);
    font-size: 0.66rem;
    font-weight: 700;
    margin-top: 0.35rem;
    line-height: 1.15;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.35rem 0.48rem;
    border-radius: 0;
    color: rgba(255,255,255,0.88);
    position: relative;
    background: transparent;
    transition: color .16s ease;
    white-space: nowrap;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0.48rem;
    right: 0.48rem;
    bottom: 0.28rem;
    height: 2px;
    background: #c9a84c;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .16s ease;
}
.nav-link:hover,
.nav-link.is-active {
    color: #ffffff;
}
.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}
.mobile-menu-button {
    width: 54px;
    min-height: 48px;
    display: inline-grid;
    place-items: center;
    gap: 0.12rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0.5rem;
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.mobile-menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform .18s ease, opacity .18s ease;
}
.mobile-menu-button strong {
    font-size: 0.62rem;
    line-height: 1;
}
.mobile-menu-button.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.mobile-menu-button.is-open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-button.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
.mobile-menu-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--mobile-header-height, 78px);
    z-index: 39;
    padding: 0.7rem 0.85rem 1rem;
    background: rgba(9, 16, 28, 0.68);
    backdrop-filter: blur(10px);
}
.mobile-menu-inner {
    display: grid;
    gap: 0.45rem;
    max-height: calc(100dvh - var(--mobile-header-height, 78px) - 1rem);
    overflow-y: auto;
    padding: 0.55rem;
    border: 1px solid rgba(201,168,76,0.28);
    border-radius: 0.8rem;
    background: #0f1b2b;
    box-shadow: 0 20px 46px rgba(0,0,0,0.32);
}
.mobile-menu-link,
.mobile-menu-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0.72rem 0.9rem;
    border-radius: 0.55rem;
    color: #fff;
    font-weight: 800;
    background: rgba(255,255,255,0.06);
}
.mobile-menu-link::after {
    content: "›";
    color: #c9a84c;
    font-size: 1.15rem;
}
.mobile-menu-link.is-active {
    background: #c9a84c;
    color: #10243d;
}
.mobile-menu-link.is-active::after {
    color: #10243d;
}
.mobile-menu-action {
    justify-content: center;
    background: rgba(255,255,255,0.1);
}
.mobile-menu-auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.25rem;
}
.mobile-menu-auth a {
    min-height: 46px;
    display: grid;
    place-items: center;
    border-radius: 0.55rem;
    font-weight: 900;
}
.mobile-menu-auth a:first-child {
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
}
.mobile-menu-auth a:last-child {
    background: #c9a84c;
    color: #10243d;
}
.mobile-bottom-nav {
    display: none;
}
.hero-stage {
    background:
        linear-gradient(90deg, rgba(8, 13, 22, 0.96), rgba(30, 58, 95, 0.86)),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 82px),
        #1e3a5f;
}
.hero-logo-panel {
    min-height: 300px;
    border-left: 0;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.07));
}
.hero-logo-panel img {
    width: min(520px, 100%);
    max-height: 260px;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 20px 34px rgba(0,0,0,0.28));
}
.hero-logo-caption {
    margin-top: -1.5rem;
    color: rgba(255,255,255,0.72);
    font-weight: 700;
    text-align: center;
}
.hero-proof-item,
.workflow-card,
.trust-note {
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 0.5rem;
    background: #fff;
}
.hero-proof-item {
    display: grid;
    gap: 0.18rem;
    padding: 0.82rem 0.9rem;
    color: #fff;
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
}
.hero-proof-item strong {
    color: #f4d46f;
    font-size: 0.95rem;
}
.hero-proof-item span {
    color: rgba(255,255,255,0.78);
}
.workflow-card {
    min-height: 155px;
    padding: 1.1rem;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}
.workflow-step {
    width: 2.35rem;
    height: 2.35rem;
    display: grid;
    place-items: center;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    background: #1e3a5f;
    color: #fff;
    font-weight: 900;
}
.trust-note {
    display: grid;
    gap: 0.28rem;
    padding: 0.95rem;
    background: #f8fafc;
}
.trust-note strong {
    color: #1e3a5f;
}
.trust-note span {
    color: #475569;
    font-size: 0.84rem;
}
.legal-warning {
    border: 1px solid rgba(201, 168, 76, 0.45);
    background: #fffaf0;
    color: #473a16;
    border-radius: 0.375rem;
    padding: 0.8rem 0.95rem;
    line-height: 1.5;
}
.petition-content { white-space: pre-wrap; }
.blurred-content {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
}
.field-label {
    display: block;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
}
.field-input {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    padding: 0.44rem 0.6rem;
    outline: none;
    background: #fff;
    font-size: 0.86rem;
    line-height: 1.32;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.field-input:focus {
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.09);
}
textarea.field-input {
    min-height: 72px;
    resize: vertical;
}
.compact-textarea {
    min-height: 52px !important;
}
.upload-zone {
    border: 1px dashed #c9a84c;
    background: #fffaf0;
    border-radius: 0.375rem;
    padding: 0.9rem;
}
.agent-toggle {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    border: 1px solid #dbe3ef;
    border-radius: 0.375rem;
    padding: 0.7rem 0.8rem;
    cursor: pointer;
}
.agent-toggle input { margin-top: 0.25rem; }
.agent-toggle strong {
    display: block;
    color: #1e3a5f;
}
.agent-toggle small {
    display: block;
    color: #64748b;
    margin-top: 0.2rem;
    line-height: 1.45;
}
.advanced-panel {
    border: 1px solid #dbe3ef;
    border-radius: 0.375rem;
    padding: 0.75rem 0.85rem;
    background: #f8fafc;
}
.advanced-panel summary {
    cursor: pointer;
    color: #1e3a5f;
    font-weight: 800;
}
.generator-compact-form textarea.field-input {
    min-height: 92px;
}
.calculator-tabs {
    display: inline-flex;
    border: 1px solid #dbe3ef;
    border-radius: 0.375rem;
    padding: 0.18rem;
    background: #f8fafc;
}
.calculator-tab {
    min-height: 36px;
    padding: 0.38rem 0.85rem;
    border-radius: 0.25rem;
    color: #1e3a5f;
    font-weight: 800;
    transition: background-color .18s ease, color .18s ease;
}
.calculator-tab.is-active {
    background: #1e3a5f;
    color: #fff;
}
.calculator-panel.hidden {
    display: none;
}
.easy-calculator-box {
    border: 1px solid rgba(201,168,76,0.45);
    border-radius: 0.5rem;
    padding: 0.85rem;
    background: #fffaf0;
    color: #473a16;
}
.easy-calculator-box strong {
    display: block;
    color: #1e3a5f;
    font-weight: 900;
}
.easy-calculator-box p {
    margin-top: 0.28rem;
    font-size: 0.86rem;
}
.example-chip {
    min-height: 42px;
    padding: 0.55rem 0.7rem;
    border: 1px solid #dbe3ef;
    border-radius: 0.45rem;
    background: #fff;
    color: #1e3a5f;
    font-weight: 800;
    text-align: left;
    transition: border-color .18s ease, background-color .18s ease;
}
.example-chip:hover {
    border-color: #c9a84c;
    background: #fffaf0;
}
.easy-story-input {
    min-height: 150px !important;
}
.featured-petition-card {
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .2s ease, transform .2s ease;
}
.featured-petition-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
    transform: translateY(-2px);
}
.featured-petition-card > a {
    margin: 0 1rem 1rem;
}
.petition-title-link {
    color: inherit;
    text-decoration: none;
    transition: color .18s ease;
}
.petition-title-link:hover {
    color: #c9a84c;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}
.featured-petition-media {
    height: 112px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(30, 58, 95, 0.96), rgba(11, 18, 32, 0.96)),
        radial-gradient(circle at 80% 15%, rgba(201,168,76,.3), transparent 35%);
}
.featured-petition-media span {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(201,168,76,.75);
    border-radius: 999px;
    color: #c9a84c;
    font: 900 2rem Nunito, sans-serif;
}
.library-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 0.78rem 1rem;
    border-top: 1px solid #e2e8f0;
}
.library-row:first-child { border-top: 0; }
.library-row:hover { background: #f8fafc; }

main > section article,
main > section .border.rounded-md {
    border-color: #e5eaf1;
}

@media (min-width: 1024px) {
    main > section .xl\:grid-cols-\[0\.8fr_1\.2fr\] {
        grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.15fr) !important;
    }
    main > section .lg\:grid-cols-\[0\.85fr_1\.15fr\] {
        grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.05fr) !important;
    }
}

@media (max-width: 760px) {
    :root {
        --mobile-header-height: 112px;
    }
    body {
        font-size: 13.4px;
        background: #f8fafc;
        overflow-x: hidden;
    }
    body.mobile-menu-open {
        overflow: hidden;
    }
    main > section.max-w-7xl,
    main > section.max-w-6xl,
    main > section.max-w-5xl {
        max-width: 100% !important;
    }
    h1 { font-size: 1.48rem !important; }
    h2 { font-size: 1.12rem !important; }
    h3 { font-size: 1rem !important; }
    .site-header .max-w-6xl {
        min-height: var(--mobile-header-height);
        display: grid !important;
        grid-template-columns: 1fr;
        justify-items: center;
        padding-top: 0.45rem !important;
        padding-bottom: 0.45rem !important;
        gap: 0.45rem !important;
    }
    .nav-link {
        min-height: 30px;
        padding: 0.3rem 0.42rem;
    }
    .brand-sign {
        width: min(220px, 70vw);
        min-height: 58px;
        padding: 0.35rem 0.45rem;
    }
    .brand-sign img {
        height: 34px;
    }
    .brand-sign span {
        font-size: 0.62rem;
    }
    .mobile-menu-button {
        width: min(220px, 70vw);
        min-height: 42px;
        display: grid;
        grid-template-columns: 22px auto;
        align-items: center;
        justify-content: center;
        column-gap: 0.55rem;
        padding: 0.45rem 0.85rem;
    }
    .mobile-menu-button span {
        grid-column: 1;
    }
    .mobile-menu-button span:nth-child(1) {
        grid-row: 1;
    }
    .mobile-menu-button span:nth-child(2) {
        grid-row: 2;
    }
    .mobile-menu-button span:nth-child(3) {
        grid-row: 3;
    }
    .mobile-menu-button strong {
        grid-column: 2;
        grid-row: 1 / 4;
        font-size: 0.82rem;
    }
    .mobile-menu-panel {
        top: var(--mobile-header-height, 112px);
    }
    .hero-logo-panel {
        min-height: 190px;
        border-left: 0;
        border-top: 1px solid rgba(201, 168, 76, 0.35);
        padding: 1.25rem;
    }
    .hero-stage .py-14,
    .hero-stage .md\:py-20 {
        padding-top: 1.6rem !important;
        padding-bottom: 1.6rem !important;
    }
    .hero-stage .mt-8 {
        display: grid !important;
        grid-template-columns: 1fr;
    }
    .hero-stage a,
    main form button,
    .mt-8.flex.flex-wrap.gap-3 a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    main {
        padding-bottom: 72px;
    }
    .site-footer {
        padding-bottom: 72px;
    }
    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 50;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        min-height: 68px;
        padding: 0.34rem 0.25rem max(0.34rem, env(safe-area-inset-bottom));
        border-top: 1px solid #e2e8f0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 -12px 28px rgba(15, 23, 42, 0.14);
    }
    .mobile-bottom-nav a {
        display: grid;
        place-items: center;
        align-content: center;
        gap: 0.12rem;
        min-width: 0;
        min-height: 56px;
        color: #64748b;
        font-size: 0.68rem;
        font-weight: 800;
    }
    .mobile-bottom-nav a strong {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 800;
    }
    .mobile-bottom-icon {
        width: 28px;
        height: 28px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        color: #64748b;
        font-size: 1.25rem;
        line-height: 1;
        font-weight: 900;
    }
    .mobile-bottom-nav a.is-active {
        color: #dc2626;
    }
    .mobile-bottom-nav a.is-active .mobile-bottom-icon {
        color: #dc2626;
    }
    .field-input {
        font-size: 0.85rem;
        padding: 0.44rem 0.58rem;
    }
    form.flex,
    .flex.gap-2.flex-wrap,
    .mt-8.flex.flex-wrap.gap-3,
    #generatorActions {
        display: grid !important;
        grid-template-columns: 1fr;
        width: 100%;
    }
    form.flex .field-input,
    .flex.gap-2.flex-wrap .field-input,
    select.min-w-\[230px\],
    select.min-w-\[180px\],
    input.min-w-\[240px\],
    select.min-w-\[160px\] {
        min-width: 0 !important;
        width: 100%;
    }
    .library-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0.95rem;
        background: #fff;
    }
    .library-row > div:last-child {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.45rem;
        align-items: stretch;
    }
    .library-row > div:last-child span {
        grid-column: 1 / -1;
        font-size: 0.74rem;
    }
    .library-row > div:last-child a {
        min-height: 38px;
        padding: 0.45rem 0.4rem !important;
        text-align: center;
        display: grid;
        place-items: center;
    }
    .calculator-result-head {
        display: grid !important;
        grid-template-columns: 1fr;
        align-items: start !important;
    }
    .calculator-result-head .copy-btn {
        width: 100%;
    }
    .featured-petition-card {
        border-radius: 0.55rem;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    }
    .petition-content {
        font-size: 0.82rem !important;
        line-height: 1.72 !important;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    pre.petition-content {
        white-space: pre-wrap;
    }
    .seo-content {
        max-width: 100%;
        font-size: 0.93rem;
        line-height: 1.68;
    }
    .seo-content h2:first-child {
        font-size: 1.28rem !important;
    }
    .seo-content h2 {
        font-size: 1.18rem !important;
        margin-top: 1.35rem;
    }
    .related-links-panel {
        margin-top: 2rem;
        padding-top: 1.4rem;
    }
    .site-footer > div {
        grid-template-columns: 1fr !important;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .site-footer .md\:col-span-2 {
        grid-column: auto !important;
    }
}

@media (min-width: 761px) and (max-width: 1100px) {
    body {
        font-size: 13.6px;
    }
    main > section.max-w-7xl,
    main > section.max-w-6xl,
    main > section.max-w-5xl {
        max-width: 96vw !important;
    }
    .site-header .max-w-6xl,
    .site-footer > div {
        max-width: 96vw !important;
    }
    .brand-sign {
        width: 230px;
        min-height: 72px;
    }
    .brand-sign img {
        height: 44px;
    }
    .nav-link {
        min-height: 31px;
        padding: 0.32rem 0.42rem;
    }
}

@media (min-width: 1500px) {
    main > section.max-w-7xl { max-width: 1360px !important; }
    main > section.max-w-6xl { max-width: 1240px !important; }
    .site-header .max-w-6xl,
    .site-footer > div {
        max-width: 1360px !important;
    }
}

@media (max-width: 760px) {
    .library-row {
        grid-template-columns: 1fr;
    }
}

.seo-content {
    max-width: 920px;
    color: #24364b;
    font-size: 1rem;
    line-height: 1.78;
}

.seo-content h2 {
    margin-top: 2rem;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.25;
    color: #102a43;
}

.seo-content h2:first-child {
    margin-top: 0;
    font-size: 1.75rem;
}

.seo-content h3 {
    margin-top: 1.2rem;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    line-height: 1.35;
    color: #102a43;
}

.seo-content p {
    margin-top: 0.65rem;
}

.seo-content ul {
    display: grid;
    gap: 0.45rem;
    margin-top: 0.85rem;
    padding-left: 1.15rem;
    list-style: disc;
}

.seo-content li {
    padding-left: 0.15rem;
    line-height: 1.65;
}

.seo-content strong {
    color: #0f2742;
    font-weight: 800;
}

.related-links-panel {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.related-links-head {
    margin-bottom: 1rem;
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.related-link-card {
    display: grid;
    gap: 0.35rem;
    min-height: 118px;
    padding: 1rem;
    border: 1px solid #dbe3ee;
    border-radius: 0.375rem;
    background: #fff;
    color: #1e3a5f;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.related-link-card:hover {
    border-color: #c9a84c;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
    transform: translateY(-1px);
}

.related-link-card span {
    font-size: 0.75rem;
    font-weight: 800;
    color: #c9a84c;
}

.related-link-card strong {
    align-self: start;
    font-size: 0.98rem;
    line-height: 1.35;
}

.related-link-card small {
    align-self: end;
    font-size: 0.72rem;
    color: #64748b;
}

@media (max-width: 1100px) {
    .related-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .related-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .seo-content {
        max-width: 100%;
        font-size: 0.93rem;
        line-height: 1.68;
    }
    .seo-content h2:first-child {
        font-size: 1.28rem !important;
    }
    .seo-content h2 {
        font-size: 1.18rem !important;
        margin-top: 1.35rem;
    }
}

.seo-check-panel {
    border: 1px solid rgba(30, 58, 95, 0.14);
    border-radius: 0.5rem;
    padding: 1.1rem;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}
.seo-check-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}
.seo-check-grid > div {
    display: grid;
    gap: 0.3rem;
    padding: 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 0.45rem;
    background: #ffffff;
}
.seo-check-grid strong {
    color: #1e3a5f;
}
.seo-check-grid span {
    color: #475569;
    font-size: 0.84rem;
}
@media (max-width: 768px) {
    .seo-check-grid {
        grid-template-columns: 1fr;
    }
}
