/* صفحة الخدمات — متوافقة مع ثيم المتجر (داكن + بنفسجي) */
.store-main--services {
    padding-bottom: 2rem;
}

.svc-page {
    color: var(--text, #e2e8f0);
}

.svc-hero {
    padding: 2rem 0 2.5rem;
    background:
        radial-gradient(ellipse 80% 60% at 15% 10%, rgba(124, 58, 237, 0.18), transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 30%, rgba(56, 189, 248, 0.08), transparent 50%);
}

.svc-hero__grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 960px) {
    .svc-hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 2.5rem;
    }
}

.svc-hero__title {
    margin: 0 0 1rem;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--text);
}

.svc-hero__accent {
    color: #c4b5fd;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.svc-hero__desc {
    margin: 0 0 1.35rem;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 42rem;
}

.svc-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.svc-btn--glow {
    box-shadow: 0 0 22px rgba(124, 58, 237, 0.45);
}

.svc-hero__visual {
    position: relative;
    justify-self: center;
    width: 100%;
    max-width: 520px;
}

.svc-hero__glow {
    position: absolute;
    inset: 10% -5% -10% 15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 65%);
    filter: blur(28px);
    pointer-events: none;
}

.svc-hero__img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.22);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.svc-section {
    padding: 2.25rem 0;
}

.svc-section--process {
    background: var(--bg-glass);
    border-block: 1px solid var(--border);
}

.svc-section__head {
    text-align: center;
    margin-bottom: 1.75rem;
}

.svc-section__title {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

.svc-section__subtitle {
    margin: 0 auto;
    max-width: 36rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.svc-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.svc-filter {
    cursor: pointer;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.65);
    color: #e2e8f0;
    font: inherit;
    font-weight: 700;
    font-size: 0.85rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.svc-filter:hover {
    border-color: rgba(167, 139, 250, 0.45);
}

.svc-filter.is-active {
    border-color: rgba(167, 139, 250, 0.65);
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.45), rgba(124, 58, 237, 0.35));
    box-shadow: 0 0 18px rgba(124, 58, 237, 0.28);
}

.svc-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

@media (min-width: 1100px) {
    .svc-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* شريط التقنيات (نفس مكوّن الرئيسية) */
.svc-tech-marquee-wrap {
    margin-top: 2.5rem;
}

.svc-card {
    position: relative;
    padding: 1rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: linear-gradient(165deg, color-mix(in srgb, var(--bg-elevated) 86%, transparent), var(--bg-glass));
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.svc-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent-glow) 45%, transparent);
    box-shadow: var(--shadow-md), var(--glow-accent);
}

.svc-card.is-hidden,
.svc-card.is-page-hidden {
    display: none !important;
}

.svc-card__media {
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 0.65rem;
    border: 1px solid var(--border);
    aspect-ratio: 16 / 10;
    background:
        radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 42%),
        var(--product-media-bg);
}

.svc-card__media--badges {
    position: relative;
}

.svc-card__media-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.svc-card__badges {
    position: absolute;
    top: 8px;
    inset-inline-start: 8px;
    z-index: 2;
    max-width: calc(100% - 58px);
}

.svc-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-card__icon {
    position: absolute;
    top: 8px;
    inset-inline-end: 8px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(167, 139, 250, 0.35);
    color: #c4b5fd;
    z-index: 2;
}

