/* Основные стили для страницы услуги */
.service-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    overflow: hidden;
}

.service-hero__container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.service-hero__content {
    flex: 1;
}

.service-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.service-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.service-hero__breadcrumb a:hover {
    color: var(--main-color);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
}

.current {
    color: var(--main-color);
}

.service-hero__title {
    font-family: "Roboto-700";
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.2;
    margin-bottom: 24px;
}

.service-hero__title-line {
    display: block;
}

.service-hero__title .highlight {
    color: var(--main-color);
    position: relative;
    display: inline-block;
}

.service-hero__title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(18, 184, 91, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.service-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    max-width: 600px;
}

.service-hero__stats {
    display: flex;
    gap: clamp(16px, 3vw, 40px);
    margin-bottom: 48px;
    flex-wrap: nowrap;
}

.service-hero__stat {
    text-align: center;
}

.service-hero__stat-number {
    font-family: "Roboto-700";
    font-size: clamp(32px, 4vw, 48px);
    color: var(--main-color);
    margin-bottom: 8px;
}

.service-hero__stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-hero__cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-hero__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.service-hero__button:first-child {
    background: var(--main-color);
    color: white;
}

.service-hero__button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-hero__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(18, 184, 91, 0.4);
}

.service-hero__button.secondary:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.service-hero__visual {
    flex: 1;
    position: relative;
    height: 500px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.floating-element img {
    width: 100%;
    height: auto;
}

.element-1 {
    width: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 120px;
    top: 40%;
    right: 15%;
    animation-delay: 1s;
}

.element-3 {
    width: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.element-4 {
    width: 180px;
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

.service-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(18, 184, 91, 0.1) 0%, transparent 50%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Секция преимуществ */
.service-benefits {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    color: #0f172a;
    margin-bottom: 16px;
    font-family: "Roboto-700";
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    text-align: center;
    color: #0f172a;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(18, 184, 91, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
}

.benefit-title {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 16px;
    font-family: "Roboto-300";
}

.benefit-description {
    color: #64748b;
    line-height: 1.6;
}

/* Секция типов сайтов */
.service-types {
    padding: 100px 0;
    background: white;
}

.types-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    padding: 12px 24px;
    background: #f8fafc;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    background: rgba(18, 184, 91, 0.1);
    color: #12b85b;
}

.tab-btn.active {
    background: #12b85b;
    color: white;
}

.tabs-content {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
}

.tab-pane {
    display: none;
    padding: 40px;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s;
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tab-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tab-text h3 {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 20px;
}

.tab-text > p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tab-features {
    list-style: none;
    margin-bottom: 30px;
}

.tab-features li {
    color: #334155;
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
}

.tab-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #12b85b;
    font-weight: bold;
}

.tab-price {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.price-from {
    font-size: 24px;
    font-weight: bold;
    color: #12b85b;
}

.price-time {
    color: #64748b;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Секция процесса */
.service-process {
    padding: 100px 0;
    background: #f8fafc;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #12b85b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 10px;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Тёмная версия секции процесса */
.service-process.dark-section {
    background: #111;
}

.service-process.dark-section .section-title {
    color: #ffffff;
}

.service-process.dark-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.service-process.dark-section .step-content h3 {
    color: #ffffff;
}

.service-process.dark-section .step-content p {
    color: rgba(255, 255, 255, 0.7);
}

.service-process.dark-section .process-timeline::before {
    background: rgba(255, 255, 255, 0.15);
}

/* Секция технологий */
.service-tech {
    padding: 100px 0;
    background: white;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tech-category h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s;
    min-width: 80px;
}

.tech-item:hover {
    background: rgba(18, 184, 91, 0.1);
    transform: translateY(-3px);
}

.tech-item img {
    width: 40px;
    height: 40px;
}

.tech-item span {
    font-size: 12px;
    color: #64748b;
    text-align: center;
}

/* Секция портфолио */
.service-portfolio {
    padding: 100px 0;
    background: #f8fafc;
}

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

.portfolio-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 184, 91, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.portfolio-link:hover {
    background: white;
    color: #12b85b;
}

.portfolio-info {
    padding: 30px;
}

.portfolio-info h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 10px;
}

.portfolio-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.portfolio-tech {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.portfolio-tech span {
    padding: 4px 12px;
    background: rgba(18, 184, 91, 0.1);
    color: #12b85b;
    border-radius: 20px;
    font-size: 12px;
}

.portfolio-cta {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #12b85b;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #0e9c4d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(18, 184, 91, 0.4);
}

.cta-button.large {
    padding: 22px 48px;
    font-size: 20px;
}

/* Секция FAQ */
.service-faq {
    padding: 100px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #0f172a;
    cursor: pointer;
    text-align: left;
}

.faq-question svg {
    transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 24px;
    color: #64748b;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA секция */
.service-cta {
    padding: 120px 0;
    background: #ffffff;
    color: #0f172a;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    font-family: "Roboto-700";
}

.cta-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 992px) {
    .service-hero__container {
        flex-direction: column;
        text-align: center;
    }

    .service-hero__stats {
        justify-content: center;
    }

    .service-hero__visual {
        height: 400px;
    }

    .tab-content-inner {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 20px;
    }

    .timeline-step {
        gap: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 60px;
    }

    .service-hero__title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .service-hero__visual {
        display: none;
    }

    .service-hero__breadcrumb {
        display: none;
    }

    .cta-button.large {
        width: calc(100% - 32px);
        margin: 0 16px;
        justify-content: center;
    }

    .dev-process-section {
        padding: 60px 16px;
    }

    .dev-zigzag::before {
        display: none;
    }

    .dev-zigzag__item--left,
    .dev-zigzag__item--right {
        flex-direction: column;
        padding: 0;
        align-items: stretch;
        margin-bottom: 16px;
    }

    .dev-zigzag__line,
    .dev-zigzag__dot {
        display: none;
    }

    .faq-list {
        padding: 0 16px;
    }

    .service-process {
        padding-left: 16px;
        padding-right: 16px;
    }

    .service-hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .service-hero__button {
        width: 100%;
        justify-content: center;
    }

    .tabs-header {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .tech-stack {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .service-hero__stats {
        flex-direction: column;
        gap: 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 0;
    }
}

/* ===== Типы сайтов ===== */
.dev-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.dev-type-card {
    background: #fff;
    border: 1px solid rgba(18, 184, 91, 0.15);
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dev-type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(18,184,91,0.12);
    border-color: var(--main-color);
}

.dev-type-icon {
    width: 64px;
    height: 64px;
    background: rgba(18, 184, 91, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dev-type-title {
    font-size: 20px;
    font-family: 'Roboto-700';
    color: #0f172a;
}

.dev-type-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.dev-type-list {
    list-style: none;
    padding: 0;
    margin: 4px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

.dev-type-list li {
    font-size: 14px;
    color: #334155;
    padding-left: 18px;
    position: relative;
}

.dev-type-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    background: var(--main-color);
    border-radius: 50%;
}

.dev-type-price {
    font-size: 14px;
    font-family: 'Roboto-700';
    color: var(--main-color);
    padding-top: 10px;
    border-top: 1px solid rgba(18,184,91,0.15);
}

/* ===== Технологии ===== */
.dev-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.dev-tech-group {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e8f5ee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.dev-tech-group__label {
    font-size: 13px;
    font-family: 'Roboto-700';
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.dev-tech-group__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dev-tech-tag {
    background: #f0faf4;
    border: 1px solid rgba(18,184,91,0.2);
    color: #1a5c35;
    font-size: 13px;
    font-family: 'Roboto-500';
    padding: 5px 12px;
    border-radius: 20px;
}

/* ===== Процесс (dark-section) ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-step__number {
    font-size: 36px;
    font-family: 'Roboto-700';
    color: var(--main-color);
    line-height: 1;
    min-width: 52px;
    opacity: 0.9;
}

.process-step__content h3 {
    font-size: 18px;
    font-family: 'Roboto-700';
    color: #fff;
    margin-bottom: 8px;
}

.process-step__content p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .dev-types-grid,
    .dev-tech-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ===== Зигзаг-таймлайн ===== */
.dev-process-section {
    padding: 100px 0;
    background: #fff;
}

.dev-zigzag {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}

.dev-zigzag::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(18,184,91,0.3) 5%, rgba(18,184,91,0.3) 95%, transparent);
    transform: translateX(-50%);
}

.dev-zigzag__item {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}

.dev-zigzag__item--left {
    flex-direction: row;
    padding-right: calc(50% + 40px);
}

.dev-zigzag__item--right {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
}

.dev-zigzag__card {
    background: #f8fafc;
    border: 1px solid rgba(18,184,91,0.15);
    border-radius: 16px;
    padding: 28px 28px 24px;
    flex: 1;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.dev-zigzag__card:hover {
    box-shadow: 0 8px 28px rgba(18,184,91,0.1);
    border-color: var(--main-color);
}

.dev-zigzag__num {
    font-size: 36px;
    font-family: 'Roboto-700';
    color: var(--main-color);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 8px;
}

.dev-zigzag__card h3 {
    font-size: 18px;
    font-family: 'Roboto-700';
    color: #0f172a;
    margin-bottom: 10px;
}

.dev-zigzag__card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.65;
}

.dev-zigzag__line {
    width: 40px;
    height: 2px;
    background: rgba(18,184,91,0.35);
    flex-shrink: 0;
}

.dev-zigzag__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--main-color);
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(18,184,91,0.15);
    position: relative;
    z-index: 1;
}

/* ===== Технологии (тёмный блок) ===== */
.dev-tech-section {
    padding: 100px 0;
    background: #0d1117;
}

.dev-tech-section__header .section-title {
    color: #e6edf3;
}

.dev-tech-section__header .section-subtitle {
    color: rgba(255,255,255,0.5);
}

.dev-tech-dark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    border: 1px solid #21262d;
    border-radius: 16px;
    overflow: hidden;
}

.dev-tech-dark-group {
    background: #161b22;
    padding: 32px 28px;
    border: 1px solid #21262d;
    transition: background 0.3s;
}

.dev-tech-dark-group:hover {
    background: #1c2128;
}

.dev-tech-dark-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-family: 'Roboto-700';
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.dev-tech-dark-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dev-tech-dark-tags span {
    background: rgba(18,184,91,0.08);
    border: 1px solid rgba(18,184,91,0.2);
    color: #8b949e;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    padding: 4px 12px;
    border-radius: 4px;
    transition: color 0.2s, border-color 0.2s;
}

.dev-tech-dark-group:hover .dev-tech-dark-tags span {
    color: #c9d1d9;
    border-color: rgba(18,184,91,0.4);
}

/* ===== CTA с градиентом и точками ===== */
.dev-cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #051a0d 0%, #0a2e17 50%, #071a0d 100%);
    text-align: center;
    overflow: hidden;
}

.dev-cta-section__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(18,184,91,0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.dev-cta-section__inner {
    position: relative;
    z-index: 1;
}

.dev-cta-section__title {
    font-size: clamp(32px, 4vw, 52px);
    font-family: 'Roboto-700';
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.dev-cta-section__sub {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.dev-cta-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--main-color);
    color: #fff;
    border: none;
    padding: 20px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-family: 'Roboto-700';
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dev-cta-section__btn:hover {
    background: #0e9c4d;
    transform: translateY(-3px);
}

/* ===== Адаптив для зигзага ===== */
@media (max-width: 768px) {
    .dev-zigzag::before { display: none; }

    .dev-zigzag__item--left,
    .dev-zigzag__item--right {
        flex-direction: column;
        padding: 0;
        align-items: flex-start;
    }

    .dev-zigzag__line { display: none; }

    .dev-zigzag__dot {
        margin-bottom: 12px;
    }

    .dev-tech-dark-grid {
        grid-template-columns: 1fr;
    }
}
