.operator-home {
    background:
        radial-gradient(circle at top, rgba(255, 210, 0, 0.12), transparent 32%),
        linear-gradient(180deg, #090b14 0%, #0d1020 48%, #090b14 100%);
}

.operator-home .header,
.operator-home .sticky-header .primary-header {
    background: rgba(17, 20, 35, 0.92);
    backdrop-filter: blur(12px);
}

.operator-home .header:before,
.operator-home .header:after {
    background: #111423;
}

.operator-home .site-shell {
    position: relative;
    overflow: hidden;
}

.operator-home .site-shell:before,
.operator-home .site-shell:after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
    z-index: 0;
}

.operator-home .site-shell:before {
    top: 140px;
    right: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 210, 0, 0.16) 0%, rgba(255, 210, 0, 0) 70%);
}

.operator-home .site-shell:after {
    left: -220px;
    top: 780px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 129, 255, 0.14) 0%, rgba(33, 129, 255, 0) 70%);
}

.operator-home section,
.operator-home footer {
    position: relative;
    z-index: 1;
}

.operator-home .footer-section {
    padding-top: 90px;
    background:
        radial-gradient(circle at top right, rgba(33, 129, 255, 0.24), rgba(33, 129, 255, 0) 34%),
        linear-gradient(180deg, #0d1120 0%, #0e1731 45%, #0a1226 100%);
    border-top: 1px solid rgba(89, 162, 255, 0.22);
}

.operator-home .footer-item,
.operator-home .copyright-wrap {
    color: rgba(226, 235, 255, 0.82);
}

.operator-home .footer-item .widget-title h3,
.operator-home .footer-item .brand,
.operator-home .footer-links a,
.operator-home .footer-contact a,
.operator-home .social-list li a {
    color: #f3f7ff;
}

.operator-home .footer-contact li span {
    color: #69a8ff;
}

.operator-home .social-list li a {
    background-color: rgba(33, 129, 255, 0.2);
    border: 1px solid rgba(89, 162, 255, 0.2);
}

.operator-home .social-list li a:hover {
    background-color: #2f8cff;
    color: #ffffff;
}

.operator-home .copyright-wrap {
    margin-top: 64px;
}

.operator-home .copyright-wrap:before {
    width: 48%;
    background:
        linear-gradient(135deg, rgba(47, 140, 255, 0.34), rgba(12, 22, 48, 0.86));
}

.operator-hero {
    padding: 110px 0 80px;
}

.operator-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 42px;
    align-items: center;
}

.operator-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 210, 0, 0.28);
    border-radius: 999px;
    color: #ffd200;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.03);
}

.operator-eyebrow:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffd200;
    box-shadow: 0 0 16px rgba(255, 210, 0, 0.8);
}

.operator-hero-copy h1 {
    margin: 0 0 22px;
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.operator-accent {
    color: #ffd200;
}

.operator-hero-copy p {
    max-width: 680px;
    margin: 0 0 32px;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.operator-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.operator-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border: 1px solid rgba(255, 210, 0, 0.5);
    border-radius: 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.operator-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.operator-btn-primary {
    background: linear-gradient(135deg, #ffd200 0%, #ffb800 100%);
    color: #111423;
    box-shadow: 0 16px 40px rgba(255, 210, 0, 0.18);
}

.operator-btn-primary:hover {
    color: #111423;
    box-shadow: 0 20px 48px rgba(255, 210, 0, 0.28);
}

.operator-btn-secondary {
    background: rgba(255, 255, 255, 0.03);
}

.operator-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.operator-meta-item {
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.operator-meta-item strong {
    display: block;
    margin-bottom: 8px;
    color: #ffd200;
    font-size: 24px;
    line-height: 1;
}

.operator-meta-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

.operator-hero-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        #111423;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.operator-hero-card:before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 210, 0, 0.18);
    border-radius: 24px;
    pointer-events: none;
}

.operator-hero-media {
    margin-bottom: 22px;
}

.operator-media-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0f1324;
}

.operator-media-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 11, 20, 0.06) 0%, rgba(9, 11, 20, 0.14) 45%, rgba(9, 11, 20, 0.34) 100%),
        linear-gradient(135deg, rgba(255, 210, 0, 0.08), rgba(53, 112, 255, 0.14));
    z-index: 1;
}