.svc-card__icon-inner--upload {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

.svc-card__icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-card__title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.svc-card__desc {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    line-height: 1.55;
    color: #94a3b8;
}

.svc-card__price {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    color: #cbd5e1;
}

.svc-card__price--row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.svc-card__price-label {
    font-size: 0.78rem;
    color: #94a3b8;
}

.svc-card__price .svc-card__price-row {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
}

.svc-card__price strong {
    font-size: 1.08rem;
    font-weight: 900;
    color: #f87171;
    text-shadow: 0 0 20px rgba(248, 113, 113, 0.18);
}

.svc-card__link {
    font-size: 0.82rem;
    font-weight: 800;
    color: #c4b5fd;
    text-decoration: none;
}

.svc-card__link:hover {
    text-decoration: underline;
}

.svc-empty {
    text-align: center;
    padding: 2rem;
    color: #94a3b8;
}

.svc-process {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

@media (min-width: 900px) {
    .svc-process {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.75rem;
        position: relative;
    }

    .svc-process::before {
        content: "";
        position: absolute;
        top: 2.25rem;
        left: 8%;
        right: 8%;
        height: 2px;
        background: repeating-linear-gradient(
            90deg,
            rgba(148, 163, 184, 0.35) 0 6px,
            transparent 6px 12px
        );
        pointer-events: none;
    }
}

.svc-process__step {
    position: relative;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(15, 23, 42, 0.55);
}

.svc-process__num {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    color: #a855f7;
    margin-bottom: 0.35rem;
}

.svc-process__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    margin-bottom: 0.5rem;
    background: rgba(124, 58, 237, 0.15);
    color: #e9d5ff;
}

.svc-process__title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 800;
}

.svc-process__text {
    margin: 0;
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.55;
}

.svc-portfolio {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}

.svc-portfolio-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(15, 23, 42, 0.55);
}

.svc-portfolio-item__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.svc-portfolio-item__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f172a;
}

.svc-portfolio-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-portfolio-item__body {
    padding: 1rem;
}

.svc-portfolio-item__title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 800;
}

.svc-portfolio-item__desc {
    margin: 0;
    font-size: 0.85rem;
    color: #94a3b8;
}

.svc-cta {
    padding: 3rem 0;
    margin-top: 1rem;
}

.svc-cta__inner {
    text-align: center;
    padding: 2.25rem 1.5rem;
    border-radius: 22px;
    border: 1px solid rgba(167, 139, 250, 0.22);
    background:
        radial-gradient(ellipse 70% 80% at 50% 0%, rgba(124, 58, 237, 0.25), transparent 55%),
        rgba(15, 23, 42, 0.75);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.svc-cta__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 900;
    color: #fff;
}

.svc-cta__text {
    margin: 0 auto 1.25rem;
    max-width: 32rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* بطاقات الخدمات — أزرار وروابط */
.svc-card__media-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.svc-card__title a {
    color: inherit;
    text-decoration: none;
}

.svc-card__title a:hover {
    color: #e9d5ff;
}

.svc-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.svc-card__btn {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 0.45rem 0.75rem;
}

.svc-stats-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1.25rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(139, 92, 246, 0.18);
    background: rgba(15, 23, 42, 0.65);
}

@media (min-width: 768px) {
    .svc-stats-bar {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.svc-stats-bar__item {
    text-align: center;
}

.svc-stats-bar__value {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    color: #f8fafc;
}

.svc-stats-bar__label {
    font-size: 0.78rem;
    color: #94a3b8;
}

/* صفحة تفاصيل الخدمة */
.svc-detail-page {
    padding-bottom: 2rem;
}

.svc-detail__crumb {
    padding: 1rem 0 0;
    font-size: 0.85rem;
    color: #94a3b8;
}

.svc-detail__crumb a {
    color: #e2e8f0;
    text-decoration: none;
}

.svc-detail__crumb a:hover {
    color: #c4b5fd;
}

.svc-detail__hero {
    padding: 1rem 0 1.5rem;
}

.svc-detail__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 900;
    color: #f8fafc;
    line-height: 1.3;
}

.svc-detail__price-line {
    margin: 0;
    color: #cbd5e1;
    font-size: 1rem;
}

.svc-detail__price-line strong {
    color: #fbbf24;
}

.svc-detail__body {
    padding-top: 0.5rem;
}

.svc-detail__desc {
    font-size: 1rem;
    line-height: 1.85;
    color: #cbd5e1;
}

.svc-detail__preview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-top: 1rem;
}

.svc-pkg-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 1fr;
}

.svc-pkg-grid--responsive {
    align-items: stretch;
}

