/* Services Pages Unified Styles */

body {
    counter-reset: section;
}

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, #0065BF 0%, #69DEF6 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    margin-bottom: 80px;
}

.services-hero__title {
    font-family: "Rounds";
    font-size: 48px;
    line-height: 120%;
    margin-bottom: 24px;
    font-weight: 800;
}

.services-hero__subtitle {
    font-size: 24px;
    line-height: 130%;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Subtitle */
.section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}

/* Definition Points - для ✅ списков */
.definition-points {
    margin: 30px 0;
}

.definition-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8fafb;
    border-radius: 10px;
    border-left: 4px solid #69DEF6;
    transition: all 0.3s ease;
}

.definition-point:hover {
    background: #f1f4f5;
    border-left-color: #0065BF;
}

.definition-point__check {
    font-size: 20px;
    color: #0065BF;
    flex-shrink: 0;
    margin-top: 2px;
}

.definition-point__content {
    flex: 1;
    line-height: 150%;
    color: #333;
}

/* HR Services Grid - для страницы HR Outsourcing */
.hr-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.hr-service-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #69DEF6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hr-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-top-color: #FFDA00;
}

.hr-service-card__marker {
    font-size: 28px;
    flex-shrink: 0;
}

.hr-service-card__content {
    flex: 1;
}

.hr-service-card__content h4 {
    font-family: "Rounds";
    font-size: 18px;
    color: #0065BF;
    margin: 0;
    font-weight: 600;
}

/* RPO Trends List - для страницы RPO */
.rpo-trends-list {
    margin: 40px 0;
}

.rpo-trend-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #69DEF6;
    transition: all 0.3s ease;
}

.rpo-trend-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-left-color: #FFDA00;
}

.rpo-trend-item__marker {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.rpo-trend-item__content {
    flex: 1;
}

.rpo-trend-item__content p {
    margin: 0;
    font-size: 16px;
    line-height: 150%;
    color: #333;
}

/* Case Study Grid - для кейсов */
.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.case-study-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #69DEF6;
    transition: all 0.3s ease;
}

.case-study-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-top-color: #FFDA00;
}

.case-study-item strong {
    display: block;
    margin-bottom: 10px;
    color: #0065BF;
    font-family: "Rounds";
    font-size: 16px;
    font-weight: 600;
}

.case-study-item p {
    margin: 0;
    font-size: 15px;
    color: #333;
    line-height: 140%;
}

/* Payroll Definition List - для страницы Payroll Services */
.payroll-definition-list {
    margin: 30px 0;
}

.payroll-definition-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafb;
    border-radius: 10px;
    border-left: 4px solid #69DEF6;
    transition: all 0.3s ease;
}

.payroll-definition-item:hover {
    background: #f1f4f5;
    border-left-color: #0065BF;
}

.payroll-definition-item__marker {
    font-size: 24px;
    flex-shrink: 0;
}

.payroll-definition-item__content {
    flex: 1;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Payroll Services Grid - для детальных услуг payroll */
.payroll-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.payroll-service-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #FFDA00;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payroll-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFDA00, #69DEF6);
}

.payroll-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-left-color: #0065BF;
}

.payroll-service-card__header {
    display: flex;
    align-items: center;
    padding: 25px 25px 15px;
    background: #f8fafb;
}

.payroll-service-card__emoji {
    font-size: 24px;
    margin-right: 15px;
}

.payroll-service-card__title {
    font-family: "Rounds";
    font-size: 18px;
    color: #0065BF;
    margin: 0;
    font-weight: 600;
}

.payroll-service-card__content {
    padding: 20px 25px 25px;
}

.payroll-service-card__content p {
    margin: 0;
    font-size: 15px;
    color: #333;
    line-height: 150%;
}

/* Advantages Grid - улучшенные карточки преимуществ */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #69DEF6;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-top-color: #FFDA00;
}

.advantage-card__marker {
    font-size: 24px;
    color: #0065BF;
    flex-shrink: 0;
    margin-top: 5px;
}

