*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a {
    color: #475569;
    text-decoration: none;
}

a:hover {
    color: #1e293b;
}

.sv-navbar {
    background-color: #0f172a;
    border-bottom: 1px solid #1e293b;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sv-navbar .navbar-brand {
    font-size: 20px;
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: -0.5px;
}

.sv-navbar .navbar-brand .brand-dot {
    color: #475569;
}

.sv-navbar .nav-link {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    transition: color 0.2s;
}

.sv-navbar .nav-link:hover,
.sv-navbar .nav-link.active {
    color: #f1f5f9;
}

.sv-navbar .btn-nav-cta {
    background-color: #475569;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    border: none;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.sv-navbar .btn-nav-cta:hover {
    background-color: #334155;
    color: #fff;
}

.sv-navbar .navbar-toggler {
    border-color: #334155;
}

.sv-navbar .navbar-toggler-icon {
    filter: invert(1);
}

.sv-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f2d4a 100%);
    padding: 0;
    color: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.sv-hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.78) 60%, rgba(15, 45, 74, 0.82) 100%);
    padding: 100px 0 88px;
}

.hero-content-center {
    max-width: 760px;
    margin: 0 auto;
}

.sv-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='600' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='100' r='3' fill='%23475569' opacity='0.5'/%3E%3Ccircle cx='200' cy='180' r='3' fill='%23475569' opacity='0.4'/%3E%3Ccircle cx='350' cy='80' r='3' fill='%23475569' opacity='0.5'/%3E%3Ccircle cx='480' cy='200' r='3' fill='%23475569' opacity='0.3'/%3E%3Ccircle cx='300' cy='300' r='3' fill='%23475569' opacity='0.4'/%3E%3Ccircle cx='500' cy='320' r='3' fill='%23475569' opacity='0.3'/%3E%3Cline x1='100' y1='100' x2='200' y2='180' stroke='%23475569' stroke-width='1' opacity='0.3'/%3E%3Cline x1='200' y1='180' x2='350' y2='80' stroke='%23475569' stroke-width='1' opacity='0.3'/%3E%3Cline x1='350' y1='80' x2='480' y2='200' stroke='%23475569' stroke-width='1' opacity='0.3'/%3E%3Cline x1='200' y1='180' x2='300' y2='300' stroke='%23475569' stroke-width='1' opacity='0.2'/%3E%3Cline x1='480' y1='200' x2='500' y2='320' stroke='%23475569' stroke-width='1' opacity='0.2'/%3E%3C/svg%3E") no-repeat center center;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.sv-hero .hero-badge {
    display: inline-block;
    background-color: rgba(71, 85, 105, 0.3);
    border: 1px solid rgba(71, 85, 105, 0.6);
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.sv-hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #f1f5f9;
    margin-bottom: 20px;
}

.sv-hero h1 em {
    font-style: normal;
    color: #7dd3fc;
}

.sv-hero .hero-subtitle {
    font-size: 18px;
    line-height: 1.65;
    color: #94a3b8;
    max-width: 540px;
    margin-bottom: 36px;
}