@media (min-width: 700px) {
    .svc-pkg-grid--responsive {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .svc-pkg-grid--responsive {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1320px) {
    .svc-pkg-grid--responsive.svc-pkg-grid--cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.svc-pkg-card {
    position: relative;
    padding: 1.35rem 1.1rem 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.22);
    background: linear-gradient(165deg, rgba(22, 23, 45, 0.95), rgba(10, 11, 30, 0.97));
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.svc-pkg-card:hover {
    transform: translateY(-4px);
    border-color: rgba(167, 139, 250, 0.45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(124, 58, 237, 0.12);
}

.svc-pkg-card--popular {
    border-color: rgba(196, 181, 253, 0.55);
    background: linear-gradient(165deg, rgba(30, 27, 75, 0.55), rgba(10, 11, 30, 0.98));
    box-shadow:
        0 0 0 1px rgba(124, 58, 237, 0.25),
        0 16px 40px rgba(88, 28, 135, 0.25);
}

.svc-pkg-card--popular:hover {
    box-shadow:
        0 0 0 1px rgba(167, 139, 250, 0.4),
        0 20px 48px rgba(88, 28, 135, 0.32),
        0 0 48px rgba(124, 58, 237, 0.28);
}

.svc-pkg-card--best {
    border-color: rgba(251, 191, 36, 0.35);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(251, 191, 36, 0.08);
}

.svc-pkg-card--popular.svc-pkg-card--best {
    border-color: rgba(196, 181, 253, 0.65);
}

.svc-pkg-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.15rem;
    min-height: 0;
}

.svc-pkg-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.svc-pkg-card__badge--popular {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.55), rgba(91, 33, 182, 0.5));
    border: 1px solid rgba(196, 181, 253, 0.5);
    color: #f5f3ff;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.svc-pkg-card__badge--best {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(245, 158, 11, 0.18));
    border: 1px solid rgba(251, 191, 36, 0.45);
    color: #fef3c7;
}

.svc-pkg-card__name {
    margin: 0.35rem 0 0;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.35;
}

.svc-pkg-card__price {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 1.6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fcd34d;
    text-shadow: 0 1px 18px rgba(251, 191, 36, 0.18);
}

.svc-pkg-card__features {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
}

.svc-pkg-card__features--check .svc-pkg-card__feat-row {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.5rem;
}

.svc-pkg-card__check-icon {
    flex-shrink: 0;
    margin-top: 0.12rem;
    color: #a78bfa;
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.35));
}

.svc-pkg-card__feat-text {
    flex: 1;
}

.svc-pkg-card__cta {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

/* نافذة معاينة */
.svc-modal[hidden] {
    display: none;
}

.svc-modal:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.svc-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(6px);
}

.svc-modal__panel {
    position: relative;
    width: min(960px, 100%);
    max-height: min(92vh, 900px);
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    border: 1px solid rgba(167, 139, 250, 0.28);
    background: #0b1120;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.svc-modal__panel.is-phone-preview {
    width: min(420px, 100%);
}

.svc-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.svc-modal__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #f8fafc;
}

.svc-modal__x {
    border: 0;
    background: transparent;
    color: #94a3b8;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem;
}

.svc-modal__x:hover {
    color: #fff;
}

.svc-modal__body {
    flex: 1;
    overflow: auto;
    padding: 0.75rem;
    min-height: 40vh;
}

.svc-modal__frame {
    min-height: 50vh;
    border-radius: 12px;
    overflow: hidden;
    background: #020617;
}

.svc-modal__frame.is-phone-frame {
    max-width: 375px;
    margin-inline: auto;
    min-height: 60vh;
}

.svc-modal__media-img {
    display: block;
    width: 100%;
    height: auto;
}

.svc-modal__video {
    width: 100%;
    max-height: 75vh;
    background: #000;
}

.svc-modal__iframe {
    width: 100%;
    min-height: 65vh;
    border: 0;
    border-radius: 10px;
    background: #fff;
}

.svc-modal__iframe--live {
    min-height: 72vh;
}

.svc-modal__foot {
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    display: flex;
    justify-content: center;
}

.svc-modal__skeleton {
    min-height: 48vh;
    border-radius: 12px;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.svc-modal__skeleton-inner {
    padding: 1.25rem;
}

.svc-modal__skeleton-line {
    height: 12px;
    border-radius: 8px;
    background: rgba(148, 163, 184, 0.14);
    margin-bottom: 0.65rem;
}

.svc-modal__skeleton-line--short {
    width: 55%;
}

.svc-modal__skeleton-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(167, 139, 250, 0.06) 45%,
        rgba(167, 139, 250, 0.12) 50%,
        rgba(167, 139, 250, 0.06) 55%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: svc-shimmer 1.35s ease-in-out infinite;
}