.advantage-card__content {
    flex: 1;
}

.advantage-card__title {
    font-family: "Rounds";
    font-size: 18px;
    color: #0065BF;
    margin-bottom: 10px;
    margin-top: 0;
    font-weight: 600;
}

.advantage-card__description {
    font-size: 15px;
    line-height: 150%;
    color: #666;
    margin: 0;
}

/* Process Steps Grid - карточки для процессов */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.process-step-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0065BF;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-left-color: #FFDA00;
}

.process-step-card__number {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 5px;
}

.process-step-card__content h4 {
    font-family: "Rounds";
    font-size: 18px;
    color: #0065BF;
    margin-bottom: 10px;
    margin-top: 0;
    font-weight: 600;
}

.process-step-card__content p {
    font-size: 15px;
    line-height: 150%;
    color: #666;
    margin: 0;
}

/* Clients Grid - кто использует услуги */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.client-type-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #69DEF6;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.client-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-top-color: #FFDA00;
}

.client-type-card__marker {
    font-size: 20px;
    color: #0065BF;
    flex-shrink: 0;
    margin-top: 3px;
}

.client-type-card__content {
    flex: 1;
}

.client-type-card__title {
    font-family: "Rounds";
    font-size: 16px;
    color: #0065BF;
    margin-bottom: 8px;
    margin-top: 0;
    font-weight: 600;
}

.client-type-card__description {
    font-size: 14px;
    line-height: 140%;
    color: #666;
    margin: 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn--outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn--outline:hover {
    background: white;
    color: #0065BF;
}

/* Modern Trends - новая структура карточек */
.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.trend-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #69DEF6;
    transition: all 0.3s ease;
}

.trend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-top-color: #FFDA00;
}

.trend-card__icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.trend-card__title {
    font-family: "Rounds";
    font-size: 20px;
    color: #0065BF;
    margin-bottom: 15px;
    font-weight: 600;
}

.trend-card__description {
    font-size: 16px;
    line-height: 140%;
    color: #666;
}

/* Trends - круги с описаниями (legacy поддержка) */
.trends-section {
    margin-bottom: 100px;
}

.trends-circles {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.trend-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trend-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #69DEF6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #0f211d;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.trend-circle--blue {
    background: #0065BF;
    color: white;
}

.trend-circle:hover {
    background: #FFDA00;
    color: #0f211d;
    transform: scale(1.05);
}

.trend-circle--blue:hover {
    background: #FFDA00;
    color: #0f211d;
}

.trend-item__title {
    font-family: "Rounds";
    font-size: 20px;
    color: #0065BF;
    margin-bottom: 10px;
    font-weight: 600;
}

.trend-item__description {
    font-size: 16px;
    line-height: 140%;
    color: #0f211d;
    max-width: 250px;
    margin: 0 auto;
}

/* Workflow - улучшенная структура */
.workflow-section {
    background: #f8fafb;
    padding: 80px 0;
    margin: 80px 0;
    border-radius: 30px;
}

.workflow-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.workflow-step {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    border-left: 5px solid #69DEF6;
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-left-color: #FFDA00;
}

.workflow-step__number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0065BF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Rounds";
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.workflow-step:hover .workflow-step__number {
    background: #FFDA00;
    color: #0f211d;
}

.workflow-step__content {
    flex: 1;
}

.workflow-step__content h4 {
    font-family: "Rounds";
    font-size: 22px;
    color: #0065BF;
    margin-bottom: 20px;
    margin-top: 0;
}

.workflow-content {
    margin-top: 15px;
}

.workflow-content p {
    margin-bottom: 15px;
    line-height: 150%;
    color: #333;
}

.workflow-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.workflow-content li {
    font-size: 15px;
    line-height: 150%;
    color: #666;
    margin-bottom: 8px;
}

.focus-area {
    background: #f1f4f5;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #0065BF;
}

.focus-area p {
    margin-bottom: 10px;
    color: #0065BF;
    font-weight: 600;
}