.sv-hero .hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.btn-primary-sv {
    background-color: #475569;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-sv:hover {
    background-color: #334155;
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-sv {
    background-color: transparent;
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 7px;
    border: 1.5px solid #475569;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-sv:hover {
    background-color: rgba(71, 85, 105, 0.15);
    color: #f1f5f9;
}

.sv-hero .hero-metrics {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.sv-hero .hero-metric {
    display: flex;
    flex-direction: column;
}

.sv-hero .hero-metric .metric-value {
    font-size: 28px;
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: -1px;
    line-height: 1;
}

.sv-hero .hero-metric .metric-label {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

.hero-placeholder {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid #334155;
    border-radius: 12px;
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 13px;
    gap: 10px;
}

.hero-placeholder .placeholder-icon {
    width: 48px;
    height: 48px;
    border: 2px dashed #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 20px;
}

.sv-section-light {
    background-color: #f8fafc;
    padding: 80px 0;
}

.sv-section-white {
    background-color: #ffffff;
    padding: 80px 0;
}

.sv-section-dark {
    background-color: #0f172a;
    padding: 80px 0;
    color: #f1f5f9;
}

.sv-section-mid {
    background-color: #1e293b;
    padding: 80px 0;
    color: #f1f5f9;
}

.section-label-sv {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 12px;
}

.sv-section-dark .section-label-sv,
.sv-section-mid .section-label-sv {
    color: #7dd3fc;
}

.section-title-sv {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sv-section-dark .section-title-sv,
.sv-section-mid .section-title-sv {
    color: #f1f5f9;
}

.section-subtitle-sv {
    font-size: 17px;
    color: #64748b;
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 0;
}

.sv-section-dark .section-subtitle-sv,
.sv-section-mid .section-subtitle-sv {
    color: #94a3b8;
}

.sv-sensor-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 28px 24px;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sv-sensor-card:hover {
    border-color: #475569;
    box-shadow: 0 4px 16px rgba(71, 85, 105, 0.1);
}

.sv-sensor-card .sensor-icon {
    width: 44px;
    height: 44px;
    background-color: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
    color: #475569;
}

.sv-sensor-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.sv-sensor-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 14px;
    line-height: 1.6;
}

.sv-sensor-card .sensor-spec {
    font-size: 12px;
    color: #475569;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sv-metrics-bar {
    background-color: #1e293b;
    padding: 36px 0;
}

.sv-metrics-bar .metric-item {
    text-align: center;
    padding: 12px 0;
}

.sv-metrics-bar .metric-num {
    font-size: 34px;
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: -1px;
    line-height: 1;
}

.sv-metrics-bar .metric-unit {
    font-size: 18px;
    color: #7dd3fc;
}

.sv-metrics-bar .metric-label {
    font-size: 13px;
    color: #64748b;
    margin-top: 6px;
}

.sv-divider {
    width: 1px;
    background-color: #334155;
    height: 60px;
    margin: auto;
}

.sv-industry-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;
    padding: 28px 24px;
    height: 100%;
    transition: border-color 0.2s;
}

.sv-industry-card:hover {
    border-color: #475569;
}

.sv-industry-card .industry-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(71, 85, 105, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
    color: #7dd3fc;
}

.sv-industry-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.sv-industry-card p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 0;
    line-height: 1.6;
}

.sv-product-feature {
    padding: 36px 0;
    border-bottom: 1px solid #e2e8f0;
}

.sv-product-feature:last-child {
    border-bottom: none;
}

.sv-product-feature h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.sv-product-feature p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 0;
}

.feature-img-placeholder {
    background-color: #f1f5f9;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 13px;
    gap: 8px;
}

.feature-img-placeholder i {
    font-size: 28px;
    color: #cbd5e1;
}

.sv-solutions-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 3px solid #475569;
    border-radius: 8px;
    padding: 28px 24px;
    height: 100%;
    transition: box-shadow 0.2s;
}

.sv-solutions-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.sv-solutions-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.sv-solutions-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 14px;
}

.sv-solutions-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.sv-solutions-card ul li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 6px;
}

.sv-team-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.sv-team-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.sv-team-card .team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #f1f5f9;
    border: 2px dashed #cbd5e1;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #94a3b8;
    overflow: hidden;
}

.sv-team-card .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.sv-team-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.sv-team-card .team-title {
    font-size: 13px;
    color: #475569;
    font-weight: 600;
    margin-bottom: 10px;
}

.sv-team-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 0;
}

.sv-cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0;
    text-align: center;
}

