/**
 * Enterprise Blog - Listing & Article
 * Professional, clean layout with featured post, grid, sidebar
 */

/* ---- Page wrapper ---- */
.blog-page {
    background: #f8fafc;
    min-height: 60vh;
    padding-bottom: 4rem;
    position: relative;
    z-index: 0;
    overflow: visible;
}

/* ---- Promotional banner (light blue) ---- */
.blog-banner {
    background: #dbeafe;
    padding: 2rem clamp(1.5rem, 4vw, 2.5rem);
    position: relative;
    z-index: 0;
}
.blog-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}
.blog-banner-headline {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
    flex: 1;
    min-width: 280px;
}
.blog-banner-cta {
    display: inline-block;
    padding: 12px 24px;
    background: #0f172a;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: none;
}
/* Hover: keep white text (override generic a:hover from style.css) */
a.blog-banner-cta:hover,
a.blog-banner-cta:focus,
a.blog-banner-cta:active,
a.blog-banner-cta:visited:hover,
.blog-banner-cta:hover,
.blog-banner-cta:focus {
    background: #0f172a !important;
    color: #fff !important;
    transform: none;
}
.blog-banner-cta:visited:hover {
    color: #fff !important;
}
.blog-banner + .blog-nav {
    margin-top: 0;
}

/* ---- Blog nav (categories + resources) ---- */
.blog-nav {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
    padding: 0 1rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    min-height: 48px;
    display: flex;
    align-items: center;
}
.blog-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.25rem;
    padding: 0.75rem 0;
}
.blog-nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.blog-nav-link:hover {
    background: #2563eb;
    color: #fff;
}
.blog-nav-link.active {
    background: #2563eb;
    color: #fff;
}
.blog-nav-link.active:hover {
    background: #1d4ed8;
    color: #fff;
}
.blog-nav-sep {
    width: 1px;
    height: 1.25rem;
    background: #cbd5e1;
    margin: 0 0.25rem;
    flex-shrink: 0;
}
.blog-nav-link-secondary {
    color: #64748b;
    font-size: 0.875rem;
}

/* ---- Main content layout ---- */
.blog-main-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem clamp(1.5rem, 4vw, 2rem) 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
    position: relative;
    z-index: 0;
}
@media (min-width: 992px) {
    .blog-main-wrap {
        grid-template-columns: 1fr 320px;
        gap: 3rem;
    }
}

/* ---- Featured post (article + image layout, doola-style) ---- */
.blog-featured {
    margin-bottom: 2.5rem;
}
.blog-featured-card {
    display: grid;
    grid-template-columns: 1fr;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
@media (min-width: 768px) {
    .blog-featured-card {
        grid-template-columns: 1fr 1fr;
    }
}
.blog-featured-card:hover {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
    transform: translateY(-2px);
}
.blog-featured-body {
    padding: 2rem 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    order: 1;
}
@media (min-width: 768px) {
    .blog-featured-body { order: 0; }
}
.blog-cat-pill {
    display: inline-block;
    padding: 6px 14px;
    background: #0f172a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 999px;
    margin-bottom: 1rem;
    width: fit-content;
}
.blog-featured-body h2 {
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.3;
    color: #0f172a;
}
.blog-featured-byline {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0 0 1rem;
    line-height: 1.5;
}
.blog-featured-excerpt {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 1rem;
    flex: 1;
}
.blog-featured-image {
    aspect-ratio: 16/10;
    background: #e2e8f0;
    overflow: hidden;
    order: 0;
}
@media (min-width: 768px) {
    .blog-featured-image { order: 1; }
}
.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-featured-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}
.blog-featured-meta .blog-cat {
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.blog-featured-read {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #2563eb;
}
.blog-featured-read:hover {
    color: #1d4ed8;
}

/* ---- Posts grid ---- */
.blog-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.75rem;
}
@media (min-width: 640px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.blog-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}
.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.blog-card-image {
    aspect-ratio: 16/10;
    background: #f1f5f9;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-card-body {
    padding: 1.25rem 1.25rem 1.5rem;
}
.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    color: #64748b;
}
.blog-card-meta .blog-cat {
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.blog-card-body h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.35;
    color: #0f172a;
}
.blog-card-excerpt {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- Sidebar ---- */
.blog-sidebar {
    position: sticky;
    top: 100px;
}
.blog-sidebar-cta {
    background: #dbeafe;
    border-radius: 16px 16px 0 0;
    padding: 1.5rem 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #93c5fd;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.blog-sidebar-cta-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1rem;
    line-height: 1.35;
}
.blog-sidebar-cta-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #0f172a;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 999px;
    text-decoration: none;
    transition: none;
}
/* Hover disabled - no color/transform change */
.blog-sidebar-cta-btn:hover {
    background: #0f172a;
    color: #fff !important;
    transform: none;
}
.blog-sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.blog-sidebar-widget:last-child {
    margin-bottom: 0;
}
.blog-sidebar-widget h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.blog-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-sidebar-list li {
    margin-bottom: 0.75rem;
}
.blog-sidebar-list li:last-child {
    margin-bottom: 0;
}
.blog-sidebar-list a {
    display: block;
    font-size: 0.9375rem;
    color: #475569;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.2s;
}
.blog-sidebar-list a:hover {
    color: #2563eb;
}
.blog-sidebar-newsletter {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    border: none;
    padding: 1.5rem;
    border-radius: 12px;
}
.blog-sidebar-newsletter h3 {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.25);
    margin-bottom: 0.75rem;
}
.blog-sidebar-newsletter p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.9);
    margin: 0 0 1rem;
    line-height: 1.5;
}
.blog-sidebar-newsletter .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #fff;
    color: #1e40af;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: none;
}
/* Hover disabled - no color change */
.blog-sidebar-newsletter .btn:hover {
    background: #fff;
    color: #1e40af !important;
}