@keyframes svc-shimmer {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .svc-modal__skeleton-shimmer {
        animation: none;
    }
}

.svc-modal__media-img,
.svc-modal__video,
.svc-modal__iframe {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.svc-modal__media--in {
    opacity: 1;
}

.contact-page {
    padding: 2rem 0 3rem;
}

.contact-page__crumb {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.contact-page__crumb a {
    color: #e2e8f0;
    text-decoration: none;
}

.contact-page__title {
    margin: 0 0 0.75rem;
    font-size: 1.85rem;
    font-weight: 900;
}

.contact-page__lead {
    margin: 0 0 1.5rem;
    color: #94a3b8;
    max-width: 40rem;
}

.contact-page__hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: #c4b5fd;
}

.contact-page__panel {
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.55);
}

.contact-page__placeholder {
    margin: 0 0 1rem;
    color: #cbd5e1;
}

/* ========= Premium listing refresh (.svc-page--premium) — Dark Neon Glass ========= */
.svc-page--premium {
    --svc-neon: #c084fc;
    --svc-neon-core: #a855f7;
    --svc-glass: color-mix(in srgb, var(--bg-glass) 82%, transparent);
    --svc-glass-strong: color-mix(in srgb, var(--bg-elevated) 65%, transparent);
    background:
        radial-gradient(ellipse 90% 55% at 12% -12%, rgba(124, 58, 237, 0.24), transparent 52%),
        radial-gradient(ellipse 65% 40% at 92% 8%, rgba(168, 85, 247, 0.12), transparent 48%);
}

.svc-pro-hero {
    position: relative;
    padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(1.75rem, 4vw, 2.75rem);
    overflow: hidden;
}

.svc-pro-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(168, 85, 247, 0.2), transparent 42%),
        radial-gradient(circle at 18% 80%, rgba(56, 189, 248, 0.06), transparent 38%);
    pointer-events: none;
}

.svc-pro-hero__grid {
    position: relative;
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.75rem);
    align-items: center;
}

@media (min-width: 980px) {
    .svc-pro-hero__grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    }
}

.svc-pro-hero__title {
    margin: 0 0 1rem;
    font-size: clamp(1.85rem, 3.8vw, 2.85rem);
    font-weight: 900;
    line-height: 1.28;
    color: var(--text);
    letter-spacing: -0.02em;
}

.svc-pro-hero__accent {
    display: inline-block;
    margin-inline-start: 0.15rem;
    background: linear-gradient(135deg, #f5f3ff 10%, var(--svc-neon-core) 52%, #7c3aed 92%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 28px rgba(168, 85, 247, 0.45));
}

.svc-pro-hero__desc {
    margin: 0 0 1.35rem;
    font-size: clamp(0.95rem, 1.6vw, 1.08rem);
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 42rem;
}

.svc-pro-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}

.svc-pro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.52rem 1.05rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.86rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition:
        transform 0.2s ease,
        box-shadow 0.22s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.svc-pro-btn--primary {
    color: #0b1020;
    background: linear-gradient(135deg, #e9d5ff, var(--svc-neon-core));
    border-color: color-mix(in srgb, var(--svc-neon-core) 55%, transparent);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 12px 38px rgba(124, 58, 237, 0.42),
        0 0 42px rgba(168, 85, 247, 0.35);
}

.svc-pro-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 16px 46px rgba(124, 58, 237, 0.52),
        0 0 52px rgba(192, 132, 252, 0.42);
}

.svc-pro-btn--ghost {
    color: var(--text);
    background: var(--svc-glass);
    border-color: color-mix(in srgb, var(--accent-glow) 35%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.svc-pro-btn--ghost:hover {
    border-color: color-mix(in srgb, var(--accent-glow) 55%, transparent);
    transform: translateY(-2px);
}

.svc-pro-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
}

.svc-pro-stats__item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.65rem;
    row-gap: 0.15rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid color-mix(in srgb, var(--accent-glow) 28%, transparent);
    background: linear-gradient(150deg, var(--svc-glass-strong), color-mix(in srgb, var(--bg-subtle) 88%, transparent));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
    align-items: center;
}

