:root {
    --service-green: #0be062;
    --service-green-deep: #009b3f;
    --service-orange: #fb8500;
    --service-sky: #3aa0ff;
    --service-navy: #14213d;
}

.service-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100svh;
    min-height: 100dvh;
    height: auto;
    padding-top: var(--header-height, 72px);
    padding-bottom: clamp(1.5rem, 4vh, 3rem);
    box-sizing: border-box;
}

.service-hero.page-title {
    padding-top: var(--header-height, 72px);
    padding-bottom: clamp(1.5rem, 4vh, 3rem);
    height: auto;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: -10% -5% auto;
    height: 120%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 55% at 12% 28%, rgba(11, 224, 98, 0.34), transparent 62%),
        radial-gradient(ellipse 42% 48% at 78% 18%, rgba(58, 160, 255, 0.28), transparent 60%),
        radial-gradient(ellipse 46% 50% at 88% 78%, rgba(251, 133, 0, 0.26), transparent 58%),
        radial-gradient(ellipse 36% 40% at 42% 88%, rgba(11, 224, 98, 0.14), transparent 65%),
        linear-gradient(180deg, #f3faf6 0%, #eef5ff 48%, #fff7ee 100%);
}

.service-hero::after {
    content: '';
    position: absolute;
    width: min(42vw, 420px);
    height: min(42vw, 420px);
    right: -6%;
    top: 18%;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    background:
        conic-gradient(from 180deg at 50% 50%,
            rgba(11, 224, 98, 0.35),
            rgba(58, 160, 255, 0.22),
            rgba(251, 133, 0, 0.28),
            rgba(11, 224, 98, 0.35));
    filter: blur(28px);
    opacity: 0.75;
    animation: service-orb 14s ease-in-out infinite alternate;
}

.service-hero > .bg,
.service-hero > .bg2,
.service-hero > .bg3,
.service-hero > .bg4 {
    z-index: 0;
}

