.hero-about {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-start;
    padding-top: 70px;
    overflow: hidden;
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-about h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 500;
    z-index: 1;
}

.hero-about .container {
    margin: 0;
}

@media (max-width: 768px) {
    .hero-about h1 {
        font-size: 45px;
    }
}

.services-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 36px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.service-card {
    padding: 30px;
    border: 1px solid #eee;
    background: #fff;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
}

.portfolio-preview-section {
    padding: 80px 0;
    background: #fff;
}

.portfolio-preview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.portfolio-preview-title {
    font-size: 36px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0;
    position: sticky;
    top: 100px;
}

.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 16/9;
    cursor: default;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
}

.portfolio-overlay span {
    font-size: 16px;
    font-weight: 400;
}

.pricing-cta-section {
    padding: 56px 0;
}
 
.pricing-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #e6e6e9;
    padding: 30px 32px;
    text-decoration: none;
    transition: border-color 0.2s ease;
}
 
.pricing-cta-box:hover {
    border-color: var(--color-text);
}
 
.pricing-cta-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 6px;
}
 
.pricing-cta-content p {
    font-size: 14.5px;
    color: var(--color-muted);
    margin: 0;
}
 
.pricing-cta-arrow {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ececec;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 400;
    padding: 15px 22px;
    white-space: nowrap;
    transition: background 0.2s ease;
}
 
.pricing-cta-box:hover .pricing-cta-arrow {
    background: #e0e0e0;
}
 
.pricing-cta-arrow .arrow-icon {
    font-size: 15px;
    transition: transform 0.2s ease;
}
 
.pricing-cta-box:hover .pricing-cta-arrow .arrow-icon {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .pricing-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .pricing-cta-arrow {
        width: 100%;
        justify-content: center;
    }
}