.operator-media-card:after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    z-index: 2;
    pointer-events: none;
}

.operator-media-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.operator-media-hero {
    min-height: 320px;
    aspect-ratio: 16 / 10;
}

.operator-media-highlight {
    min-height: 100%;
    aspect-ratio: 16 / 9;
}

.operator-placeholder-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 100%;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(9, 11, 20, 0.9)),
        linear-gradient(135deg, rgba(255, 210, 0, 0.14), rgba(42, 84, 180, 0.16));
    overflow: hidden;
}

.operator-placeholder-frame:before,
.operator-placeholder-frame:after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.operator-placeholder-frame:before {
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.operator-placeholder-frame:after {
    right: -60px;
    top: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 210, 0, 0.22), rgba(255, 210, 0, 0) 70%);
}

.operator-placeholder-frame strong,
.operator-placeholder-frame p,
.operator-placeholder-chip {
    position: relative;
    z-index: 1;
}

.operator-placeholder-chip {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.22);
    color: #ffd200;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.operator-placeholder-frame strong {
    display: block;
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 1.1;
}

.operator-placeholder-frame p {
    margin: 0;
    max-width: 460px;
    color: rgba(255, 255, 255, 0.78);
}

.operator-placeholder-hero {
    min-height: 320px;
}

.operator-card-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    background: rgba(255, 210, 0, 0.1);
    border-radius: 999px;
    color: #ffd200;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.operator-hero-card h3 {
    margin: 0 0 12px;
    font-size: 28px;
}

.operator-hero-card p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.72);
}

.operator-hero-list {
    display: grid;
    gap: 12px;
}

.operator-hero-list li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.78);
}

.operator-hero-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffd200;
}

.operator-section {
    padding: 36px 0 100px;
}

.operator-section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 34px;
}

.operator-section-head h2 {
    max-width: 720px;
    margin: 0 0 14px;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.operator-section-head p,
.operator-section-intro {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.7;
}

.operator-services-grid,
.operator-audience-grid,
.operator-cases-grid {
    display: grid;
    gap: 22px;
}

.operator-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.operator-partner-card {
    position: relative;
    min-height: 140px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.operator-partner-card:before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(255, 210, 0, 0.22);
    border-radius: 14px;
}

.operator-partner-card:after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 210, 0, 0.18), rgba(255, 210, 0, 0) 70%);
}

.operator-partner-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 210, 0, 0.24);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.operator-partner-logo-surface {
    position: relative;
    z-index: 1;
    min-height: 92px;
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 245, 247, 0.94));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(9, 18, 31, 0.06);
}

.operator-partner-logo-surface--dark {
    background: linear-gradient(180deg, rgba(9, 18, 31, 0.96), rgba(20, 28, 40, 0.92));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.operator-partner-logo-surface--compact {
    min-height: 72px;
    padding: 14px;
}

.operator-partner-logo-pair {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.operator-partner-logo {
    display: block;
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.operator-highlights-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.operator-highlight-card {
    grid-column: span 2;
    min-height: 210px;
    height: 100%;
}

.operator-highlight-card-wide {
    grid-column: span 3;
}

.operator-placeholder-photo {
    min-height: 100%;
}

.operator-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.operator-audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.operator-service-card,
.operator-audience-card,
.operator-trust-card,
.operator-case-card,
.operator-cta-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.operator-service-card:hover,
.operator-audience-card:hover,
.operator-case-card:hover,
.operator-cta-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 210, 0, 0.28);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.operator-service-icon,
.operator-audience-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 210, 0, 0.2), rgba(255, 210, 0, 0.08));
    color: #ffd200;
    font-size: 24px;
}

.operator-service-card h3,
.operator-audience-card h3,
.operator-trust-card h3,
.operator-case-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.2;
}

.operator-service-card p,
.operator-audience-card p,
.operator-trust-card p,
.operator-case-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.operator-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.operator-step {
    position: relative;
    padding: 26px 24px 24px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 210, 0, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.02);
}