.sv-cta-section h2 {
    font-size: 38px;
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.sv-cta-section p {
    font-size: 17px;
    color: #94a3b8;
    max-width: 520px;
    margin: 0 auto 36px;
}

.sv-footer {
    background-color: #0a0f1a;
    padding: 56px 0 28px;
    color: #64748b;
}

.sv-footer .footer-brand {
    font-size: 20px;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 12px;
}

.sv-footer .footer-tagline {
    font-size: 13px;
    color: #475569;
    margin-bottom: 0;
}

.sv-footer h6 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 16px;
}

.sv-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sv-footer ul li {
    margin-bottom: 10px;
}

.sv-footer ul li a {
    font-size: 14px;
    color: #64748b;
    transition: color 0.2s;
}

.sv-footer ul li a:hover {
    color: #f1f5f9;
}

.sv-footer .footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 24px;
    margin-top: 48px;
}

.sv-footer .footer-contact p {
    font-size: 13px;
    color: #475569;
    margin-bottom: 6px;
}

.sv-footer .footer-contact a {
    color: #475569;
}

.sv-footer .footer-contact a:hover {
    color: #94a3b8;
}

.sv-page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 72px 0 60px;
    color: #f1f5f9;
}

.sv-page-hero h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.sv-page-hero p {
    font-size: 17px;
    color: #94a3b8;
    max-width: 540px;
    margin-bottom: 0;
}

.sv-contact-form {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
}

.sv-contact-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.sv-contact-form .form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: 7px;
    padding: 10px 14px;
    font-size: 15px;
    color: #0f172a;
    background-color: #f8fafc;
    transition: border-color 0.2s;
}

.sv-contact-form .form-control:focus {
    border-color: #475569;
    box-shadow: 0 0 0 3px rgba(71, 85, 105, 0.1);
    background-color: #fff;
}

.sv-contact-info-card {
    background-color: #1e293b;
    border-radius: 12px;
    padding: 32px;
    color: #f1f5f9;
    height: 100%;
}

.sv-contact-info-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 24px;
}

.sv-contact-info-card .info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.sv-contact-info-card .info-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(71, 85, 105, 0.3);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: #7dd3fc;
}

.sv-contact-info-card .info-text {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

.sv-contact-info-card .info-text strong {
    display: block;
    color: #f1f5f9;
    font-size: 14px;
    margin-bottom: 3px;
}

.sv-news-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
    height: 100%;
}

.sv-news-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.sv-news-card .news-img-placeholder {
    width: 100%;
    height: 200px;
    background-color: #f1f5f9;
    border-bottom: 1px dashed #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 12px;
    gap: 8px;
}

.sv-news-card .news-img-placeholder i {
    font-size: 24px;
    color: #cbd5e1;
}

.sv-news-card .news-body {
    padding: 22px;
}

.sv-news-card .news-meta {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.sv-news-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.sv-news-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 14px;
    line-height: 1.55;
}

.sv-news-card a.read-more {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sv-news-card a.read-more:hover {
    color: #1e293b;
}

.sv-legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.sv-legal-content h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.sv-legal-content .legal-date {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 36px;
}

.sv-legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 36px;
    margin-bottom: 12px;
}

.sv-legal-content p, .sv-legal-content li {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

.sv-badge-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    background-color: rgba(71, 85, 105, 0.1);
    color: #475569;
    padding: 3px 10px;
    border-radius: 4px;
    margin-right: 6px;
    margin-bottom: 6px;
}

.sv-about-stat {
    text-align: center;
    padding: 28px;
    border-right: 1px solid #e2e8f0;
}

.sv-about-stat:last-child {
    border-right: none;
}

.sv-about-stat .stat-big {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    line-height: 1;
}

.sv-about-stat .stat-sub {
    font-size: 14px;
    color: #64748b;
    margin-top: 8px;
}

.sv-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    border-top: 1px solid #334155;
    padding: 18px 0;
    z-index: 9999;
    display: none;
}

.sv-cookie-banner.show {
    display: block;
}

.sv-cookie-banner p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

.sv-cookie-banner a {
    color: #7dd3fc;
    text-decoration: underline;
}