.strategy-section {
    margin: 25px 0;
    padding: 20px;
    background: #f8fafb;
    border-radius: 10px;
    border-left: 3px solid #69DEF6;
}

.strategy-section h5 {
    font-family: "Rounds";
    font-size: 18px;
    color: #0065BF;
    margin-bottom: 15px;
    margin-top: 0;
}

.strategy-section ul {
    margin: 0;
    padding-left: 20px;
}

.strategy-section li {
    margin-bottom: 8px;
    line-height: 150%;
}

/* Executive Search - улучшенная структура */
.executive-search-section {
    margin: 100px 0;
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.phase-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #FFDA00;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.phase-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFDA00, #69DEF6);
}

.phase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-left-color: #0065BF;
}

.phase-card__header {
    display: flex;
    align-items: center;
    padding: 30px 30px 20px;
    background: #f8fafb;
}

.phase-card__emoji {
    font-size: 28px;
    margin-right: 15px;
}

.phase-card__title {
    font-family: "Rounds";
    font-size: 20px;
    color: #0065BF;
    margin: 0;
    font-weight: 600;
}

.phase-content {
    padding: 30px;
}

.phase-step {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f4f5;
}

.phase-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.phase-step h5 {
    font-family: "Rounds";
    font-size: 16px;
    color: #0065BF;
    margin-bottom: 10px;
    margin-top: 0;
    font-weight: 600;
}

.phase-step p {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    line-height: 140%;
}

.phase-step ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.phase-step li {
    font-size: 14px;
    color: #666;
    line-height: 140%;
    margin-bottom: 5px;
}

/* Numbers section */
.numbers-section {
    margin: 100px 0;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.number-item {
    border-left: 4px solid #69DEF6;
    padding-left: 20px;
}

.number-item__value {
    font-size: 48px;
    line-height: 120%;
    color: #0065BF;
    font-weight: 300;
    font-family: "Rounds";
    margin-bottom: 10px;
}

.number-item__label {
    font-size: 18px;
    line-height: 120%;
    color: #0f211d;
    font-weight: 300;
}

/* Executive Search / Features - красивые карточки (legacy) */
.features-search, .executive-search {
    margin: 100px 0;
}

.phase-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #FFDA00;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFDA00, #69DEF6);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-left-color: #0065BF;
}

.feature-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-card__emoji {
    font-size: 28px;
    margin-right: 15px;
}

.feature-card__title {
    font-family: "Rounds";
    font-size: 20px;
    color: #0065BF;
    margin: 0;
    font-weight: 600;
}

.feature-item {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.feature-item::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: #69DEF6;
    font-size: 16px;
    font-weight: bold;
}

.feature-item__title {
    font-weight: 600;
    color: #0f211d;
    margin-bottom: 5px;
    font-size: 15px;
}

.feature-item__description {
    font-size: 14px;
    color: #666;
    line-height: 140%;
}

/* Considerations - светлый фон с карточками */
.considerations-section {
    background: #f1f4f5;
    border-radius: 30px;
    padding: 60px;
    margin-top: 80px;
    text-align: center;
}

.considerations-section h3 {
    font-family: "Rounds";
    font-size: 32px;
    color: #0065BF;
    margin-bottom: 40px;
}

.considerations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.consideration-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 3px solid #69DEF6;
}

.consideration-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-top-color: #FFDA00;
}

.consideration-item strong {
    display: block;
    margin-bottom: 10px;
    color: #0065BF;
    font-family: "Rounds";
    font-size: 18px;
}

.consideration-item p {
    margin: 0;
    font-size: 16px;
    color: #0f211d;
    line-height: 140%;
}

/* Content Sections */
    .content-section {
        margin: 40px 0;
    }

    .content-section__intro {
        background: #f8fafb;
        padding: 30px 20px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .content-section__intro h2 {
        font-family: "Rounds";
        font-size: 24px;
        color: #0065BF;
        margin-bottom: 20px;
        text-align: center;
        line-height: 120%;
    }

    .content-section__intro p {
        font-size: 16px;
        line-height: 150%;
        color: #0f211d;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

.content-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.advantage-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #69DEF6;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-left-color: #FFDA00;
}

.advantage-item__icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}