.svc-pro-stats__item--glow {
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.22),
        0 0 32px rgba(168, 85, 247, 0.22);
}

.svc-pro-stats__icon {
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.38), rgba(17, 24, 39, 0.35));
    color: var(--svc-neon);
    font-size: 1rem;
}

.svc-pro-stats__value {
    grid-column: 2;
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--text);
}

.svc-pro-stats__label {
    grid-column: 2;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-soft);
}

.svc-pro-hero__visual {
    position: relative;
    justify-self: center;
    width: 100%;
    max-width: 540px;
}

.svc-pro-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(42px);
    opacity: 0.85;
    pointer-events: none;
}

.svc-pro-hero__orb--a {
    inset: 8% 15% auto auto;
    width: min(72%, 320px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.65), transparent 68%);
    animation: svc-pro-orbit 12s ease-in-out infinite;
}

.svc-pro-hero__orb--b {
    inset: auto auto -5% 5%;
    width: min(55%, 240px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.22), transparent 70%);
    animation: svc-pro-orbit 14s ease-in-out infinite reverse;
}

@keyframes svc-pro-orbit {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-8px, 10px, 0) scale(1.05);
    }
}

.svc-pro-hero__frame {
    position: relative;
    padding: 3px;
    border-radius: 26px;
    background: linear-gradient(
        135deg,
        rgba(192, 132, 252, 0.55),
        rgba(124, 58, 237, 0.25),
        rgba(56, 189, 248, 0.22)
    );
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.38),
        0 0 46px rgba(168, 85, 247, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.svc-pro-hero__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 23px;
    border: 1px solid color-mix(in srgb, var(--accent-glow) 22%, transparent);
    background: var(--product-media-bg);
}

@media (prefers-reduced-motion: reduce) {
    .svc-pro-hero__orb--a,
    .svc-pro-hero__orb--b {
        animation: none;
    }
}

/* Catalog toolbar */
.svc-pro-catalog {
    scroll-margin-top: 6rem;
}

.svc-pro-catalog__head {
    text-align: center;
    margin-bottom: 1.75rem;
}

.svc-pro-catalog__title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 900;
    color: var(--text);
}

.svc-pro-catalog__subtitle {
    margin: 0 auto;
    max-width: 40rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.svc-glass {
    border-radius: var(--radius-lg);
    border: 1px solid color-mix(in srgb, var(--accent-glow) 22%, transparent);
    background: var(--svc-glass);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.22);
}

.svc-glass--inner {
    border-radius: var(--radius-md);
    border: 1px solid color-mix(in srgb, var(--accent-glow) 14%, transparent);
    background: color-mix(in srgb, var(--bg-subtle) 55%, transparent);
}

.svc-pro-toolbar {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
    margin-bottom: 1.35rem;
}

.svc-pro-search {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius-pill);
    border: 1px solid color-mix(in srgb, var(--accent-glow) 26%, transparent);
    background: color-mix(in srgb, var(--bg-elevated) 78%, transparent);
}

.svc-pro-search__icon {
    color: var(--svc-neon);
    flex-shrink: 0;
    display: grid;
    place-items: center;
}

.svc-pro-search__input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-weight: 600;
    outline: none;
}

.svc-pro-search__input::placeholder {
    color: var(--text-soft);
}

.svc-pro-toolbar__filters-scroll {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.65rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.svc-pro-toolbar__filters-scroll::-webkit-scrollbar {
    height: 6px;
}

.svc-pro-chip--filter {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.42rem 0.85rem;
    border-radius: var(--radius-pill);
    border: 1px solid color-mix(in srgb, var(--accent-glow) 35%, transparent);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.28), rgba(17, 24, 39, 0.35));
    color: var(--text);
    font: inherit;
    font-weight: 800;
    font-size: 0.78rem;
    cursor: pointer;
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.svc-pro-chip--filter:hover {
    box-shadow: 0 0 22px rgba(168, 85, 247, 0.28);
    transform: translateY(-1px);
}