.sv-cookie-banner .btn-cookie-accept {
    background-color: #475569;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.sv-cookie-banner .btn-cookie-accept:hover {
    background-color: #334155;
}

.sv-cookie-banner .btn-cookie-decline {
    background-color: transparent;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #334155;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.sv-cookie-banner .btn-cookie-decline:hover {
    color: #94a3b8;
}

@media (max-width: 768px) {
    .sv-hero h1 {
        font-size: 34px;
    }
    .sv-hero-overlay {
        padding: 64px 0 56px;
    }
    .section-title-sv {
        font-size: 28px;
    }
    .sv-cta-section h2 {
        font-size: 28px;
    }
    .hero-placeholder {
        height: 240px;
        margin-top: 40px;
    }
    .sv-metrics-bar .metric-num {
        font-size: 26px;
    }
    .sv-divider {
        display: none;
    }
    .sv-about-stat {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .sv-about-stat:last-child {
        border-bottom: none;
    }
    .sv-article .article-header h1 {
        font-size: 28px;
    }
}

/* === Article Detail Styles === */

.sv-article {
    padding: 0;
}

.sv-article .container-narrow {
    max-width: 780px;
}

.sv-article .article-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 64px 0 48px;
    color: #f1f5f9;
    margin: 0 calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.sv-article .article-header .news-meta {
    font-size: 13px;
    color: #7dd3fc;
    margin-bottom: 14px;
}

.sv-article .article-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.sv-article .article-header .article-lead {
    font-size: 17px;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 0;
}

.sv-article > .container-narrow > img,
.sv-article .article-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: -32px auto 0;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.sv-article .article-body {
    padding: 48px 0 72px;
}

.sv-article .article-body p {
    font-size: 16px;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sv-article .article-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 44px 0 16px;
    letter-spacing: -0.3px;
}

.sv-article .article-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1e293b;
    margin: 32px 0 12px;
}

.sv-article .article-body ul,
.sv-article .article-body ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.sv-article .article-body li {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
    padding: 3px 0;
}

.sv-article .article-body strong {
    color: #0f172a;
}

.sv-article .article-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-top: 48px;
}

.sv-article .article-cta h4 {
    font-size: 22px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 10px;
}

.sv-article .article-cta p {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* === Card Uniformity Fix (auto-generated) === */

.info-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.read-more {
  margin-top: auto;
  display: inline-block;
}

.info-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* === Read More Pin Fix (auto-generated) === */

.article-body > p {
  flex: 1;
}

.news-body > p {
  flex: 1;
}

.article-body > a:last-child,
.article-body > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.news-body > a:last-child,
.news-body > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

/* === Last-Child Pin Fix (auto-generated) === */

.article-body > :last-child {
  margin-top: auto;
}

.news-body > :last-child {
  margin-top: auto;
}

.sv-contact-info-card > :last-child {
  margin-top: auto;
}

.sv-news-card > :last-child {
  margin-top: auto;
}

a.read-more,
[class*="read-more"],
[class*="blog-read-more"] {
  margin-top: auto;
}

/* Card title link styling */
.blog-card h3 a, .blog-card h4 a, .blog-card h5 a,
.news-card h3 a, .news-card h4 a, .news-card h5 a,
.insight-card h3 a, .insight-card h4 a, .insight-card h5 a,
[class*="-card"] h3 a, [class*="-card"] h4 a, [class*="-card"] h5 a {
  color: inherit;
  text-decoration: none;
}
[class*="-card"] h3 a:hover, [class*="-card"] h4 a:hover, [class*="-card"] h5 a:hover {
  text-decoration: underline;
}

/* Form placeholder visibility (theme-aware) */
input::placeholder, textarea::placeholder {
  color: #94a3b8;
  opacity: 1;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #94a3b8;
  opacity: 1;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent, #3b82f6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Universal card equal height */
[class$="-card"], [class*="-card "] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
