* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #ededed;
    color: #111;
}

/* GLOBAL LINK STYLE */




/* ========== HERO ========== */
.hero-section {
    background: #f6f4ef;
    border-bottom-right-radius: 48px;
    border-bottom-left-radius: 48px;
    padding: 40px 0;
}

.hero-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.hero-links a {
    text-decoration: none;
    color: #111;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity .2s ease;
    margin: 5px
}

.hero-links a:hover {
    opacity: 1;
}

.hero-email button {
    margin-left: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    border: none;
    background: #fff;
}

.hero-center {
    text-align: center;
    margin: 120px 0;
}

.hero-avatar {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.hero-avatar img {
    width: 32px;
    border-radius: 50%;
}

.hero-center h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 32px;
}

.hero-btn {
    background: #111;
    color: #fff;
    padding: 14px 26px;
    border-radius: 999px;
    border: none;
}

/* ========== LOGOS ========== */
.logos-section {
    border-radius: 0 0 48px 48px;
}

.logos-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 110px;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
    background: #ededed;
    border-radius: 48px;
}

.logos-inner img {
    height: 105px;
    /* سایز استاندارد */
    width: auto;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity .2s ease;
}

.logos-inner img:hover {
    opacity: 0.85;
}

/* ========== SERVICES ========== */
.services-section {
    background: #f6f4ef;
    border-radius: 48px;
}

.services-inner {
    max-width: 1200px;
    margin: auto;
    padding: 80px 24px;
    text-align: center;
}

.services-inner h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.services-pill {
    background: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
}

.services-grid {
    background: #f6f4ef;
    border-radius: 48px;
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.services-grid h4 {
    margin-bottom: 8px;
}

/* SERVICES ICONS */

.service-item {
    text-align: center;
}

.service-item img {
    height: 28px;
    /* هم‌سایز لوگوها */
    width: auto;
    margin-bottom: 16px;
    opacity: 0.7;
    filter: grayscale(100%);
}

.service-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}


/* ========== SKILLS ========== */
.skills-section {
    margin: 50px;
    border-radius: 48px;
}

.skills-inner {
    max-width: 1200px;
    margin: auto;
    padding-bottom: 60px;
    text-align: center;
}

.skills-inner h2 {
    font-size: 36px;
    margin-bottom: 8px;
}

.skills-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 48px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.skill-card {
    height: 200px;
    width: auto;
    border-radius: 28px;
    padding: 24px;
    text-align: left;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.skill-item img {
    height: 20px;
    width: auto;
    opacity: .8;
}

.skill-bar {
    height: 8px;
    background: rgba(0, 0, 0, .08);
    border-radius: 999px;
    margin-bottom: 20px;
    overflow: hidden;
}

.skill-bar span {
    display: block;
    height: 100%;
    background: #111;
    border-radius: 999px;
}

/* Responsive */
@media (max-width: 900px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}



/* ========== CTA ========== */
.cta-section {
    background: #ffffff;
    margin: 24px;
    border-radius: 48px;
}

.cta-inner {
    max-width: 1200px;
    margin: auto;
    padding: 80px 24px 40px;
    text-align: center;
}

.cta-inner h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
}

.cta-primary {
    background: #111;
    color: #fff;
    padding: 14px 26px;
    border-radius: 999px;
    border: none;
}

.cta-primary a {
    text-decoration: none;
    background: #111;
    color: #fff;
    padding: 14px 26px;
    border-radius: 999px;
    border: none;
}

.cta-outline {
    background: #fff;
    border: 1px solid #ddd;
    padding: 14px 26px;
    border-radius: 999px;
}

.cta-outline a {
    text-decoration: none;
    border: none;
    color: #000000;
}

.cta-footer {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #777;
}

.cta-footer a {
    text-decoration: none;
    color: #111;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity .2s ease;
    margin: 5px
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .hero-center h1 {
        font-size: 34px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-footer {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}