/* Web Agency page styles */
.agency-hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    padding: 90px 0 50px;
}

.agency-hero .container,
.packages-section .container,
.terms-section .container,
.distinction-section .container,
.cta-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.agency-hero h1 {
    color: #f0f6fc;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.agency-hero p {
    color: #8b949e;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 760px;
    margin-bottom: 1.5rem;
}

.packages-section,
.terms-section,
.distinction-section,
.cta-section {
    padding: 55px 0;
}

.packages-section {
    background: #0d1117;
}

.terms-section {
    background: #161b22;
}

.distinction-section,
.cta-section {
    background: #0d1117;
}

.agency-projects-section {
    padding: 55px 0;
    background: #161b22;
}

.agency-projects-intro {
    color: #8b949e;
    font-size: 0.8rem;
    line-height: 1.7;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 1.6rem;
}

.agency-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.agency-project-card {
    background: #0d1117;
    border: 1px solid #21262d;
    border-radius: 8px;
    padding: 1rem;
}

.agency-project-card h3 {
    color: #f0f6fc;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.agency-project-card p {
    color: #8b949e;
    font-size: 0.56rem;
    line-height: 1.65;
    margin-bottom: 0.7rem;
}

.agency-project-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.7rem 0;
}

.agency-project-card li {
    color: #b1bac4;
    font-size: 0.52rem;
    line-height: 1.6;
    margin-bottom: 0.35rem;
    padding-left: 0.85rem;
    position: relative;
}

.agency-project-card li::before {
    content: "•";
    color: #c29734;
    position: absolute;
    left: 0;
}

.agency-projects-cta {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.packages-grid,
.distinction-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.package-card,
.terms-card,
.distinction-card {
    background: #161b22;
    border: 1px solid #21262d;
    border-radius: 8px;
    padding: 1.2rem;
}

.package-card.featured {
    border-color: #c29734;
    box-shadow: 0 0 0 1px rgba(194, 151, 52, 0.2);
}

.package-card h3,
.distinction-card h3 {
    color: #f0f6fc;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.price {
    color: #c29734;
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.package-desc {
    color: #b1bac4;
    font-size: 0.6rem;
    margin-bottom: 0.8rem;
}

.package-card ul,
.terms-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-card li,
.terms-card li {
    color: #8b949e;
    font-size: 0.55rem;
    line-height: 1.6;
    margin-bottom: 0.45rem;
    padding-left: 0.9rem;
    position: relative;
}

.package-card li::before,
.terms-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c29734;
}

.distinction-card p {
    color: #8b949e;
    font-size: 0.6rem;
    line-height: 1.6;
}

.cta-section h2 {
    color: #f0f6fc;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0.6rem;
}

.cta-section p {
    color: #8b949e;
    font-size: 0.7rem;
    text-align: center;
    margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
    .packages-grid,
    .distinction-grid,
    .agency-projects-grid {
        grid-template-columns: 1fr;
    }

    .agency-hero h1 {
        font-size: 1.3rem;
    }

    .agency-hero p {
        font-size: 0.8rem;
    }
}
