:root {
    --svc-blue: #1677ff;
    --svc-blue-light: #e8f3ff;
    --svc-warm: #e8684a;
    --svc-warm-light: #fff3f0;
    --svc-green: #1a9a6a;
    --svc-green-light: #eafaf4;
    --svc-purple: #7c5cbf;
    --svc-purple-light: #f3eeff;
    --svc-navy: #0f1b2d;
    --svc-navy-light: #1a2d47;
}

body {
    background: #fff;
}

.svc-hero {
    position: relative;
    padding: 60px 0 40px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1b2d 0%, #162844 40%, #1a3a5c 100%);
}

.svc-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 20% 50%, rgba(22, 119, 255, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 500px 350px at 80% 30%, rgba(0, 183, 211, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 60% 80%, rgba(161, 140, 209, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.svc-hero .container {
    position: relative;
    z-index: 1;
}

.svc-hero-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.svc-hero-text {
    flex: 1;
    min-width: 0;
}

.svc-hero-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.svc-hero-highlight {
    background: linear-gradient(135deg, #4facfe 0%, #00b7d3 50%, #38f9d7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.svc-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.svc-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 250ms ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.svc-btn--primary {
    background: linear-gradient(135deg, #4facfe 0%, #1677ff 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(22, 119, 255, 0.3);
}

.svc-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 119, 255, 0.4);
}

.svc-btn--outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.svc-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.svc-btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.svc-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.svc-hero-visual {
    width: 440px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.svc-hero-visual img {
    width: 100%;
    display: block;
}

.svc-hero-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.svc-hero-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 250ms ease;
}

.svc-hero-nav-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.svc-hero-nav-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-hero-nav-icon svg {
    color: rgba(255, 255, 255, 0.8);
}

.svc-stats {
    padding: 48px 0;
    background: #fff;
    border-bottom: 1px solid #e6eaf0;
}

.svc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.svc-stat-item {
    text-align: center;
    position: relative;
}

.svc-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #e6eaf0;
}

.svc-stat-number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #0f1b2d, #1677ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.svc-stat-plus {
    font-size: 20px;
    font-weight: 600;
}

.svc-stat-label {
    font-size: 15px;
    font-weight: 600;
    color: #181f2a;
    margin-top: 4px;
}

.svc-stat-desc {
    font-size: 13px;
    color: #7c8798;
    margin-top: 2px;
}

.svc-phase {
    padding: 56px 0 40px;
    position: relative;
    overflow: hidden;
}

.svc-phase-decor {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
}

.svc-phase-decor--blue {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(22, 119, 255, 0.12), transparent 70%);
}

.svc-phase-decor--warm {
    top: -80px;
    left: -120px;
    background: radial-gradient(circle, rgba(232, 104, 74, 0.1), transparent 70%);
}

.svc-phase-decor--green {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(56, 217, 169, 0.1), transparent 70%);
}

.svc-phase-decor--purple {
    top: -80px;
    left: -120px;
    background: radial-gradient(circle, rgba(161, 140, 209, 0.1), transparent 70%);
}

