/* page-hero stili style.css'te */

/* ===== ABOUT INTRO ===== */
.about-intro {
    padding: 80px 0;
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.ai-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 16px;
}

.ai-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

.ai-num {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.ai-txt {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.ai-content h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.ai-content p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 18px;
}

.ai-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.ai-checks div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 10px 14px;
    background: var(--light);
    border-radius: 10px;
    border: 1px solid var(--light-2);
}

.ai-checks i {
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
}

/* ===== ABOUT STATS ===== */
.about-stats {
    padding: 60px 0;
}

.as-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.as-item {
    text-align: center;
    padding: 30px 16px;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
}

.as-icon {
    font-size: 24px;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.as-num {
    display: block;
    font-size: 40px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 6px;
}

.as-label {
    font-size: 13px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ===== MISYON & VIZYON ===== */
.mv-section {
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mv-card {
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid var(--light-2);
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin: 0 auto 20px;
}

.mv-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.mv-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ===== NEDEN BIZ ===== */
.why-section {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    padding: 30px 24px;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-4px);
}

.why-card i {
    font-size: 30px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.why-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ===== HIZMETLERIMIZ ===== */
.services-section {
    padding: 80px 0;
    background: var(--light) !important;
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.srv-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--light-2);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.srv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.srv-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.srv-card:hover img {
    transform: scale(1.05);
}

.srv-placeholder {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    font-size: 48px;
    color: rgba(0, 102, 255, 0.2);
}

.srv-info {
    padding: 18px;
    text-align: center;
}

.srv-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.srv-info span {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 18px;
    background: var(--gradient-1);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 102, 255, 0.2);
    transition: var(--transition);
}

.srv-card:hover .srv-info span {
    box-shadow: 0 5px 16px rgba(0, 102, 255, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ai-grid { grid-template-columns: 1fr; gap: 40px; }
    .mv-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .srv-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ai-content h2 { font-size: 24px; }
    .ai-checks { grid-template-columns: 1fr; }
    .as-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .srv-grid { grid-template-columns: 1fr; }
}