.service-hero > .container {
    position: relative;
    z-index: 1;
    flex: 0 1 auto;
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-hero .main-item {
    max-width: 520px;
    width: 100%;
}

.service-hero .main-item h1 {
    text-align: left;
    margin-top: 0;
    white-space: normal;
    background: linear-gradient(120deg, var(--service-navy) 0%, #1d3557 55%, var(--service-green-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-hero__layout {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(280px, 520px);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
}

.service-hero__visual-col,
.service-hero__copy-col {
    width: 100%;
    min-width: 0;
}

.service-hero__visual-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-hero-visual {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 1 / 0.95;
}

.service-hero-visual__glow {
    position: absolute;
    inset: 12% 8%;
    border-radius: 36px;
    background:
        radial-gradient(circle at 30% 30%, rgba(11, 224, 98, 0.35), transparent 55%),
        radial-gradient(circle at 75% 70%, rgba(58, 160, 255, 0.28), transparent 50%);
    filter: blur(18px);
    animation: service-visual-glow 6s ease-in-out infinite alternate;
}

.service-hero-visual__browser {
    position: absolute;
    inset: 8% 4% 14%;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(20, 33, 61, 0.1);
    box-shadow:
        0 24px 60px rgba(20, 33, 61, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(10px);
    animation: service-browser-float 5.5s ease-in-out infinite;
    transform-origin: center;
}

.service-hero-visual__chrome {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 14px;
    background: linear-gradient(180deg, #f7faf8, #eef3f8);
    border-bottom: 1px solid rgba(20, 33, 61, 0.08);
}

.service-hero-visual__chrome > span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f57;
}

.service-hero-visual__chrome > span:nth-child(2) {
    background: #febc2e;
}

.service-hero-visual__chrome > span:nth-child(3) {
    background: #28c840;
}

.service-hero-visual__url {
    flex: 1;
    margin-left: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(20, 33, 61, 0.08);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 11px;
    color: #5b6b85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-hero-visual__screen {
    flex: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 0;
}

.service-hero-visual__code {
    padding: 16px 14px;
    background: #121826;
    color: #d7e0ef;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 11px;
    line-height: 1.7;
    overflow: hidden;
}

.service-hero-visual__line {
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    opacity: 0;
    animation: service-code-type 8s steps(28, end) infinite;
}

.service-hero-visual__line:nth-child(1) { animation-delay: 0.2s; }
.service-hero-visual__line:nth-child(2) { animation-delay: 1.4s; }
.service-hero-visual__line:nth-child(3) { animation-delay: 2.6s; }
.service-hero-visual__line:nth-child(4) { animation-delay: 3.8s; }

.service-hero-visual__line--indent {
    padding-left: 14px;
}

.service-hero-visual__line i {
    display: inline-block;
    width: 10px;
    color: #6b7c99;
}

.service-hero-visual__line b { color: #7dd3fc; font-weight: 600; }
.service-hero-visual__line em { color: #86efac; font-style: normal; }
.service-hero-visual__line s { color: #fcd34d; text-decoration: none; }

.service-hero-visual__cursor {
    display: inline-block;
    width: 7px;
    height: 13px;
    margin-left: 2px;
    vertical-align: -2px;
    background: var(--service-green);
    animation: service-cursor-blink 1s steps(1) infinite;
}

.service-hero-visual__preview {
    position: relative;
    padding: 16px;
    background:
        linear-gradient(180deg, rgba(11, 224, 98, 0.08), transparent 40%),
        #f8fbf9;
    overflow: hidden;
}

.service-hero-visual__preview-bar,
.service-hero-visual__preview-title,
.service-hero-visual__preview-text,
.service-hero-visual__preview-btn {
    border-radius: 8px;
    transform: translateY(10px);
    opacity: 0;
    animation: service-preview-in 8s ease-in-out infinite;
}

.service-hero-visual__preview-bar {
    width: 42%;
    height: 10px;
    background: linear-gradient(90deg, #0be062, #3aa0ff);
    animation-delay: 1.1s;
}

.service-hero-visual__preview-title {
    width: 78%;
    height: 16px;
    margin-top: 14px;
    background: rgba(20, 33, 61, 0.82);
    animation-delay: 1.8s;
}

.service-hero-visual__preview-text {
    width: 92%;
    height: 8px;
    margin-top: 10px;
    background: rgba(20, 33, 61, 0.18);
    animation-delay: 2.3s;
}

.service-hero-visual__preview-text::after {
    content: '';
    display: block;
    width: 70%;
    height: 8px;
    margin-top: 8px;
    border-radius: 8px;
    background: rgba(20, 33, 61, 0.12);
}

.service-hero-visual__preview-btn {
    width: 46%;
    height: 28px;
    margin-top: 16px;
    border-radius: 10px;
    background: linear-gradient(180deg, #0be062, #009b3f);
    box-shadow: 0 8px 18px rgba(11, 224, 98, 0.28);
    animation-delay: 2.9s;
}

.service-hero-visual__preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 18px;
}

.service-hero-visual__preview-cards span {
    height: 54px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(20, 33, 61, 0.08);
    box-shadow: 0 8px 16px rgba(20, 33, 61, 0.06);
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    animation: service-preview-in 8s ease-in-out infinite;
}

.service-hero-visual__preview-cards span:nth-child(1) {
    background: linear-gradient(180deg, rgba(11, 224, 98, 0.18), #fff);
    animation-delay: 3.4s;
}

.service-hero-visual__preview-cards span:nth-child(2) {
    background: linear-gradient(180deg, rgba(58, 160, 255, 0.18), #fff);
    animation-delay: 3.7s;
}

.service-hero-visual__preview-cards span:nth-child(3) {
    background: linear-gradient(180deg, rgba(251, 133, 0, 0.18), #fff);
    animation-delay: 4s;
}

.service-hero-visual__chip {
    position: absolute;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    box-shadow: 0 10px 24px rgba(20, 33, 61, 0.16);
    animation: service-chip-float 4.8s ease-in-out infinite;
}

.service-hero-visual__chip--html {
    left: -2%;
    top: 18%;
    background: linear-gradient(135deg, #ff7a18, #fb8500);
}

.service-hero-visual__chip--css {
    right: -4%;
    top: 28%;
    background: linear-gradient(135deg, #64b5ff, #3aa0ff);
    animation-delay: 0.6s;
}

.service-hero-visual__chip--js {
    left: 4%;
    bottom: 16%;
    background: linear-gradient(135deg, #f7d046, #eab308);
    color: #14213d;
    animation-delay: 1.1s;
}

.service-hero-visual__chip--php {
    right: 2%;
    bottom: 10%;
    background: linear-gradient(135deg, #0be062, #009b3f);
    animation-delay: 1.6s;
}

@keyframes service-browser-float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes service-visual-glow {
    from { opacity: 0.7; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1.04); }
}

@keyframes service-code-type {
    0%, 4% { width: 0; opacity: 0; }
    8%, 70% { width: 100%; opacity: 1; }
    85%, 100% { width: 100%; opacity: 0.35; }
}

@keyframes service-cursor-blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes service-preview-in {
    0%, 12% { opacity: 0; transform: translateY(12px) scale(0.96); }
    22%, 72% { opacity: 1; transform: translateY(0) scale(1); }
    86%, 100% { opacity: 0.45; transform: translateY(0) scale(1); }
}

@keyframes service-chip-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--service-green-deep);
    background: rgba(11, 224, 98, 0.14);
    border: 1px solid rgba(11, 224, 98, 0.28);
}

.service-hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--service-green);
    box-shadow: 0 0 0 4px rgba(11, 224, 98, 0.2);
}

.service-hero__badge--live::before {
    animation: service-badge-pulse 1.8s ease-out infinite;
}

.service-hero--show .main-item > * {
    animation: service-rise 0.7s ease both;
}

.service-hero--show .main-item > *:nth-child(1) { animation-delay: 0.05s; }
.service-hero--show .main-item > *:nth-child(2) { animation-delay: 0.12s; }
.service-hero--show .main-item > *:nth-child(3) { animation-delay: 0.18s; }
.service-hero--show .main-item > *:nth-child(4) { animation-delay: 0.24s; }
.service-hero--show .main-item > *:nth-child(5) { animation-delay: 0.3s; }
.service-hero--show .main-item > *:nth-child(6) { animation-delay: 0.36s; }

.service-hero__stats div {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-hero__stats div:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(20, 33, 61, 0.1);
}

.service-hero__crumb {
    margin: 0 0 12px;
    font-size: 14px;
    opacity: 0.7;
}

.service-hero__crumb a {
    color: inherit;
    text-decoration: none;
}

.service-hero__crumb a:hover {
    color: var(--service-green-deep);
}

.service-hero__lead {
    margin: 16px 0 0;
    font-size: 18px;
    line-height: 1.65;
    opacity: 0.9;
}

.service-hero__lead em {
    font-style: normal;
    color: var(--service-green-deep);
    font-weight: 600;
}

.service-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.service-hero__stats div {
    min-width: 148px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(11, 224, 98, 0.18);
    box-shadow: 0 10px 28px rgba(20, 33, 61, 0.06);
    backdrop-filter: blur(8px);
}

.service-hero__stats div:nth-child(2) {
    border-color: rgba(251, 133, 0, 0.22);
    background: rgba(255, 247, 238, 0.85);
}

.service-hero__stats span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.65;
}

.service-hero__stats strong {
    font-size: 22px;
    line-height: 1.2;
    color: var(--service-navy);
}

.service-hub,
.service-page {
    position: relative;
    padding-top: var(--section-space, 60px);
    padding-bottom: var(--section-space, 60px);
    background:
        radial-gradient(ellipse 40% 35% at 0% 0%, rgba(11, 224, 98, 0.1), transparent 60%),
        radial-gradient(ellipse 35% 30% at 100% 20%, rgba(58, 160, 255, 0.1), transparent 55%),
        radial-gradient(ellipse 40% 35% at 80% 100%, rgba(251, 133, 0, 0.1), transparent 55%),
        #f7faf8;
}

.service-card--link {
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(20, 33, 61, 0.06);
}

.service-card--link::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--service-green), var(--service-sky));
}

.service-hub .service-card--link:nth-child(5n + 1)::before,
.service-page__others .service-card--link:nth-child(5n + 1)::before {
    background: linear-gradient(90deg, var(--service-green), #5ef09a);
}

.service-hub .service-card--link:nth-child(5n + 2)::before,
.service-page__others .service-card--link:nth-child(5n + 2)::before {
    background: linear-gradient(90deg, var(--service-orange), #ffd08a);
}

.service-hub .service-card--link:nth-child(5n + 3)::before,
.service-page__others .service-card--link:nth-child(5n + 3)::before {
    background: linear-gradient(90deg, var(--service-sky), #9fd0ff);
}

.service-hub .service-card--link:nth-child(5n + 4)::before,
.service-page__others .service-card--link:nth-child(5n + 4)::before {
    background: linear-gradient(90deg, #1d4ed8, #93c5fd);
}

.service-hub .service-card--link:nth-child(5n + 5)::before,
.service-page__others .service-card--link:nth-child(5n + 5)::before {
    background: linear-gradient(90deg, #14b8a6, #99f6e4);
}

.service-hub .service-card--link:nth-child(5n + 1) .service-card__icon {
    background: linear-gradient(135deg, #0be062 0%, #009b3f 100%);
}

.service-hub .service-card--link:nth-child(5n + 2) .service-card__icon {
    background: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
}

.service-hub .service-card--link:nth-child(5n + 3) .service-card__icon {
    background: linear-gradient(135deg, #64b5ff 0%, #3aa0ff 100%);
}

.service-hub .service-card--link:nth-child(5n + 4) .service-card__icon {
    background: linear-gradient(135deg, #60a5fa 0%, #1d4ed8 100%);
}

.service-hub .service-card--link:nth-child(5n + 5) .service-card__icon {
    background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
}

.service-card--link:hover {
    border-color: rgba(11, 224, 98, 0.28);
    box-shadow: 0 20px 44px rgba(11, 224, 98, 0.14);
}

.service-card--link h2,
.service-card--link h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.25;
}

.service-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}

.service-card__meta span {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--service-green-deep);
    background: rgba(11, 224, 98, 0.12);
}

.service-card__meta span:last-child {
    color: #b45309;
    background: rgba(251, 133, 0, 0.14);
}

.service-card__more {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--service-green-deep);
}

.service-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.service-page__grid section,
.service-page__result {
    padding: 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(20, 33, 61, 0.08);
    box-shadow: 0 12px 32px rgba(20, 33, 61, 0.06);
}

.service-page__grid section:first-child {
    border-top: 4px solid var(--service-sky);
    background:
        linear-gradient(180deg, rgba(58, 160, 255, 0.08), transparent 42%),
        rgba(255, 255, 255, 0.9);
}

.service-page__grid section:last-child {
    border-top: 4px solid var(--service-green);
    background:
        linear-gradient(180deg, rgba(11, 224, 98, 0.1), transparent 42%),
        rgba(255, 255, 255, 0.9);
}

.service-page__result {
    border-top: 4px solid var(--service-orange);
    background:
        linear-gradient(135deg, rgba(251, 133, 0, 0.12), rgba(11, 224, 98, 0.08)),
        rgba(255, 255, 255, 0.92);
}

.service-page__grid h2,
.service-page__result h2,
.service-page__works .section-intro h2,
.service-page__others .section-intro h2 {
    margin: 0 0 16px;
}

.service-page__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-page__list li {
    position: relative;
    padding: 10px 0 10px 22px;
    border-bottom: 1px solid rgba(20, 33, 61, 0.06);
    line-height: 1.5;
}

.service-page__list li:last-child {
    border-bottom: 0;
}

.service-page__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--service-green);
}

.service-page__grid section:first-child .service-page__list li::before {
    background: var(--service-sky);
}

.service-page__result p {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.65;
    opacity: 0.9;
}

.service-page__works,
.service-page__others {
    margin-top: 64px;
}

.service-page__works .section-intro,
.service-page__others .section-intro {
    max-width: 680px;
    margin: 0 auto 36px;
    text-align: center;
}

.service-page__works .btn-wrap {
    margin-top: 36px;
    text-align: center;
}

@keyframes service-orb {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(-24px, 18px, 0) scale(1.08);
    }
}

[data-theme="dark"] .service-hero::before {
    background:
        radial-gradient(ellipse 50% 55% at 12% 28%, rgba(11, 224, 98, 0.22), transparent 62%),
        radial-gradient(ellipse 42% 48% at 78% 18%, rgba(58, 160, 255, 0.18), transparent 60%),
        radial-gradient(ellipse 46% 50% at 88% 78%, rgba(251, 133, 0, 0.16), transparent 58%),
        linear-gradient(180deg, #101826 0%, #121c2c 55%, #17140f 100%);
}

[data-theme="dark"] .service-hero .main-item h1 {
    background: linear-gradient(120deg, #e8eef8 0%, #b8f5d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

[data-theme="dark"] .service-hub,
[data-theme="dark"] .service-page {
    background:
        radial-gradient(ellipse 40% 35% at 0% 0%, rgba(11, 224, 98, 0.08), transparent 60%),
        radial-gradient(ellipse 35% 30% at 100% 20%, rgba(58, 160, 255, 0.08), transparent 55%),
        #0f1520;
}

[data-theme="dark"] .service-card--link,
[data-theme="dark"] .service-page__grid section,
[data-theme="dark"] .service-page__result,
[data-theme="dark"] .service-hero__stats div {
    background: rgba(18, 24, 38, 0.86);
    border-color: rgba(229, 234, 242, 0.08);
    box-shadow: none;
}

[data-theme="dark"] .service-hero__stats strong {
    color: #e8eef8;
}

[data-theme="dark"] .service-page__list li {
    border-bottom-color: rgba(229, 234, 242, 0.08);
}

[data-theme="dark"] .service-card__meta,
[data-theme="dark"] .service-card__more,
[data-theme="dark"] .service-hero__crumb a:hover,
[data-theme="dark"] .service-hero__lead em,
[data-theme="dark"] .service-hero__badge {
    color: var(--service-green);
}

[data-theme="dark"] .service-hero__badge {
    background: rgba(11, 224, 98, 0.12);
    border-color: rgba(11, 224, 98, 0.24);
}

[data-theme="dark"] .service-card__meta span {
    color: var(--service-green);
    background: rgba(11, 224, 98, 0.12);
}

[data-theme="dark"] .service-card__meta span:last-child {
    color: #ffb703;
    background: rgba(251, 133, 0, 0.14);
}

@media (prefers-reduced-motion: reduce) {
    .service-hero::after,
    .service-hero-visual__glow,
    .service-hero-visual__browser,
    .service-hero-visual__line,
    .service-hero-visual__cursor,
    .service-hero-visual__preview-bar,
    .service-hero-visual__preview-title,
    .service-hero-visual__preview-text,
    .service-hero-visual__preview-btn,
    .service-hero-visual__preview-cards span,
    .service-hero-visual__chip {
        animation: none !important;
    }

    .service-hero-visual__line {
        width: 100%;
        opacity: 1;
    }

    .service-hero-visual__preview-bar,
    .service-hero-visual__preview-title,
    .service-hero-visual__preview-text,
    .service-hero-visual__preview-btn,
    .service-hero-visual__preview-cards span {
        opacity: 1;
        transform: none;
    }
}

[data-theme="dark"] .service-hero-visual__browser {
    background: rgba(18, 24, 38, 0.92);
    border-color: rgba(229, 234, 242, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .service-hero-visual__chrome {
    background: linear-gradient(180deg, #1a2333, #151c29);
    border-bottom-color: rgba(229, 234, 242, 0.08);
}

[data-theme="dark"] .service-hero-visual__url {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(229, 234, 242, 0.08);
    color: #9aa8c0;
}

[data-theme="dark"] .service-hero-visual__preview {
    background:
        linear-gradient(180deg, rgba(11, 224, 98, 0.08), transparent 40%),
        #151c29;
}

[data-theme="dark"] .service-hero-visual__preview-title {
    background: rgba(232, 238, 248, 0.85);
}

[data-theme="dark"] .service-hero-visual__preview-text,
[data-theme="dark"] .service-hero-visual__preview-text::after {
    background: rgba(232, 238, 248, 0.2);
}

[data-theme="dark"] .service-hero-visual__preview-cards span {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(229, 234, 242, 0.08);
    box-shadow: none;
}

@media (max-width: 991px) {
    .service-hero,
    .service-hero.page-title {
        justify-content: flex-start;
        padding-top: calc(var(--header-height, 64px) + 1rem);
        min-height: auto;
    }

    .service-hero__layout {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 520px;
        min-height: 0;
        gap: 20px;
    }

    .service-hero__copy-col {
        order: 1;
    }

    .service-hero__visual-col {
        order: 2;
        justify-content: center;
    }

    .service-hero .main-item {
        max-width: none;
    }

    .service-hero-visual {
        max-width: 380px;
        margin: 8px auto 0;
        aspect-ratio: 1 / 0.92;
    }

    .service-hero-visual__chip {
        font-size: 11px;
        padding: 6px 10px;
    }
}

@media (max-width: 767px) {
    .service-page__grid {
        grid-template-columns: 1fr;
    }

    .service-hero__stats strong {
        font-size: 18px;
    }

    .service-hero::after {
        width: 260px;
        height: 260px;
        right: -20%;
        top: 8%;
        opacity: 0.55;
    }

    .service-hero-visual__screen {
        grid-template-columns: 1fr;
    }

    .service-hero-visual__preview {
        display: none;
    }
}

/* —— Service show visual —— */
.service-show-visual {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}

.service-show-visual__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    pointer-events: none;
    animation: service-orb-drift 8s ease-in-out infinite alternate;
}

.service-show-visual__orb--a {
    width: 46%;
    height: 46%;
    left: -8%;
    top: 8%;
    background: rgba(11, 224, 98, 0.35);
}

.service-show-visual__orb--b {
    width: 40%;
    height: 40%;
    right: -6%;
    top: 28%;
    background: rgba(58, 160, 255, 0.3);
    animation-delay: 1.2s;
}

.service-show-visual__orb--c {
    width: 36%;
    height: 36%;
    left: 28%;
    bottom: 0;
    background: rgba(251, 133, 0, 0.28);
    animation-delay: 2s;
}

.service-show-visual__stage {
    position: absolute;
    inset: 10% 8% 14%;
    z-index: 1;
}

.service-show-visual__float {
    position: absolute;
    z-index: 3;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 10px 24px rgba(20, 33, 61, 0.16);
    animation: service-chip-float 4.6s ease-in-out infinite;
}

.service-show-visual__float--1 {
    left: -2%;
    top: 16%;
    background: linear-gradient(135deg, #0be062, #009b3f);
}

.service-show-visual__float--2 {
    right: -4%;
    top: 34%;
    background: linear-gradient(135deg, #64b5ff, #3aa0ff);
    animation-delay: 0.7s;
}

.service-show-visual__float--3 {
    left: 8%;
    bottom: 10%;
    background: linear-gradient(135deg, #ffb703, #fb8500);
    animation-delay: 1.3s;
}

/* Landing mock */
.service-show-visual__landing,
.service-show-visual__browser {
    height: 100%;
}

.service-show-visual__browser {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(20, 33, 61, 0.1);
    box-shadow: 0 22px 50px rgba(20, 33, 61, 0.14);
    animation: service-browser-float 5.5s ease-in-out infinite;
}

.service-show-visual__chrome {
    display: flex;
    gap: 7px;
    padding: 12px 14px;
    background: linear-gradient(180deg, #f7faf8, #eef3f8);
    border-bottom: 1px solid rgba(20, 33, 61, 0.08);
}

.service-show-visual__chrome span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f57;
}

.service-show-visual__chrome span:nth-child(2) { background: #febc2e; }
.service-show-visual__chrome span:nth-child(3) { background: #28c840; }

.service-show-visual__frame {
    flex: 1;
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(11, 224, 98, 0.08), transparent 40%),
        #f8fbf9;
}

.service-show-visual__hero-block {
    height: 34%;
    border-radius: 14px;
    background:
        linear-gradient(120deg, rgba(11, 224, 98, 0.35), rgba(58, 160, 255, 0.28), rgba(251, 133, 0, 0.22));
    background-size: 200% 200%;
    animation: service-mesh-shift 6s ease-in-out infinite;
}

.service-show-visual__lines {
    margin-top: 14px;
}

.service-show-visual__lines b {
    display: block;
    height: 10px;
    margin-bottom: 8px;
    border-radius: 999px;
    background: rgba(20, 33, 61, 0.16);
    transform-origin: left center;
    animation: service-line-grow 3.2s ease-in-out infinite;
}

.service-show-visual__lines b:first-child { width: 78%; }
.service-show-visual__lines b:last-child {
    width: 58%;
    animation-delay: 0.35s;
    background: rgba(20, 33, 61, 0.1);
}

.service-show-visual__cta {
    width: 42%;
    height: 28px;
    margin-top: 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, #0be062, #009b3f);
    box-shadow: 0 8px 18px rgba(11, 224, 98, 0.28);
    animation: service-cta-glow 2.4s ease-in-out infinite;
}

.service-show-visual__form {
    margin-top: 16px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(20, 33, 61, 0.08);
}

.service-show-visual__form i,
.service-show-visual__form em {
    display: block;
    height: 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    background: rgba(20, 33, 61, 0.08);
}

.service-show-visual__form em {
    width: 36%;
    height: 22px;
    margin-bottom: 0;
    background: linear-gradient(180deg, #0be062, #009b3f);
    animation: service-cta-glow 2.4s ease-in-out infinite 0.4s;
}

.service-show-visual__pulse {
    position: absolute;
    right: 10%;
    bottom: 8%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(11, 224, 98, 0.2);
    animation: service-ring 2.8s ease-out infinite;
}

/* Shop */
.service-show-visual__shop {
    height: 100%;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 33, 61, 0.1);
    box-shadow: 0 22px 50px rgba(20, 33, 61, 0.14);
    animation: service-browser-float 5.5s ease-in-out infinite;
}

.service-show-visual__shop-head {
    height: 14px;
    width: 42%;
    margin-bottom: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0be062, #3aa0ff);
}

.service-show-visual__shop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-show-visual__shop-grid article {
    padding: 10px;
    border-radius: 12px;
    background: #f7faf8;
    border: 1px solid rgba(20, 33, 61, 0.06);
    animation: service-rise 0.8s ease both;
}

.service-show-visual__shop-grid article:nth-child(1) { animation-delay: 0.1s; }
.service-show-visual__shop-grid article:nth-child(2) { animation-delay: 0.2s; }
.service-show-visual__shop-grid article:nth-child(3) { animation-delay: 0.3s; }
.service-show-visual__shop-grid article:nth-child(4) { animation-delay: 0.4s; }

.service-show-visual__shop-grid span {
    display: block;
    height: 54px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(11, 224, 98, 0.2), rgba(58, 160, 255, 0.18));
    margin-bottom: 8px;
}

.service-show-visual__shop-grid b,
.service-show-visual__shop-grid i {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: rgba(20, 33, 61, 0.14);
    margin-bottom: 6px;
}

.service-show-visual__shop-grid i {
    width: 45%;
    background: rgba(251, 133, 0, 0.35);
}

.service-show-visual__cart {
    position: absolute;
    right: 8%;
    bottom: 10%;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(180deg, #0be062, #009b3f);
    box-shadow: 0 10px 24px rgba(11, 224, 98, 0.3);
    animation: service-chip-float 3.8s ease-in-out infinite;
}

.service-show-visual__cart span {
    position: absolute;
    inset: 14px 12px 12px;
    border: 2px solid #fff;
    border-top: 0;
    border-radius: 0 0 8px 8px;
}

.service-show-visual__cart span::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 4px;
    right: 4px;
    height: 10px;
    border: 2px solid #fff;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

/* Nodes / API */
.service-show-visual__nodes {
    position: relative;
    height: 100%;
    border-radius: 18px;
    background: rgba(18, 24, 38, 0.92);
    box-shadow: 0 22px 50px rgba(20, 33, 61, 0.2);
    overflow: hidden;
}

.service-show-visual__wires {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.service-show-visual__wires path {
    stroke: rgba(11, 224, 98, 0.55);
    stroke-width: 2;
    stroke-dasharray: 6 8;
    animation: service-dash 2.4s linear infinite;
}

.service-show-visual__node {
    position: absolute;
    z-index: 1;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    animation: service-chip-float 4.4s ease-in-out infinite;
}

.service-show-visual__node--api { left: 10%; top: 16%; background: #0be062; }
.service-show-visual__node--db { right: 12%; top: 16%; background: #3aa0ff; animation-delay: 0.5s; }
.service-show-visual__node--app { left: 38%; top: 42%; background: #fb8500; animation-delay: 1s; }
.service-show-visual__node--queue { left: 18%; bottom: 14%; background: #14b8a6; animation-delay: 1.4s; }

/* Monitor */
.service-show-visual__monitor {
    height: 100%;
    padding: 16px;
    border-radius: 18px;
    background: rgba(18, 24, 38, 0.94);
    color: #e8eef8;
    box-shadow: 0 22px 50px rgba(20, 33, 61, 0.2);
    animation: service-browser-float 5.5s ease-in-out infinite;
}

.service-show-visual__monitor-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 12px;
    opacity: 0.8;
}

.service-show-visual__monitor-bar em {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f57;
}

.service-show-visual__monitor-bar em:nth-child(2) { background: #febc2e; }
.service-show-visual__monitor-bar em:nth-child(3) { background: #28c840; }
.service-show-visual__monitor-bar span { margin-left: auto; }

.service-show-visual__chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 58%;
    padding: 8px 4px 0;
}

.service-show-visual__chart i {
    flex: 1;
    border-radius: 8px 8px 4px 4px;
    background: linear-gradient(180deg, #0be062, rgba(11, 224, 98, 0.2));
    animation: service-bar 2.8s ease-in-out infinite;
}

.service-show-visual__chart i:nth-child(1) { height: 42%; animation-delay: 0s; }
.service-show-visual__chart i:nth-child(2) { height: 58%; animation-delay: 0.1s; }
.service-show-visual__chart i:nth-child(3) { height: 36%; animation-delay: 0.2s; }
.service-show-visual__chart i:nth-child(4) { height: 72%; animation-delay: 0.3s; }
.service-show-visual__chart i:nth-child(5) { height: 50%; animation-delay: 0.4s; }
.service-show-visual__chart i:nth-child(6) { height: 84%; animation-delay: 0.5s; }
.service-show-visual__chart i:nth-child(7) { height: 64%; animation-delay: 0.6s; }
.service-show-visual__chart i:nth-child(8) { height: 76%; animation-delay: 0.7s; }

.service-show-visual__status {
    margin-top: 16px;
    font-size: 28px;
    font-weight: 800;
    color: #0be062;
    letter-spacing: 0.02em;
}

/* Sitemap */
.service-show-visual__sitemap {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 33, 61, 0.1);
    box-shadow: 0 22px 50px rgba(20, 33, 61, 0.14);
}

.service-show-visual__site-card {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--service-navy);
    background: #f3faf6;
    border: 1px solid rgba(11, 224, 98, 0.18);
    animation: service-rise 0.7s ease both;
}

.service-show-visual__site-card--home {
    grid-column: 1 / -1;
    background: linear-gradient(120deg, rgba(11, 224, 98, 0.2), rgba(58, 160, 255, 0.16));
}

.service-show-visual__site-card:nth-child(2) { animation-delay: 0.1s; }
.service-show-visual__site-card:nth-child(3) { animation-delay: 0.2s; }
.service-show-visual__site-card:nth-child(4) { animation-delay: 0.3s; }
.service-show-visual__site-card:nth-child(5) { animation-delay: 0.4s; }

@keyframes service-badge-pulse {
    0% { box-shadow: 0 0 0 0 rgba(11, 224, 98, 0.45); }
    70% { box-shadow: 0 0 0 12px rgba(11, 224, 98, 0); }
    100% { box-shadow: 0 0 0 0 rgba(11, 224, 98, 0); }
}

@keyframes service-rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes service-orb-drift {
    from { transform: translate3d(0, 0, 0) scale(0.95); }
    to { transform: translate3d(12px, -10px, 0) scale(1.08); }
}

@keyframes service-mesh-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes service-line-grow {
    0%, 100% { transform: scaleX(0.72); opacity: 0.7; }
    50% { transform: scaleX(1); opacity: 1; }
}

@keyframes service-cta-glow {
    0%, 100% { filter: brightness(1); transform: scale(1); }
    50% { filter: brightness(1.08); transform: scale(1.03); }
}

@keyframes service-ring {
    0% { transform: scale(0.7); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes service-dash {
    to { stroke-dashoffset: -40; }
}

@keyframes service-bar {
    0%, 100% { transform: scaleY(0.85); }
    50% { transform: scaleY(1); }
}

@keyframes service-orb {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(-24px, 18px, 0) scale(1.08); }
}

[data-theme="dark"] .service-show-visual__browser,
[data-theme="dark"] .service-show-visual__shop,
[data-theme="dark"] .service-show-visual__sitemap {
    background: rgba(18, 24, 38, 0.92);
    border-color: rgba(229, 234, 242, 0.1);
}

[data-theme="dark"] .service-show-visual__chrome {
    background: linear-gradient(180deg, #1a2333, #151c29);
    border-bottom-color: rgba(229, 234, 242, 0.08);
}

[data-theme="dark"] .service-show-visual__frame {
    background:
        linear-gradient(180deg, rgba(11, 224, 98, 0.08), transparent 40%),
        #151c29;
}

[data-theme="dark"] .service-show-visual__site-card {
    background: rgba(255, 255, 255, 0.04);
    color: #e8eef8;
}

@media (prefers-reduced-motion: reduce) {
    .service-show-visual__orb,
    .service-show-visual__float,
    .service-show-visual__browser,
    .service-show-visual__shop,
    .service-show-visual__monitor,
    .service-show-visual__hero-block,
    .service-show-visual__lines b,
    .service-show-visual__cta,
    .service-show-visual__form em,
    .service-show-visual__pulse,
    .service-show-visual__cart,
    .service-show-visual__node,
    .service-show-visual__wires path,
    .service-show-visual__chart i,
    .service-hero__badge--live::before,
    .service-hero--show .main-item > * {
        animation: none !important;
    }
}

/* —— Service spotlight (show page redesign) —— */
.service-spotlight {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height, 72px) + 24px) 0 56px;
    box-sizing: border-box;
    background:
        radial-gradient(ellipse 55% 50% at 85% 20%, rgba(11, 224, 98, 0.18), transparent 60%),
        radial-gradient(ellipse 45% 45% at 10% 70%, rgba(58, 160, 255, 0.16), transparent 55%),
        radial-gradient(ellipse 40% 40% at 60% 100%, rgba(251, 133, 0, 0.12), transparent 50%),
        #f4f7f8;
}

.service-spotlight__glow {
    position: absolute;
    inset: auto -10% -20% 40%;
    height: 70%;
    background: radial-gradient(circle, rgba(11, 224, 98, 0.2), transparent 65%);
    filter: blur(30px);
    pointer-events: none;
    animation: service-orb-drift 10s ease-in-out infinite alternate;
}

.service-spotlight__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(20, 33, 61, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 33, 61, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
}

.service-spotlight__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1140px;
}

.service-spotlight a:not(.more) {
    background: none !important;
    background-image: none !important;
    color: inherit;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.service-spotlight__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    color: #5b6b85;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-spotlight__back span {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(20, 33, 61, 0.08);
    color: var(--service-green-deep);
    transition: transform 0.2s ease;
}

.service-spotlight__back:hover {
    color: var(--service-green-deep);
    background: none;
}

.service-spotlight__back:hover span {
    transform: translateX(-3px);
}

.service-spotlight__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    padding: clamp(24px, 4vw, 40px);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(20, 33, 61, 0.08);
    box-shadow: 0 24px 60px rgba(20, 33, 61, 0.08);
    backdrop-filter: blur(14px);
}

.service-spotlight__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    padding: 0;
    border: 0;
    background: none !important;
    background-image: none !important;
    color: var(--service-green-deep);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-spotlight__eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--service-green), #fb8500);
}

.service-spotlight__title {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--service-navy);
    white-space: normal;
}

.service-spotlight__lead {
    margin: 0;
    max-width: 36ch;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(20, 33, 61, 0.78);
}

.service-spotlight__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.service-spotlight__metrics li {
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, #f7faf8);
    border: 1px solid rgba(20, 33, 61, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-spotlight__metrics li:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(20, 33, 61, 0.08);
}

.service-spotlight__metrics li:nth-child(2) {
    background: linear-gradient(180deg, #fffaf3, #fff4e8);
    border-color: rgba(251, 133, 0, 0.18);
}

.service-spotlight__metrics span {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(20, 33, 61, 0.55);
}

.service-spotlight__metrics strong {
    font-size: 22px;
    line-height: 1.2;
    color: var(--service-navy);
}

.service-spotlight__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 22px;
    margin-top: 28px;
}

.service-spotlight__anchor {
    color: var(--service-green-deep);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: none;
    border: 0;
    padding: 0;
    box-shadow: none;
}

.service-spotlight__anchor:hover {
    text-decoration: underline;
    background: none;
}

.service-spotlight__media {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-spotlight__media .service-show-visual {
    max-width: 100%;
    width: min(100%, 420px);
}

.service-spotlight__copy > * {
    animation: service-rise 0.7s ease both;
}

.service-spotlight__copy > *:nth-child(1) { animation-delay: 0.05s; }
.service-spotlight__copy > *:nth-child(2) { animation-delay: 0.12s; }
.service-spotlight__copy > *:nth-child(3) { animation-delay: 0.18s; }
.service-spotlight__copy > *:nth-child(4) { animation-delay: 0.26s; }
.service-spotlight__copy > *:nth-child(5) { animation-delay: 0.34s; }

[data-theme="dark"] .service-spotlight {
    background:
        radial-gradient(ellipse 55% 50% at 85% 20%, rgba(11, 224, 98, 0.12), transparent 60%),
        radial-gradient(ellipse 45% 45% at 10% 70%, rgba(58, 160, 255, 0.1), transparent 55%),
        #101826;
}

[data-theme="dark"] .service-spotlight__panel {
    background: rgba(18, 24, 38, 0.82);
    border-color: rgba(229, 234, 242, 0.08);
    box-shadow: none;
}

[data-theme="dark"] .service-spotlight__title,
[data-theme="dark"] .service-spotlight__metrics strong {
    color: #e8eef8;
}

[data-theme="dark"] .service-spotlight__lead,
[data-theme="dark"] .service-spotlight__back {
    color: rgba(232, 238, 248, 0.72);
}

[data-theme="dark"] .service-spotlight__eyebrow {
    color: var(--service-green);
}

[data-theme="dark"] .service-spotlight__metrics li {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(229, 234, 242, 0.08);
}

[data-theme="dark"] .service-spotlight__metrics span {
    color: rgba(232, 238, 248, 0.5);
}

[data-theme="dark"] .service-spotlight__back span {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(229, 234, 242, 0.1);
}

@media (max-width: 991px) {
    .service-spotlight {
        align-items: flex-start;
        min-height: auto;
        padding-top: calc(var(--header-height, 64px) + 20px);
    }

    .service-spotlight__panel {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-spotlight__media {
        order: 2;
        min-height: 300px;
    }

    .service-spotlight__copy {
        order: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-spotlight__glow,
    .service-spotlight__copy > * {
        animation: none !important;
    }
}