/* ---- Pagination ---- */
.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}
.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    color: #475569;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}
.blog-pagination a:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
}
.blog-pagination .current {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}
.blog-pagination .disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* ---- Empty state ---- */
.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}
.blog-empty h2 {
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
    color: #0f172a;
}
.blog-empty p {
    color: #64748b;
    margin: 0 0 1.5rem;
}
.blog-empty .btn {
    display: inline-block;
}

/* ---- Single post (blog-post.php) ---- */
.blog-article-page {
    background: #f8fafc;
    padding-bottom: 4rem;
}
/* Reserve space so banner/hero don't sit under sticky header when scrolled to top */
.blog-article-page > .blog-banner {
    padding-top: 80px;
}
.blog-article-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem clamp(1.5rem, 4vw, 2rem) 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 992px) {
    .blog-article-wrap {
        grid-template-columns: 1fr 320px;
        gap: 3rem;
    }
}
.blog-article-content {
    min-width: 0;
}
.blog-article-content .blog-article-back {
    margin-bottom: 1rem;
}
.blog-article-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.blog-article-content .blog-article-byline {
    font-size: 0.9375rem;
    color: #64748b;
    margin: 0 0 1.5rem;
    font-weight: 500;
}
.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: #64748b;
}
.blog-article-meta .blog-cat {
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.blog-article-image {
    margin: 0 0 2rem;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
}
.blog-article-image img {
    width: 100%;
    height: auto;
    display: block;
}
.blog-article-body {
    padding: 0 0 2rem;
}
.blog-article-body .content {
    padding: 0;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #334155;
}
.blog-article-body .content p {
    margin: 0 0 1.25rem;
}
.blog-article-body .content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    color: #0f172a;
}
.blog-article-body .content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: #0f172a;
}
.blog-article-body .content ul, .blog-article-body .content ol {
    margin: 0 0 1.25rem;
    padding-left: 1.5rem;
}
.blog-article-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    margin-bottom: 1.5rem;
}
.blog-article-back:hover {
    color: #2563eb;
}

/* ---- FAQ page (same layout as blog) ---- */
.faq-content {
    min-width: 0;
}
.faq-page-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.25;
}
.faq-page-intro {
    font-size: 1.0625rem;
    color: #64748b;
    margin: 0 0 2rem;
    line-height: 1.6;
}
.faq-category {
    margin-bottom: 2.5rem;
}
.faq-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}
.faq-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.25rem 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem;
    line-height: 1.4;
}
.faq-answer {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}
.faq-cta {
    background: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}
.faq-cta-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.75rem;
}
.faq-cta-text {
    color: #64748b;
    margin: 0 0 1.5rem;
    font-size: 1rem;
}
.faq-cta-links {
    margin: 1.25rem 0 0;
    font-size: 0.875rem;
}
.faq-cta-links a {
    color: #2563eb;
    text-decoration: none;
}
.faq-cta-links a:hover {
    text-decoration: underline;
}