.advantage-item__title {
    font-family: "Rounds";
    font-size: 20px;
    color: #0065BF;
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-item__description {
    font-size: 16px;
    line-height: 150%;
    color: #666;
}

/* Process Steps */
.process-steps {
    margin: 80px 0;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.process-item__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0065BF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Rounds";
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.process-item__content h4 {
    font-family: "Rounds";
    font-size: 16px;
    color: #0065BF;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.process-item__content p {
    font-size: 14px;
    line-height: 140%;
    color: #666;
    margin: 0;
}

/* Industries */
.industries-section {
    background: #f1f4f5;
    border-radius: 30px;
    padding: 60px;
    margin: 80px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.industry-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 3px solid #69DEF6;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-top-color: #FFDA00;
}

.industry-item__icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.industry-item__title {
    font-family: "Rounds";
    font-size: 18px;
    color: #0065BF;
    margin-bottom: 10px;
}

.industry-item__description {
    font-size: 14px;
    color: #666;
    line-height: 140%;
}

/* Subscription Pricing Card - для выделения цены */
.subscription-pricing-card {
    background: linear-gradient(135deg, #f8fafb 0%, #f1f4f5 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 30px;
    border-left: 5px solid #FFDA00;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.subscription-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-left-color: #0065BF;
}

.subscription-pricing-card__icon {
    font-size: 48px;
    flex-shrink: 0;
}

.subscription-pricing-card__content {
    flex: 1;
}

.subscription-pricing-card__content h3 {
    font-family: "Rounds";
    font-size: 28px;
    color: #0065BF;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 700;
}

.subscription-pricing-card__content p {
    font-size: 18px;
    color: #333;
    margin: 0;
    line-height: 150%;
}

/* Subscription Features Grid - для услуг subscription */
.subscription-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.subscription-feature-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #69DEF6;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.subscription-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-top-color: #FFDA00;
}

.subscription-feature-card__icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.subscription-feature-card__content {
    flex: 1;
}

.subscription-feature-card__content h4 {
    font-family: "Rounds";
    font-size: 18px;
    color: #0065BF;
    margin-bottom: 10px;
    margin-top: 0;
    font-weight: 600;
}

.subscription-feature-card__content p {
    font-size: 15px;
    line-height: 150%;
    color: #666;
    margin: 0;
}

/* Subscription Benefits Grid - для what you gain */
.subscription-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.subscription-benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #69DEF6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.subscription-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-top-color: #FFDA00;
}

.subscription-benefit-item__icon {
    font-size: 32px;
    flex-shrink: 0;
}

.subscription-benefit-item__content {
    flex: 1;
}

.subscription-benefit-item__content h4 {
    font-family: "Rounds";
    font-size: 20px;
    color: #0065BF;
    margin-bottom: 5px;
    margin-top: 0;
    font-weight: 600;
}

.subscription-benefit-item__content p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 140%;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #0065BF 0%, #69DEF6 100%);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    color: white;
    margin: 80px 0;
}