.operator-step-index {
    display: inline-flex;
    margin-bottom: 18px;
    color: #ffd200;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.operator-step h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.operator-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.operator-trust {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 22px;
}

.operator-trust-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.operator-trust-card strong {
    display: block;
    margin-bottom: 10px;
    color: #ffd200;
    font-size: 34px;
    line-height: 1;
}

.operator-trust-highlight {
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 210, 0, 0.2);
    background: linear-gradient(145deg, rgba(255, 210, 0, 0.16), rgba(255, 255, 255, 0.03));
}

.operator-trust-highlight h3 {
    margin: 0 0 14px;
    font-size: 30px;
}

.operator-trust-highlight p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.78);
}

.operator-mini-list {
    display: grid;
    gap: 12px;
}

.operator-mini-list li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.74);
}

.operator-mini-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffd200;
}

.operator-cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.operator-case-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.operator-case-media {
    position: relative;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 210, 0, 0.18), rgba(35, 42, 68, 0.95)),
        #111423;
    overflow: hidden;
}

.operator-case-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.operator-case-media.has-image:before,
.operator-case-media.has-image:after {
    display: none;
}

.operator-case-media:before,
.operator-case-media:after {
    content: "";
    position: absolute;
    inset: auto;
    opacity: 0.55;
}

.operator-case-media:before {
    left: 22px;
    top: 22px;
    width: 78px;
    height: 78px;
    border: 1px solid rgba(255, 210, 0, 0.4);
    border-radius: 18px;
}

.operator-case-media:after {
    right: -40px;
    bottom: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 70%);
}

.operator-placeholder-case {
    height: 100%;
    padding: 18px;
    justify-content: end;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(9, 11, 20, 0.86)),
        linear-gradient(135deg, rgba(255, 210, 0, 0.08), rgba(35, 42, 68, 0.12));
}

.operator-placeholder-case strong {
    margin: 0;
    font-size: 18px;
}

.operator-case-number,
.operator-case-type {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.operator-case-type {
    margin-top: auto;
    margin-bottom: 0;
}

.operator-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-color: rgba(255, 210, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 210, 0, 0.12), rgba(255, 255, 255, 0.04));
}

.operator-cta-card h2 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.1;
}

.operator-cta-card p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.operator-footer-note {
    margin-top: 18px;
}

.operator-footer-note a {
    color: #ffd200;
}

@media (max-width: 1199px) {
    .operator-hero-copy h1 {
        font-size: 54px;
    }

    .operator-highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .operator-highlight-card-wide {
        grid-column: span 1;
    }

    .operator-services-grid,
    .operator-cases-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .operator-audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .operator-partners-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .operator-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .operator-hero {
        padding-top: 90px;
    }

    .operator-hero-grid,
    .operator-trust,
    .operator-cta-card {
        grid-template-columns: 1fr;
        display: grid;
    }

    .operator-section {
        padding-bottom: 80px;
    }

    .operator-section-head {
        display: block;
    }
}

@media (max-width: 767px) {
    .operator-hero-copy h1 {
        font-size: 40px;
    }

    .operator-hero-copy p,
    .operator-section-head p,
    .operator-section-intro {
        font-size: 16px;
    }

    .operator-section-head h2,
    .operator-cta-card h2 {
        font-size: 32px;
    }

    .operator-services-grid,
    .operator-audience-grid,
    .operator-highlights-grid,
    .operator-cases-grid,
    .operator-partners-grid,
    .operator-process,
    .operator-trust-stack,
    .operator-hero-meta {
        grid-template-columns: 1fr;
    }

    .operator-hero-card,
    .operator-service-card,
    .operator-audience-card,
    .operator-trust-card,
    .operator-case-card,
    .operator-step,
    .operator-cta-card {
        padding: 22px;
    }

    .operator-case-media {
        height: 160px;
    }

    .operator-placeholder-frame {
        padding: 20px;
    }

    .operator-placeholder-frame strong {
        font-size: 22px;
    }

    .operator-btn {
        width: 100%;
    }
}