.svc-phase--warm {
    background: linear-gradient(180deg, #fffbf9 0%, #fff 100%);
}

.svc-phase--green {
    background: linear-gradient(180deg, #f6fdf9 0%, #fff 100%);
}

.svc-phase--purple {
    background: linear-gradient(180deg, #fbf8ff 0%, #fff 100%);
}

.svc-phase-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.svc-phase-step {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.svc-phase-step-num {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #4facfe, #1677ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.svc-phase--warm .svc-phase-step-num {
    background: linear-gradient(135deg, #ff9a6c, #e8684a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.svc-phase--green .svc-phase-step-num {
    background: linear-gradient(135deg, #43e97b, #1a9a6a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.svc-phase--purple .svc-phase-step-num {
    background: linear-gradient(135deg, #a18cd1, #7c5cbf);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.svc-phase-step-line {
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #4facfe, #1677ff);
}

.svc-phase--warm .svc-phase-step-line {
    background: linear-gradient(90deg, #ff9a6c, #e8684a);
}

.svc-phase--green .svc-phase-step-line {
    background: linear-gradient(90deg, #43e97b, #1a9a6a);
}

.svc-phase--purple .svc-phase-step-line {
    background: linear-gradient(90deg, #a18cd1, #7c5cbf);
}

.svc-phase-info {
    flex: 1;
}

.svc-phase-title {
    font-size: 24px;
    font-weight: 700;
    color: #181f2a;
    margin-bottom: 4px;
}

.svc-phase-desc {
    font-size: 14px;
    color: #7c8798;
    margin: 0;
}

.svc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.svc-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 250ms ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 250ms ease;
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(20, 32, 51, 0.08);
    transform: translateY(-2px);
}

.svc-card:has(.svc-card-icon--blue)::before {
    background: linear-gradient(90deg, #4facfe, #1677ff);
}

.svc-card:has(.svc-card-icon--warm)::before {
    background: linear-gradient(90deg, #ff9a6c, #e8684a);
}

.svc-card:has(.svc-card-icon--green)::before {
    background: linear-gradient(90deg, #43e97b, #1a9a6a);
}

.svc-card:has(.svc-card-icon--purple)::before {
    background: linear-gradient(90deg, #a18cd1, #7c5cbf);
}

.svc-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-card-icon--blue {
    background: var(--svc-blue-light);
    color: var(--svc-blue);
}

.svc-card-icon--warm {
    background: var(--svc-warm-light);
    color: var(--svc-warm);
}

.svc-card-icon--green {
    background: var(--svc-green-light);
    color: var(--svc-green);
}

.svc-card-icon--purple {
    background: var(--svc-purple-light);
    color: var(--svc-purple);
}

.svc-card-body {
    flex: 1;
    min-width: 0;
}

.svc-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #181f2a;
    margin-bottom: 4px;
}

.svc-card-text {
    font-size: 13px;
    color: #7c8798;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.svc-card-arrow {
    flex-shrink: 0;
    color: #d6dde8;
    transition: all 150ms ease;
}

.svc-card:hover .svc-card-arrow {
    color: #1677ff;
    transform: translateX(2px);
}

.svc-cta {
    padding: 64px 0;
}

.svc-cta-content {
    position: relative;
    padding: 56px 48px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f1b2d 0%, #162844 50%, #1a3a5c 100%);
    overflow: hidden;
}

.svc-cta-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.svc-cta-bg-orb--1 {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -60px;
    background: rgba(22, 119, 255, 0.15);
}

.svc-cta-bg-orb--2 {
    width: 250px;
    height: 250px;
    bottom: -60px;
    right: -40px;
    background: rgba(0, 183, 211, 0.12);
}

.svc-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.svc-cta-title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.svc-cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
}

.svc-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .svc-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .svc-hero-subtitle {
        max-width: 100%;
    }

    .svc-hero-actions {
        justify-content: center;
    }

    .svc-hero-visual {
        width: 100%;
        max-width: 480px;
    }

    .svc-hero-nav {
        flex-wrap: wrap;
    }

    .svc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .svc-stat-item:not(:last-child)::after {
        display: none;
    }

    .svc-cards {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .svc-hero {
        padding: 40px 0 32px;
    }

    .svc-hero-title {
        font-size: 1.6rem;
    }

    .svc-hero-nav {
        gap: 8px;
    }

    .svc-hero-nav-item {
        padding: 8px 16px;
        font-size: 13px;
    }

    .svc-hero-nav-icon {
        width: 28px;
        height: 28px;
    }

    .svc-hero-nav-icon svg {
        width: 16px;
        height: 16px;
    }

    .svc-stats {
        padding: 32px 0;
    }

    .svc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .svc-stat-number {
        font-size: 28px;
    }

    .svc-phase {
        padding: 36px 0 28px;
    }

    .svc-phase-step-num {
        font-size: 24px;
    }

    .svc-phase-title {
        font-size: 20px;
    }

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

    .svc-cta-content {
        padding: 40px 24px;
    }

    .svc-cta-title {
        font-size: 22px;
    }

    .svc-cta-desc {
        font-size: 14px;
    }
}