.svc-pro-pills {
    display: inline-flex;
    gap: 0.42rem;
    flex-wrap: nowrap;
}

.svc-pro-pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.42rem 0.95rem;
    border-radius: var(--radius-pill);
    border: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
    background: color-mix(in srgb, var(--bg-elevated) 65%, transparent);
    color: var(--text);
    font: inherit;
    font-weight: 800;
    font-size: 0.78rem;
    cursor: pointer;
    white-space: nowrap;
    transition:
        border-color 0.18s ease,
        box-shadow 0.2s ease,
        background 0.18s ease,
        transform 0.18s ease;
}

.svc-pro-pill i {
    font-size: 0.82rem;
    opacity: 0.92;
    color: var(--svc-neon);
}

.svc-pro-pill__img {
    border-radius: 8px;
    object-fit: cover;
}

.svc-pro-pill:hover {
    border-color: color-mix(in srgb, var(--accent-glow) 45%, transparent);
    transform: translateY(-1px);
}

.svc-pro-pill.is-active {
    border-color: color-mix(in srgb, var(--accent-glow) 65%, transparent);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.42), rgba(91, 33, 182, 0.35));
    box-shadow:
        0 0 26px rgba(168, 85, 247, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.svc-pro-toolbar__row2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.svc-pro-sort {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex: 1 1 auto;
    min-width: min(100%, 220px);
}

.svc-pro-sort__label {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-muted);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.svc-pro-sort__select {
    flex: 1;
    min-width: 0;
    padding: 0.48rem 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid color-mix(in srgb, var(--accent-glow) 28%, transparent);
    background: color-mix(in srgb, var(--bg-elevated) 88%, transparent);
    color: var(--text);
    font: inherit;
    font-weight: 700;
    font-size: 0.82rem;
}

.svc-pro-view-toggle {
    display: inline-flex;
    border-radius: var(--radius-md);
    border: 1px solid color-mix(in srgb, var(--accent-glow) 26%, transparent);
    overflow: hidden;
    background: color-mix(in srgb, var(--bg-elevated) 72%, transparent);
}

.svc-pro-view-btn {
    padding: 0.48rem 0.78rem;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition:
        background 0.18s ease,
        color 0.18s ease;
}

.svc-pro-view-btn.is-active {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.42), rgba(17, 24, 39, 0.35));
    color: var(--text);
}

.svc-pro-empty {
    text-align: center;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    border: 1px dashed color-mix(in srgb, var(--accent-glow) 35%, transparent);
    color: var(--text-muted);
    font-weight: 700;
}

/* Skeleton → grid */
.svc-pro-grid-shell {
    position: relative;
    min-height: 220px;
}

.svc-pro-skeleton-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: color-mix(in srgb, var(--bg-page) 35%, transparent);
    transition: opacity 0.38s ease, visibility 0.38s ease;
}

.svc-pro-grid-shell--loading .svc-pro-skeleton-overlay {
    opacity: 1;
    visibility: visible;
}

.svc-pro-grid-shell:not(.svc-pro-grid-shell--loading) .svc-pro-skeleton-overlay {
    opacity: 0;
    visibility: hidden;
}

.svc-pro-grid-shell--loading [data-svc-grid] {
    opacity: 0.2;
    filter: blur(1.5px);
    transition:
        opacity 0.38s ease,
        filter 0.38s ease;
}

.svc-pro-grid-shell:not(.svc-pro-grid-shell--loading) [data-svc-grid] {
    opacity: 1;
    filter: none;
}

.svc-pro-skeleton-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