.contact-cta h3 {
    font-family: "Rounds";
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-cta .btn {
    background: #FFDA00;
    color: #0f211d;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: "Rounds";
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-cta .btn:hover {
    background: white;
    color: #0065BF;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .services-hero__title {
        font-size: 28px;
        line-height: 110%;
        margin-bottom: 16px;
    }
    
    .services-hero__subtitle {
        font-size: 18px;
        line-height: 130%;
    }
    
    .main-title__two {
        font-size: 24px;
        margin-bottom: 25px;
        line-height: 120%;
    }
    
    .wrapper {
        padding: 0 20px;
    }
    
    .definition-point {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .hr-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hr-service-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .rpo-trends-list {
        margin: 30px 0;
    }
    
    .rpo-trend-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    
    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payroll-definition-list {
        margin: 20px 0;
    }
    
    .payroll-definition-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .payroll-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .client-type-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trends-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trend-card {
        padding: 25px;
    }
    
    .trends-circles {
        justify-content: center;
        gap: 20px;
    }
    
    .trend-circle {
        width: 130px;
        height: 130px;
        font-size: 20px;
    }
    
    .workflow-steps {
        gap: 30px;
    }
    
    .workflow-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
    
    .workflow-step__content h4 {
        font-size: 20px;
    }
    
    .phases-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .number-item__value {
        font-size: 36px;
    }
    
    .phase-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .considerations-section {
        padding: 30px 20px;
        border-radius: 20px;
        margin: 30px 0;
    }
    
    .considerations-grid {
        grid-template-columns: 1fr;
    }
    
    .content-advantages {
        grid-template-columns: 1fr;
    }
    
    .process-list {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-section__intro {
        padding: 40px 30px;
    }
    
    .contact-cta {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .contact-cta h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .contact-cta p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .strategy-section {
        padding: 15px;
    }
    
    .focus-area {
        padding: 15px;
    }
    
    .subscription-pricing-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .subscription-pricing-card__content h3 {
        font-size: 20px;
        line-height: 120%;
    }
    
    .subscription-pricing-card__content p {
        font-size: 16px;
    }
    
    .subscription-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 30px 0;
    }
    
    .subscription-feature-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }
    
    .subscription-feature-card__content h4 {
        font-size: 16px;
    }
    
    .subscription-feature-card__content p {
        font-size: 14px;
    }
    
    .subscription-benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 30px 0;
    }
    
    .subscription-benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }
    
    .subscription-benefit-item__content h4 {
        font-size: 18px;
    }
    
    .subscription-benefit-item__content p {
        font-size: 14px;
    }
}

@media (max-width: 490px) {
    .services-hero {
        padding: 30px 0;
        margin-bottom: 30px;
    }
    
    .services-hero__title {
        font-size: 24px;
        line-height: 110%;
        margin-bottom: 12px;
    }
    
    .services-hero__subtitle {
        font-size: 16px;
    }
    
    .main-title__two {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 115%;
    }
    
    .wrapper {
        padding: 0 15px;
    }
    
    .trends-grid {
        grid-template-columns: 1fr;
    }
    
    .trends-circles {
        flex-direction: column;
        align-items: center;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .trend-circle {
        width: 120px;
        height: 120px;
        font-size: 18px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        margin: 25px 0;
    }
    
    .content-section__intro {
        padding: 25px 15px;
        margin-bottom: 25px;
    }
    
    .content-section__intro h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .content-section__intro p {
        font-size: 15px;
    }
    
    .contact-cta {
        padding: 25px 15px;
        margin: 25px 0;
    }
    
    .contact-cta h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .contact-cta p {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .workflow-section {
        padding: 25px 15px;
        margin: 25px 0;
    }
    
    .considerations-section {
        padding: 25px 15px;
        margin: 25px 0;
    }
    
    .subscription-pricing-card {
        padding: 20px 15px;
        margin: 25px 0;
        gap: 12px;
    }
    
    .subscription-pricing-card__content h3 {
        font-size: 18px;
        line-height: 115%;
    }
    
    .subscription-pricing-card__content p {
        font-size: 15px;
    }
    
    .subscription-features-grid {
        gap: 12px;
        margin: 25px 0;
    }
    
    .subscription-feature-card {
        padding: 18px 15px;
        gap: 10px;
    }
    
    .subscription-feature-card__content h4 {
        font-size: 15px;
    }
    
    .subscription-feature-card__content p {
        font-size: 13px;
    }
    
    .subscription-benefits-grid {
        gap: 12px;
        margin: 25px 0;
    }
    
    .subscription-benefit-item {
        padding: 20px 15px;
        gap: 10px;
    }
    
    .subscription-benefit-item__content h4 {
        font-size: 16px;
    }
    
    .subscription-benefit-item__content p {
        font-size: 13px;
    }
}

.workflow-section .main-title__two, .considerations-section .main-title__two, .industries-section .main-title__two{
    margin-top: 0px;
}