.services-section,
.consult-section,
.faq-section {
    background:var(--bg);
    color:#0f172a;
    padding:120px 72px;
    border-top:1px solid rgba(0,0,0,0.06);
}
.services-wrapper,
.consult-wrapper,
.faq-wrapper {
    max-width:1400px;
    margin:0 auto;
}
.highlight{
    background:var(--gradient-main);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    text-transform:uppercase;
}
.services-wrapper {
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:80px;
    align-items:center;
}
.services-box h2 {
    font-size:56px;
    line-height:1.15;
    margin-bottom:40px;
}
.services-box h2 span {
    color:var(--accent);
}
.services-list {
    list-style:none;
    padding:0;
    border-top:1px solid rgba(0,0,0,0.08);
}
.services-list li {
    border-bottom:1px solid rgba(0,0,0,0.08);
}
.services-list a {
    display:block;
    padding:26px 0;
    font-size:22px;
    font-weight:600;
    color:#0f172a;
    text-decoration:none;
    transition:0.3s ease;
}
.services-list a:hover {
    color:var(--accent);
    padding-left:12px;
}
.services-image img {
    width:100%;
    border-radius:16px;
    object-fit:cover;
}
.service-details {
    background-color:var(--bg);
    color:#0f172a;
    padding:120px 72px;
    border-top:1px solid rgba(0,0,0,0.06);
    position:relative;
    overflow:hidden;
}
.service-details::before {
    content:'';
    position:absolute;
    top:0;
    left:50%;
    width:140%;
    height:2px;
    background:linear-gradient(to right,transparent,var(--accent),transparent);
    transform:translateX(-50%);
    opacity:0.2;
}
.service-details::after {
    content:'';
    position:absolute;
    bottom:0;
    left:10%;
    width:80%;
    height:6px;
    background:rgba(0,0,0,0.05);
    border-radius:3px;
}
.service-details .details-wrapper {
    max-width:1400px;
    margin:0 auto;
    display:grid;
    gap:48px;
    border-left:3px solid rgba(79,70,229,0.3);
    padding-left:40px;
    position:relative;
}
.service-details h2 {
    font-size:56px;
    margin-bottom:24px;
    position:relative;
}
.service-details h2 span {
    color:var(--accent);
    text-decoration:underline var(--accent) 3px;
}
.service-details p {
    font-size:18px;
    line-height:1.7;
    color:var(--muted);
    position:relative;
    padding-left:12px;
}
.service-details p::before {
    content:'•';
    color:var(--accent);
    font-weight:bold;
    margin-right:6px;
}
.service-details ul {
    list-style:none;
    padding-left:40px;
    margin-bottom:32px;
}
.service-details ul li {
    font-size:17px;
    margin-bottom:12px;
    padding-left:16px;
    position:relative;
    line-height:1.6;
}
.service-details ul li::before {
    content:'';
    position:absolute;
    left:0;
    top:50%;
    width:6px;
    height:6px;
    background:var(--accent);
    border-radius:50%;
    transform:translateY(-50%);
}
.service-details p:hover,
.service-details ul li:hover {
    color:#0f172a;
    transform:translateX(3px);
    transition:0.3s ease;
}
.consult-wrapper {
    display:grid;
    grid-template-columns:480px 1fr;
    gap:100px;
}
.consult-box {
    border:1px solid rgba(0,0,0,0.08);
    padding:48px;
    border-radius:16px;
    background:#ffffff;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
}
.consult-box h3 {
    font-size:28px;
    margin-bottom:32px;
}
.consult-form input,
.consult-form textarea {
    width:100%;
    background:#ffffff;
    border:1px solid rgba(0,0,0,0.08);
    padding:14px 16px;
    margin-bottom:18px;
    color:#0f172a;
    font-size:15px;
    border-radius:8px;
    transition:0.3s ease;
}
.consult-form input:focus,
.consult-form textarea:focus {
    outline:none;
    border-color:var(--accent);
}
.consult-form button {
    width:100%;
    padding:14px;
    border:none;
    background:var(--accent);
    color:#ffffff;
    font-weight:600;
    cursor:pointer;
    border-radius:8px;
    transition:0.3s ease;
}
.consult-form button:hover {
    transform:translateY(-2px);
}
.consult-left {
    display: flex;
    align-items: stretch;
}
.consult-box {
    padding: 0;
    overflow: hidden;
    height: 100%;
}
.consult-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}
.process-intro h2 {
    font-size:48px;
    margin-bottom:24px;
}
.process-intro h2 span {
    color:var(--accent);
}
.process-intro p {
    font-size:18px;
    line-height:1.7;
    color:var(--muted);
    margin-bottom:60px;
}
.process-timeline {
    display:flex;
    justify-content:space-between;
    gap:40px;
    position:relative;
}
.process-step {
    flex:1;
    border-top:2px solid rgba(0,0,0,0.1);
    padding-top:24px;
}
.step-number {
    font-size:14px;
    font-weight:700;
    color:var(--accent);
    display:block;
    margin-bottom:12px;
}
.process-step h4 {
    font-size:20px;
    margin-bottom:14px;
}
.process-step p {
    font-size:16px;
    line-height:1.6;
    color:var(--muted);
}
.faq-wrapper h2 {
    font-size:56px;
    margin-bottom:60px;
}
.faq-wrapper h2 span {
    color:var(--accent);
}
.faq-item {
    border-top:1px solid rgba(0,0,0,0.08);
}
.faq-item:last-child {
    border-bottom:1px solid rgba(0,0,0,0.08);
}
.faq-question {
    width:100%;
    background:none;
    border:none;
    padding:28px 0;
    color:#0f172a;
    font-size:22px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}
.faq-question .arrow {
    width:10px;
    height:10px;
    border-right:2px solid var(--accent);
    border-bottom:2px solid var(--accent);
    transform:rotate(45deg); 
    transition:transform 0.3s ease;
    margin-right:20px;
}
.faq-item.active .arrow {
    transform:rotate(-135deg);
}
.faq-answer {
    max-height:0;
    overflow:hidden;
    transition:max-height 0.5s ease;
}
.faq-item.active .faq-answer {
    max-height:500px;
}
.faq-answer p {
    font-size:17px;
    line-height:1.7;
    color:var(--muted);
    padding-bottom:32px;
}
@media (max-width:1024px) {
    .services-wrapper,
    .consult-wrapper {
        grid-template-columns:1fr;
    }
    .process-timeline {
        flex-direction:column;
    }
    .services-section,
    .consult-section,
    .faq-section {
        padding:80px 32px;
    }
    .services-box h2,
    .faq-wrapper h2 {
        font-size:40px;
    }
    .process-intro h2 {
        font-size:36px;
    }
    .service-details {
        padding:80px 32px;
    }
    .service-details h2 {
        font-size:40px;
    }
    .service-details p,
    .service-details ul li {
        font-size:16px;
    }
}