@media (min-width: 1100px) {
    .svc-pro-skeleton-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.svc-pro-skeleton-card {
    padding: 1rem;
    border-radius: var(--radius-xl);
    border: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
    background: color-mix(in srgb, var(--bg-elevated) 72%, transparent);
}

.svc-pro-skeleton-card__media {
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    margin-bottom: 0.75rem;
    background: linear-gradient(
        110deg,
        rgba(148, 163, 184, 0.12) 0%,
        rgba(167, 139, 250, 0.12) 45%,
        rgba(148, 163, 184, 0.12) 90%
    );
    background-size: 200% 100%;
    animation: svc-pro-sk 1.35s ease-in-out infinite;
}

.svc-pro-skeleton-card__line {
    height: 11px;
    border-radius: 999px;
    margin-bottom: 0.45rem;
    background: rgba(148, 163, 184, 0.14);
}

.svc-pro-skeleton-card__line--lg {
    height: 14px;
    width: 72%;
}

.svc-pro-skeleton-card__line--short {
    width: 46%;
}

@keyframes svc-pro-sk {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .svc-pro-skeleton-card__media {
        animation: none;
    }

    .svc-pro-skeleton-overlay,
    .svc-pro-grid-shell--loading [data-svc-grid],
    .svc-pro-grid-shell:not(.svc-pro-grid-shell--loading) [data-svc-grid] {
        transition: none;
    }
}

/* =====================================================
   Premium service cards - clean Fiverr-inspired version
   ===================================================== */

.svc-grid--premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.svc-card--premium {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    border-radius: 18px;
    border: 1px solid color-mix(in srgb, var(--border, rgba(148, 163, 184, 0.18)) 80%, transparent);
    background: color-mix(in srgb, var(--bg-elevated, #111827) 92%, #020617 8%);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.svc-card--premium:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--accent, #8b5cf6) 38%, var(--border, rgba(148, 163, 184, 0.18)));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.svc-card--premium .svc-card__media {
    position: relative;
    margin: 0;
    border: 0;
    border-radius: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f172a;
}

.svc-card--premium .svc-card__media-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.svc-card--premium .svc-card__media-link::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 58%, rgba(2, 6, 23, 0.5));
    opacity: 0.75;
}

.svc-card--premium .svc-card__thumb,
.svc-card--premium .svc-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.svc-card--premium:hover .svc-card__thumb,
.svc-card--premium:hover .svc-card__media img {
    transform: scale(1.045);
    filter: saturate(1.04) contrast(1.02);
}

.svc-card--premium .svc-card__badges {
    position: absolute;
    top: 0.65rem;
    inset-inline-start: 0.65rem;
    z-index: 3;
    max-width: calc(100% - 4.5rem);
}

.svc-card--premium .svc-card__icon {
    position: absolute;
    top: 0.65rem;
    inset-inline-end: 0.65rem;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.78);
    color: #e9d5ff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.svc-card--premium .svc-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.62rem;
    padding: 1rem;
}

