.service-card {
    background: linear-gradient(145deg, #1f1f23, #18181c);
    border: 1px solid rgba(255, 84, 84, 0.1);
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 84, 84, 0.3);
    box-shadow: 0 10px 25px rgba(255, 84, 84, 0.2);
}

.service-icon {
    font-size: 56px;
    background: linear-gradient(45deg, #FF5454, #ff7676);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.service-title {
    font-family: 'Proxima Nova Alt Bold Italic';
    font-size: 28px;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.service-desc {
    color: #a0a0a0;
    font-size: 16px;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    width: 100%;
}

.service-features li {
    color: #c0c0c0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 84, 84, 0.1);
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: #ffffff;
    background: rgba(255, 84, 84, 0.05);
    transform: translateX(5px);
    padding-left: 10px;
    border-radius: 5px;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-btn {
    background: linear-gradient(45deg, #FF5454, #ff7676);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(255, 84, 84, 0.2);
}

.service-btn:hover {
    background: linear-gradient(45deg, #ff6b6b, #ff8c8c);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 84, 84, 0.3);
}

.service-stat {
    background: linear-gradient(145deg, #1f1f23, #18181c);
    border: 1px solid rgba(255, 84, 84, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.service-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 84, 84, 0.3);
    box-shadow: 0 8px 20px rgba(255, 84, 84, 0.15);
}

.service-stat i {
    font-size: 2.5rem;
    color: #FF5454;
    margin-bottom: 15px;
    display: block;
}

.service-stat h3 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.service-stat p {
    color: #a0a0a0;
    margin: 0;
    font-size: 0.9rem;
}

.workflow-step {
    background: linear-gradient(145deg, #1f1f23, #18181c);
    border: 1px solid rgba(255, 84, 84, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.workflow-step:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 84, 84, 0.3);
    box-shadow: 0 8px 20px rgba(255, 84, 84, 0.15);
}

.workflow-step::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #FF5454, #ff7676);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.workflow-container {
    counter-reset: step-counter;
}

.workflow-step h4 {
    color: white;
    margin-bottom: 15px;
    margin-top: 10px;
}

.workflow-step p {
    color: #a0a0a0;
    margin: 0;
    line-height: 1.6;
}

.badge {
    background: linear-gradient(45deg, #FF5454, #ff7676);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1, h2 {
    color: white;
    font-family: 'Proxima Nova Alt Bold Italic';
}

.text-muted {
    color: #a0a0a0 !important;
}

.services-hero {
    padding-top: 150px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 84, 84, 0.16), transparent 30%),
        radial-gradient(circle at 85% 25%, rgba(255, 84, 84, 0.1), transparent 28%);
    pointer-events: none;
}

.services-hero-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: stretch;
}

.services-hero-copy,
.highlight-card,
.services-cta-box {
    background: linear-gradient(145deg, rgba(31, 31, 35, 0.94), rgba(18, 18, 24, 0.98));
    border: 1px solid rgba(255, 84, 84, 0.14);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.services-hero-copy {
    padding: 42px;
}

.services-hero-copy h1 {
    font-size: clamp(48px, 7vw, 78px);
    line-height: 0.95;
    margin-bottom: 18px;
}

.services-hero-copy h1 span,
.services-cta-box h2 span {
    color: #FF5454;
}

.services-hero-copy p,
.services-cta-box p {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.7;
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.service-btn.service-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 84, 84, 0.7);
    color: #ff8b82;
    box-shadow: none;
}

.service-btn.service-btn-secondary:hover {
    background: rgba(255, 84, 84, 0.12);
    color: #ffffff;
    border-color: rgba(255, 84, 84, 0.95);
}

.services-hero-highlight {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-orb {
    position: absolute;
    width: 280px;
    height: 280px;
    right: 20px;
    top: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 84, 84, 0.24) 0%, rgba(255, 84, 84, 0.08) 48%, transparent 72%);
    filter: blur(18px);
    opacity: 0.9;
}

.highlight-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    padding: 34px;
    overflow: hidden;
    background: linear-gradient(155deg, rgba(26, 26, 32, 0.98), rgba(10, 10, 14, 0.98));
    border: 1px solid rgba(255, 84, 84, 0.2);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
}

.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 84, 84, 0.12), transparent 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
    pointer-events: none;
}