/* ---- Guides page (same layout as blog) ---- */
.guides-content {
    min-width: 0;
}
.guides-page-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.25;
}
.guides-page-intro {
    font-size: 1.0625rem;
    color: #64748b;
    margin: 0 0 2rem;
    line-height: 1.6;
}
.guides-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}
.guides-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}
.guides-card {
    display: block;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.75rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.guides-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}
.guides-card:hover .guides-card-link {
    color: #2563eb;
}
.guides-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 10px;
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.guides-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.guides-card-text {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 1rem;
}
.guides-card-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #475569;
    transition: color 0.2s;
}
.guides-popular {
    margin-top: 2rem;
}
.guides-popular-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .guides-popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.guides-popular-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
}
.guides-popular-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
}
.guides-popular-text {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 1rem;
}

/* ---- Centered enterprise layout (About, Newsroom) ---- */
.blog-center-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem clamp(1.5rem, 4vw, 2rem) 4rem;
    text-align: center;
    background: transparent;
    overflow: visible;
}
.blog-center-wrap .enterprise-hero + .enterprise-section {
    margin-top: 0;
    padding-top: 0;
}
.blog-center-wrap .enterprise-hero,
.blog-center-wrap header.enterprise-hero,
main header.enterprise-hero {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
}
.enterprise-hero {
    margin-bottom: 3rem;
    background: transparent !important;
    padding: 2rem 0 2.5rem;
    overflow: visible;
    display: block;
}
.enterprise-hero .enterprise-breadcrumb {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1.25rem;
    display: block;
}
.enterprise-hero .enterprise-breadcrumb a {
    color: #475569;
    text-decoration: none;
}
.enterprise-hero .enterprise-breadcrumb a:hover {
    color: #2563eb;
}
.enterprise-hero .enterprise-breadcrumb span {
    margin-left: 0.5rem;
}
.enterprise-hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    display: block;
}
.enterprise-hero-subtitle {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 1.25rem;
    display: block;
}
.enterprise-hero-trust {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    display: block;
    line-height: 1.5;
}
.enterprise-section {
    margin-top: 0;
    margin-bottom: 3rem;
    padding-top: 0;
    text-align: center;
    overflow: visible;
    display: block;
}
.enterprise-section + .enterprise-section {
    margin-top: 0;
}
.enterprise-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.5rem;
    display: block;
}
.enterprise-section p {
    font-size: 1.0625rem;
    color: #475569;
    line-height: 1.8;
    margin: 0 0 1.25rem;
    text-align: center;
    display: block;
}
.enterprise-section p + p {
    margin-top: 0;
}
.enterprise-section p:last-child {
    margin-bottom: 0;
}
.enterprise-stat-card {
    display: inline-block;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0, 0.04);
}
.enterprise-stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #2563eb;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.enterprise-stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}
.enterprise-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}
@media (min-width: 640px) {
    .enterprise-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .enterprise-values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}
.enterprise-value-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.enterprise-value-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.enterprise-value-card .enterprise-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 12px;
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.enterprise-value-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
}
.enterprise-value-card p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}
.enterprise-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}
@media (min-width: 640px) {
    .enterprise-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}
.enterprise-choose-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    text-align: center;
}
.enterprise-choose-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
}
.enterprise-choose-item p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
    text-align: center;
}
.enterprise-cta {
    margin-top: 2rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    border-radius: 16px;
    color: #fff;
    text-align: center;
}
.enterprise-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #fff;
}
.enterprise-cta p {
    color: rgba(255,255,255,0.9);
    margin: 0 0 1.5rem;
    font-size: 1rem;
}
.enterprise-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}
.enterprise-cta .btn-primary {
    background: #fff;
    color: #1e3a8a;
    border: none;
}
.enterprise-cta .btn-primary:hover {
    background: #fff;
    color: #000;
}
.enterprise-press-block {
    padding: 2rem;
    text-align: center;
}
.enterprise-press-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.75rem;
}
.enterprise-press-block p {
    margin: 0 0 1.5rem;
    font-size: 1.0625rem;
    color: #64748b;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.enterprise-press-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.enterprise-press-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}