.svc-card--premium .svc-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.svc-card--premium .svc-card__category {
    display: inline-flex;
    width: fit-content;
    max-width: 70%;
    align-items: center;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--accent, #8b5cf6) 28%, transparent);
    background: color-mix(in srgb, var(--accent, #8b5cf6) 12%, transparent);
    color: #c4b5fd;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.svc-card--premium .svc-card__orders {
    flex-shrink: 0;
    padding: 0.22rem 0.58rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-muted, #94a3b8);
    font-size: 0.72rem;
    font-weight: 700;
}

.svc-card--premium .svc-card__title {
    margin: 0;
    color: var(--text, #f8fafc);
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.48;
}

.svc-card--premium .svc-card__title a {
    color: inherit;
    text-decoration: none;
}

.svc-card--premium .svc-card__title a:hover {
    color: #ddd6fe;
}

.svc-card--premium .svc-card__desc {
    margin: 0;
    color: var(--text-muted, #94a3b8);
    font-size: 0.86rem;
    line-height: 1.7;
}

.svc-card--premium .svc-card__meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.svc-card--premium .svc-card__rating,
.svc-card--premium .svc-card__rating-count {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #fbbf24;
    font-size: 0.78rem;
    font-weight: 800;
}

.svc-card--premium .svc-card__rating--muted {
    color: var(--text-soft, #64748b);
    font-weight: 700;
}

.svc-card--premium .svc-card__price--premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: auto 0 0;
    padding-top: 0.82rem;
    border-top: 1px solid color-mix(in srgb, var(--border, rgba(148, 163, 184, 0.18)) 80%, transparent);
}

.svc-card--premium .svc-card__price-label {
    color: var(--text-muted, #94a3b8);
    font-size: 0.76rem;
    font-weight: 700;
}

.svc-card--premium .svc-card__price--premium strong {
    color: var(--text, #f8fafc);
    font-size: 1.15rem;
    font-weight: 900;
    text-shadow: none;
}

.svc-card--premium .svc-card__actions--premium {
    display: flex;
    flex-direction: row;
    gap: 0.6rem;
    margin-top: 0.35rem;
}

.svc-card--premium .svc-card__btn {
    display: inline-flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 42px;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.svc-card--premium .svc-card__btn:hover {
    transform: translateY(-1px);
}

.svc-card--premium .svc-card__btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.045);
    color: var(--text, #f8fafc);
}

.svc-card--premium .svc-card__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(255, 255, 255, 0.14);
}

.svc-card--premium .svc-card__btn--accent {
    border: 1px solid color-mix(in srgb, var(--accent, #8b5cf6) 55%, transparent);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #fff;
    box-shadow: 0 10px 22px rgba(139, 92, 246, 0.26);
}

.svc-card--premium .svc-card__btn--accent:hover {
    box-shadow: 0 14px 30px rgba(139, 92, 246, 0.34);
}

.svc-card--premium .svc-card__cart-ico {
    flex-shrink: 0;
}

.svc-grid--premium.svc-grid--list {
    grid-template-columns: 1fr;
}

.svc-grid--premium.svc-grid--list .svc-card--premium {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    align-items: stretch;
}

.svc-grid--premium.svc-grid--list .svc-card__media {
    height: 100%;
    min-height: 190px;
    aspect-ratio: auto;
}

.svc-grid--premium.svc-grid--list .svc-card__body {
    padding: 1.15rem;
}

.svc-grid--premium.svc-grid--list .svc-card__price--premium {
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .svc-grid--premium {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .svc-card--premium .svc-card__body {
        padding: 0.95rem;
    }

    .svc-card--premium .svc-card__actions--premium {
        flex-direction: column;
    }

    .svc-card--premium .svc-card__btn {
        width: 100%;
    }

    .svc-grid--premium.svc-grid--list .svc-card--premium {
        display: flex;
    }

    .svc-grid--premium.svc-grid--list .svc-card__media {
        min-height: auto;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 420px) {
    .svc-card--premium .svc-card__media {
        aspect-ratio: 16 / 11;
    }

    .svc-card--premium .svc-card__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.45rem;
    }

    .svc-card--premium .svc-card__category {
        max-width: 100%;
    }
}

.svc-pro-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.35rem;
}

.svc-pro-load-more {
    padding: 0.52rem 1.35rem;
    border-radius: var(--radius-pill);
    border: 1px solid color-mix(in srgb, var(--accent-glow) 45%, transparent);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(17, 24, 39, 0.55));
    color: var(--text);
    font: inherit;
    font-weight: 900;
    font-size: 0.82rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.22);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.svc-pro-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(124, 58, 237, 0.35);
}

.svc-stats-bar--premium {
    border-color: color-mix(in srgb, var(--accent-glow) 22%, transparent);
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--bg-elevated) 72%, transparent),
        color-mix(in srgb, var(--bg-subtle) 88%, transparent)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.svc-section--process.svc-pro-process .svc-process__step {
    border-color: color-mix(in srgb, var(--accent-glow) 18%, transparent);
    background: color-mix(in srgb, var(--bg-elevated) 62%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.svc-portfolio--premium .svc-portfolio-item {
    border-color: color-mix(in srgb, var(--accent-glow) 18%, transparent);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.svc-portfolio--premium .svc-portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32), 0 0 28px rgba(168, 85, 247, 0.15);
}

.svc-cta--premium .svc-cta__inner {
    border-radius: 26px;
    border-color: color-mix(in srgb, var(--accent-glow) 35%, transparent);
    background:
        radial-gradient(ellipse 70% 80% at 50% 0%, rgba(124, 58, 237, 0.32), transparent 55%),
        color-mix(in srgb, var(--bg-elevated) 78%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 18px 52px rgba(0, 0, 0, 0.35),
        0 0 42px rgba(168, 85, 247, 0.18);
}