.highlight-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 84, 84, 0.18);
    border: 1px solid rgba(255, 84, 84, 0.28);
}

.highlight-kicker {
    color: #ff8b82;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 14px;
}

.highlight-card h3 {
    color: #fff;
    font-size: 36px;
    line-height: 1.05;
    margin-bottom: 16px;
    font-family: 'Proxima Nova Alt Bold Italic';
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

.highlight-card p {
    color: #d5d5dc;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.highlight-stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 84, 84, 0.14);
    border-radius: 16px;
    padding: 14px 16px;
}

.highlight-stat-box strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 6px;
}

.highlight-stat-box span {
    color: #b8b8c3;
    font-size: 13px;
    line-height: 1.5;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.highlight-list li {
    color: #f7f7f9;
    padding: 13px 14px 13px 38px;
    position: relative;
    border: 1px solid rgba(255, 84, 84, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.highlight-list li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    color: #FF5454;
    position: absolute;
    left: 14px;
    top: 14px;
    font-size: 14px;
    text-shadow: 0 0 14px rgba(255, 84, 84, 0.35);
}

.services-offers .row,
.services-advantages .row,
.services-process .row {
    --bs-gutter-y: 1.5rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 38px;
}

.service-card-glow {
    position: absolute;
    inset: auto -40px -60px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 84, 84, 0.26), transparent 68%);
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.7;
    pointer-events: none;
}

.service-card:hover .service-card-glow {
    transform: scale(1.2);
    opacity: 1;
}

.service-card.service-card-featured {
    border-color: rgba(255, 84, 84, 0.22);
    box-shadow: 0 12px 34px rgba(255, 84, 84, 0.12);
}

.service-icon {
    transition: transform 0.35s ease, filter 0.35s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-6px) scale(1.05);
    filter: drop-shadow(0 8px 24px rgba(255, 84, 84, 0.32));
}

.service-features li {
    text-align: left;
    padding-left: 18px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF5454;
    transform: translateY(-50%);
    box-shadow: 0 0 12px rgba(255, 84, 84, 0.45);
}

.service-features li:hover {
    padding-left: 18px;
}

.service-stat,
.workflow-step,
.services-cta-box {
    overflow: hidden;
}

.service-stat::before,
.workflow-step::after,
.services-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 84, 84, 0.08), transparent 45%);
    pointer-events: none;
}

.service-stat {
    position: relative;
}

.workflow-step {
    min-height: 100%;
}

.workflow-step::after {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.workflow-step:hover::after {
    opacity: 1;
}

.step-number {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF5454, #ff7676);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(255, 84, 84, 0.3);
}

.workflow-step::before {
    display: none;
}

.services-cta-box {
    position: relative;
    padding: 44px 28px;
}

.services-cta-box h2 {
    font-size: clamp(34px, 5vw, 56px);
    margin-bottom: 16px;
}

@media (max-width: 991px) {
    .services-hero-panel {
        grid-template-columns: 1fr;
    }

    .services-hero-copy,
    .highlight-card {
        padding: 28px;
    }

    .services-hero-copy h1 {
        font-size: 54px;
    }

    .highlight-card {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .services-hero {
        padding-top: 125px;
    }

    .services-hero-copy h1 {
        font-size: 42px;
    }

    .services-hero-actions {
        flex-direction: column;
    }

    .service-btn,
    .service-btn.service-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .service-card,
    .services-cta-box {
        padding: 26px;
    }

    .highlight-stats {
        grid-template-columns: 1fr;
    }
}
