.soc-body {
    background-color: #ffffff;
    color: #111111;
}

.soc-page {
    max-width: 1200px;
}

.hero-section {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 3rem;
}

.hero-eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #333333;
}

.hero-title {
    font-size: clamp(2.25rem, 2.5vw + 1.5rem, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333333;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-actions .cta-btn {
    background-color: #111111;
    border: 1px solid #111111;
    color: #ffffff;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-actions .cta-btn:hover,
.hero-actions .cta-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.hero-visual {
    position: relative;
    padding: 2rem;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.hero-visual img {
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.hero-highlights li {
    background: #f8f8f8;
    border-radius: 0.85rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-highlights i {
    font-size: 1.5rem;
    color: #111111;
}

.feature-section {
    margin: 4rem 0;
}

.feature-section .section-heading {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.12);
}

.feature-card i {
    font-size: 2rem;
    color: #111111;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #333333;
    margin-bottom: 0;
    line-height: 1.8;
}

.soc-content-card {
    background: linear-gradient(135deg, #ffffff, #f5f5f5 85%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1.25rem;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.soc-content-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #242424;
}

.stop-section {
    margin: 4rem 0;
    padding: 3rem;
    border-radius: 1.25rem;
    background: #0f0f0f;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.stop-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 60%);
    pointer-events: none;
}

.stop-section h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.stop-section p {
    color: #efefef;
    line-height: 1.8;
}

.stop-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-panel {
    margin: 4rem 0 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1.25rem;
    padding: 2.5rem;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.cta-panel h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-panel p {
    margin-bottom: 0;
    color: #333333;
    font-size: 1.05rem;
}

.cta-panel .cta-btn {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .stop-section {
        padding: 2.5rem 2rem;
    }
}
