/* =================================================
   ANASAYFA — Mobil Uygulama CTA (modern banner)
   ================================================= */
.ga-appcta {
    margin: 10px 0 24px;
}
.ga-appcta__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 60%, #3a1416 100%);
    border-radius: 22px;
    padding: 40px 44px;
    overflow: hidden;
}
.ga-appcta__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(220,31,38,0.32) 0%, transparent 45%),
                radial-gradient(circle at 10% 90%, rgba(220,31,38,0.18) 0%, transparent 40%);
    pointer-events: none;
}
.ga-appcta__content { position: relative; z-index: 2; color: #fff; }
.ga-appcta__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}
.ga-appcta__title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 10px;
    letter-spacing: -0.4px;
}
.ga-appcta__title span { color: #ff4d54; }
.ga-appcta__subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    margin: 0 0 22px;
    max-width: 460px;
}
.ga-appcta__features {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px 18px;
    max-width: 480px;
}
.ga-appcta__features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.ga-appcta__features svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #ff4d54;
}
.ga-appcta__stores {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.ga-appcta__stores a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1a1a1a;
    padding: 11px 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.ga-appcta__stores a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
    color: #1a1a1a;
}
.ga-appcta__stores svg { width: 26px; height: 26px; flex-shrink: 0; }
.ga-appcta__store-text { display: flex; flex-direction: column; line-height: 1.1; }
.ga-appcta__store-text small { font-size: 10px; color: #6b7280; }
.ga-appcta__store-text b { font-size: 15px; font-weight: 700; }

/* Sağ — telefon mockup */
.ga-appcta__visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ga-appcta__phone {
    position: relative;
    width: 215px;
    background: #111;
    border: 9px solid #111;
    border-radius: 34px;
    box-shadow: 0 26px 55px rgba(0,0,0,0.55);
    overflow: hidden;
}
.ga-appcta__phone img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 26px;
}
/* Üst çentik (notch) */
.ga-appcta__phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 20px;
    background: #111;
    border-radius: 0 0 14px 14px;
    z-index: 2;
}
/* Görsel yoksa CSS önizleme ekranı */
.ga-appcta__phone-screen {
    background: linear-gradient(160deg, #1a1a1a, #2a2a2a);
    border-radius: 26px;
    padding: 30px 12px 18px;
    min-height: 380px;
}
.ga-appcta__phone-logo {
    text-align: center;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 18px;
}
.ga-appcta__phone-logo span { color: #ff4d54; }
.ga-appcta__phone-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 11px;
    margin-bottom: 9px;
}
.ga-appcta__phone-dot {
    width: 22px; height: 22px;
    border-radius: 7px;
    flex-shrink: 0;
    display: grid; place-items: center;
    color: #fff; font-size: 12px;
}
.ga-appcta__phone-row span:last-child {
    color: #e5e5e5;
    font-size: 12px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 880px) {
    .ga-appcta__inner { grid-template-columns: 1fr; padding: 30px 26px; }
    .ga-appcta__visual { display: none; }
    .ga-appcta__title { font-size: 25px; }
    .ga-appcta__features { max-width: none; }
}
@media (max-width: 480px) {
    .ga-appcta__features { grid-template-columns: 1fr; }
    .ga-appcta__stores a { flex: 1; justify-content: center; }
}
