.osos-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.osos-hero {
    position: relative;
    min-height: 660px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.18), transparent 34%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.14), transparent 28%),
        linear-gradient(135deg, #050505 0%, #111111 48%, #1b1b1b 100%);
    color: #fff;
    border-radius: 0 0 44px 44px;
}

.osos-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
    pointer-events: none;
}

.osos-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 54px;
    padding: 90px 0;
}

.osos-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 999px;
    color: #f3d77b;
    background: rgba(212, 175, 55, 0.08);
    font-weight: 700;
    margin-bottom: 22px;
}

.osos-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.9);
}

.osos-hero-content h1 {
    margin: 0;
    font-size: clamp(2.2rem, 4.8vw, 4.4rem);
    line-height: 1.25;
    letter-spacing: -1px;
    color: #ffffff;
}

.osos-hero-text {
    margin: 24px 0 0;
    max-width: 680px;
    font-size: 1.18rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.78);
}

.osos-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.osos-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

.osos-btn-gold {
    color: #111;
    background: linear-gradient(135deg, #f4d875, #d4af37 55%, #b98b1f);
    box-shadow: 0 14px 34px rgba(212, 175, 55, 0.28);
}

.osos-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(212, 175, 55, 0.36);
}

.osos-btn-dark {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
}

.osos-btn-dark:hover {
    border-color: rgba(212, 175, 55, 0.55);
    color: #f3d77b;
    transform: translateY(-3px);
}

.osos-hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 42px;
    max-width: 760px;
}

.osos-hero-points div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(14px);
}

.osos-hero-points strong {
    display: block;
    color: #f3d77b;
    font-size: 0.96rem;
    margin-bottom: 6px;
}

.osos-hero-points span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.7;
}

.osos-hero-logo-box {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 420px;
}

.osos-hero-logo {
    position: relative;
    z-index: 2;
    width: min(390px, 88%);
    height: auto;
    object-fit: contain;
    border: none;
    background: transparent;
    filter: drop-shadow(0 28px 58px rgba(0, 0, 0, 0.52));
    animation: ososFloat 5s ease-in-out infinite;
}

.osos-logo-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent 68%);
    filter: blur(10px);
}

@keyframes ososFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.osos-section {
    padding: 86px 0;
    background: #f7f7f4;
}

.osos-process-section {
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 32%),
        #ffffff;
}

.osos-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 46px;
}

.osos-section-head span {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.13);
    color: #8a6818;
    font-weight: 800;
    margin-bottom: 16px;
}

.osos-section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #111;
    line-height: 1.4;
}

.osos-section-head p {
    margin: 16px auto 0;
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
}

.osos-program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.osos-program-card {
    position: relative;
    min-height: 300px;
    padding: 30px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.07);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
    transition: 0.25s ease;
    overflow: hidden;
}

.osos-program-card::after {
    content: "";
    position: absolute;
    inset-inline-start: -70px;
    bottom: -90px;
    width: 210px;
    height: 210px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 70%);
}

.osos-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.35);
}

.osos-featured-card {
    background:
        linear-gradient(145deg, #111 0%, #191919 100%);
    color: #fff;
    border-color: rgba(212, 175, 55, 0.35);
}

.osos-featured-card p {
    color: rgba(255, 255, 255, 0.76) !important;
}

.osos-featured-card a {
    color: #f3d77b !important;
}

.osos-program-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.15);
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.osos-program-card h3 {
    position: relative;
    margin: 0 0 14px;
    font-size: 1.34rem;
    line-height: 1.6;
}

.osos-program-card p {
    position: relative;
    color: #666;
    line-height: 1.9;
    margin-bottom: 24px;
}

.osos-program-card a {
    position: relative;
    color: #8a6818;
    font-weight: 900;
    text-decoration: none;
}

.osos-program-card a::after {
    content: " ←";
}

.osos-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.osos-step-card {
    padding: 28px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.07);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.055);
    transition: 0.25s ease;
}

.osos-step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.32);
}

.osos-step-number {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.62);
    margin-bottom: 18px;
}

.osos-step-card h3 {
    margin: 0 0 12px;
    font-size: 1.18rem;
}

.osos-step-card p {
    margin: 0;
    color: #666;
    line-height: 1.85;
}

.osos-final-cta {
    padding: 80px 0;
    background: #f7f7f4;
}

.osos-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.25), transparent 30%),
        linear-gradient(135deg, #111, #1c1c1c);
    color: #fff;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.16);
}

.osos-cta-box span {
    color: #f3d77b;
    font-weight: 900;
}

.osos-cta-box h2 {
    margin: 10px 0;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.osos-cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
}

@media (max-width: 1000px) {
    .osos-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 70px 0;
    }

    .osos-hero-logo-box {
        justify-content: center;
        min-height: auto;
        order: -1;
    }

    .osos-hero-logo {
        width: min(280px, 78%);
    }

    .osos-logo-glow {
        width: 280px;
        height: 280px;
    }

    .osos-hero-actions {
        justify-content: center;
    }

    .osos-hero-points {
        grid-template-columns: 1fr;
        margin-inline: auto;
    }

    .osos-program-grid,
    .osos-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .osos-cta-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .osos-container {
        width: min(100% - 24px, 1180px);
    }

    .osos-hero {
        min-height: auto;
        border-radius: 0 0 28px 28px;
    }

    .osos-hero-content h1 {
        font-size: 2.15rem;
    }

    .osos-hero-text {
        font-size: 1rem;
    }

    .osos-program-grid,
    .osos-process-grid {
        grid-template-columns: 1fr;
    }

    .osos-section {
        padding: 64px 0;
    }

    .osos-program-card,
    .osos-step-card,
    .osos-cta-box {
        border-radius: 24px;
    }
}