/* =====================================================
   TrendTech v2 — KurumsalPay tarzı bölümler
   Microsoft Ekosistemi + Müşteri Yorumları
   ===================================================== */

/* =============== ORTAK STYLE: ⬥ Label =============== */
.eco-label {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--accent-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* =============== MICROSOFT EKOSİSTEMİ =============== */
.ecosystem-section {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.ecosystem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(78, 168, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(109, 213, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.ecosystem-intro {
    max-width: 700px;
    margin: 0 auto 64px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ecosystem-intro h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.ecosystem-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.eco-card {
    background: var(--bg-primary);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 280px;
}

.eco-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.4s ease;
}

.eco-card:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

.eco-card:hover::before {
    width: 100%;
}

.eco-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(78, 168, 255, 0.1);
    border: 1px solid rgba(78, 168, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.4rem;
    transition: all 0.4s ease;
}

.eco-card:hover .eco-card-icon {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
    transform: scale(1.05);
}

.eco-card-content {
    flex: 1;
}

.eco-card-content h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.2;
}

.eco-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.eco-card-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.eco-tag-mark {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.eco-card-tag strong {
    margin-left: auto;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.eco-tag-sub {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* =============== KAYAN BANT =============== */
.eco-marquee {
    margin-top: 80px;
    overflow: hidden;
    padding: 32px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.eco-marquee-track {
    display: flex;
    gap: 56px;
    animation: eco-marquee-scroll 50s linear infinite;
    white-space: nowrap;
    width: fit-content;
}

.eco-marquee-item {
    flex-shrink: 0;
    color: var(--text-muted);
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.eco-marquee-item:hover {
    color: var(--accent-primary);
}

@keyframes eco-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =============== MÜŞTERİ YORUMLARI V2 =============== */
.testimonials-section-v2 {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.testimonials-intro {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.testimonials-intro h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.testimonials-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.testimonials-intro p strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* İstatistik Bandı */
.testi-stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 56px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.testi-stat {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid var(--border-color);
    transition: background 0.3s;
}

.testi-stat:last-child {
    border-right: none;
}

.testi-stat:hover {
    background: rgba(78, 168, 255, 0.04);
}

.testi-stat-value {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.testi-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Yorum Kartları */
.testi-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.testi-card-v2 {
    background: var(--bg-primary);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: background 0.3s ease;
    position: relative;
    min-height: 280px;
}

.testi-card-v2:hover {
    background: var(--bg-secondary);
}

.testi-card-mark {
    color: var(--accent-primary);
    font-size: 1.6rem;
    line-height: 1;
    opacity: 0.7;
}

.testi-quote {
    flex: 1;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-secondary);
    font-style: normal;
    margin: 0;
    font-family: var(--sans);
}

.testi-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-weight: 700;
    font-family: var(--serif);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.testi-info {
    flex: 1;
}

.testi-name {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.testi-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.testi-number {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.4;
    letter-spacing: -0.02em;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 992px) {
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testi-stats-band {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testi-stat:nth-child(2) {
        border-right: none;
    }
    
    .testi-stat:nth-child(1),
    .testi-stat:nth-child(2) {
        border-bottom: 1px solid var(--border-color);
    }
    
    .testi-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ecosystem-section,
    .testimonials-section-v2 {
        padding: 72px 0;
    }
    
    .ecosystem-grid,
    .testi-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .eco-card,
    .testi-card-v2 {
        padding: 28px 24px;
        min-height: auto;
    }
    
    .testi-stats-band {
        grid-template-columns: 1fr 1fr;
    }
    
    .testi-stat {
        padding: 24px 16px;
    }
    
    .eco-marquee {
        margin-top: 48px;
        padding: 22px 0;
    }
    
    .eco-marquee-item {
        font-size: 1.3rem;
    }
    
    .eco-marquee-track {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .testi-stats-band {
        grid-template-columns: 1fr;
    }
    
    .testi-stat {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .testi-stat:last-child {
        border-bottom: none;
    }
}

/* =====================================================
   ORBİT BRIDGE BÖLÜMÜ - Yörüngede renkli badge ikonlar
   ===================================================== */
.orbit-bridge-section {
    padding: 120px 0 80px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.orbit-bridge-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(78, 168, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(109, 213, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Admin panelden değiştirilen arka plan görseli için */
.orbit-bridge-section.has-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--orbit-bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.orbit-bridge-stage {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

/* Yörünge halkaları */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(78, 168, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-spin-slow linear infinite;
    pointer-events: none;
}

.orbit-ring-1 {
    width: 480px;
    height: 480px;
    animation-duration: 60s;
    border-color: rgba(78, 168, 255, 0.18);
}

.orbit-ring-2 {
    width: 720px;
    height: 720px;
    animation-duration: 90s;
    animation-direction: reverse;
    border-color: rgba(78, 168, 255, 0.12);
}

.orbit-ring-3 {
    width: 960px;
    height: 960px;
    animation-duration: 120s;
    border-color: rgba(78, 168, 255, 0.08);
}

@keyframes orbit-spin-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Merkez içerik */
.orbit-center-content {
    text-align: center;
    max-width: 620px;
    position: relative;
    z-index: 5;
    padding: 0 20px;
}

.bridge-badge {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(78, 168, 255, 0.3);
    border-radius: 50px;
    background: rgba(15, 29, 51, 0.6);
    backdrop-filter: blur(10px);
    margin-bottom: 28px;
}

.bridge-badge span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent-secondary);
    text-transform: uppercase;
}

.bridge-title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.bridge-title em {
    font-style: italic;
    background: linear-gradient(135deg, #4ea8ff 0%, #6dd5ff 50%, #b8e8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

.bridge-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Bize Ulaşın butonu - teal/cyan gradient */
.btn-bridge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #0bbcc7 0%, #14d4dc 100%);
    color: #001a1c;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(11, 188, 199, 0.35);
    border: none;
}

.btn-bridge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(11, 188, 199, 0.5);
    color: #001a1c;
}

.btn-bridge i {
    transition: transform 0.3s ease;
}

.btn-bridge:hover i {
    transform: translateX(4px);
}

/* Yörüngedeki renkli daire ikonlar */
.orbit-bubble {
    position: absolute;
    width: 84px;
    height: 84px;
    z-index: 3;
    text-decoration: none;
    animation: bubble-float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.orbit-bubble::before {
    content: attr(data-tip);
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 29, 51, 0.95);
    color: var(--text-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border: 1px solid var(--border-glow);
}

.orbit-bubble:hover::before {
    opacity: 1;
}

.bubble-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 -4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bubble-circle svg {
    width: 32px;
    height: 32px;
}

.bubble-circle i {
    font-size: 1.6rem;
}

.orbit-bubble:hover {
    transform: scale(1.15) translateZ(20px);
    z-index: 10;
}

.orbit-bubble:hover .bubble-circle {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(78, 168, 255, 0.3);
}

/* Bubble pozisyonları */
.bubble-top {
    top: 4%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.bubble-tl {
    top: 18%;
    left: 22%;
    animation-delay: -1s;
}

.bubble-tr {
    top: 18%;
    right: 22%;
    animation-delay: -2s;
}

.bubble-left {
    top: 48%;
    left: 8%;
    animation-delay: -3s;
}

.bubble-right {
    top: 48%;
    right: 8%;
    animation-delay: -1.5s;
}

.bubble-bl {
    bottom: 18%;
    left: 22%;
    animation-delay: -2.5s;
}

.bubble-br {
    bottom: 18%;
    right: 22%;
    animation-delay: -4s;
}

/* Yüzme animasyonu */
@keyframes bubble-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -12px; }
}

.bubble-top { animation-name: bubble-float-center; }
@keyframes bubble-float-center {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-12px); }
}

/* Responsive */
@media (max-width: 992px) {
    .orbit-bridge-stage { min-height: 540px; }
    .orbit-bubble { width: 64px; height: 64px; }
    .bubble-circle svg { width: 24px; height: 24px; }
    .bubble-circle i { font-size: 1.2rem; }
    .orbit-ring-1 { width: 380px; height: 380px; }
    .orbit-ring-2 { width: 580px; height: 580px; }
    .orbit-ring-3 { width: 780px; height: 780px; }
    
    .bubble-tl { top: 16%; left: 12%; }
    .bubble-tr { top: 16%; right: 12%; }
    .bubble-left { top: 50%; left: 4%; }
    .bubble-right { top: 50%; right: 4%; }
    .bubble-bl { bottom: 16%; left: 12%; }
    .bubble-br { bottom: 16%; right: 12%; }
}

@media (max-width: 700px) {
    .orbit-bridge-section { padding: 72px 0 48px; }
    .orbit-bridge-stage { min-height: 520px; }
    .orbit-bubble { width: 48px; height: 48px; }
    .bubble-circle svg { width: 18px; height: 18px; }
    .bubble-circle i { font-size: 0.95rem; }
    
    .orbit-ring-1 { width: 100%; height: 100%; max-width: 320px; max-height: 320px; }
    .orbit-ring-2 { width: 110%; height: 110%; max-width: 420px; max-height: 420px; }
    .orbit-ring-3 { display: none; }
    
    .bubble-top { top: 0%; }
    .bubble-tl { top: 12%; left: 6%; }
    .bubble-tr { top: 12%; right: 6%; }
    .bubble-left { top: 50%; left: 2%; }
    .bubble-right { top: 50%; right: 2%; }
    .bubble-bl { bottom: 14%; left: 6%; }
    .bubble-br { bottom: 14%; right: 6%; }
    
    .bridge-title { font-size: 2rem; }
    .bridge-desc { font-size: 0.95rem; }
    .btn-bridge { padding: 14px 28px; font-size: 0.88rem; }
}

/* =====================================================
   AKAN YORUMLAR SLIDER (MARQUEE)
   ===================================================== */
.testi-marquee-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.testi-marquee-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(78, 168, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(109, 213, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Üst başlık (avatar grubu + sayı) */
.testi-marquee-header {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.testi-header-pill {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 24px 10px 14px;
    background: rgba(15, 29, 51, 0.7);
    border: 1px solid rgba(78, 168, 255, 0.25);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.testi-avatar-stack {
    display: flex;
    align-items: center;
}

.testi-avatar-stack > div {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--serif);
    color: #050b16;
    margin-left: -10px;
}

.testi-avatar-stack > div:first-child { margin-left: 0; }
.testi-avatar-stack > div:nth-child(1) { background: #f4c443; }
.testi-avatar-stack > div:nth-child(2) { background: #4ea8ff; }
.testi-avatar-stack > div:nth-child(3) { background: #2ecc71; }

.testi-header-text {
    line-height: 1.2;
}

.testi-header-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.testi-header-count {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-secondary);
}

/* Section başlık */
.testi-marquee-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 2;
}

.testi-marquee-intro h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.testi-marquee-intro p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Marquee satırları */
.testi-marquee-row {
    overflow: hidden;
    margin: 0 -24px 24px;
    padding: 12px 0;
    position: relative;
    z-index: 1;
    /* Kenar maskeleme - kartlar yumuşak şekilde belirir/kaybolur */
    mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.testi-marquee-row:last-child { margin-bottom: 0; }

.testi-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee-scroll 60s linear infinite;
}

.testi-marquee-row.reverse .testi-marquee-track {
    animation-direction: reverse;
    animation-duration: 70s;
}

.testi-marquee-row:hover .testi-marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Yorum kartı */
.testi-marquee-card {
    flex-shrink: 0;
    width: 400px;
    padding: 28px;
    background: rgba(15, 29, 51, 0.6);
    border: 1px solid rgba(78, 168, 255, 0.15);
    border-radius: 18px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.testi-marquee-card:hover {
    background: rgba(15, 29, 51, 0.85);
    border-color: rgba(78, 168, 255, 0.4);
    transform: translateY(-4px);
}

.testi-marquee-quote {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 24px;
    font-style: italic;
    /* 4 satırla sınırla */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testi-marquee-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(78, 168, 255, 0.12);
}

.testi-marquee-author {
    flex: 1;
    min-width: 0;
}

.testi-marquee-name {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.2;
}

.testi-marquee-role {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.testi-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(244, 196, 67, 0.12);
    border: 1px solid rgba(244, 196, 67, 0.3);
    border-radius: 50px;
    flex-shrink: 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: #f4c443;
}

.testi-rating-badge::before {
    content: '★';
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .testi-marquee-section { padding: 64px 0; }
    .testi-marquee-card { width: 320px; padding: 22px; }
    .testi-marquee-quote { font-size: 0.9rem; -webkit-line-clamp: 3; }
    .testi-marquee-name { font-size: 0.95rem; }
}

/* =====================================================
   ORBIT SLIDER ARKA PLAN
   ===================================================== */
.orbit-bridge-section.has-slider-bg {
    position: relative;
    overflow: hidden;
    min-height: 540px;
}

.orbit-bridge-section.has-slider-bg::before {
    /* Slider varken radial gradient'i tamamen kaldır */
    display: none;
}

.orbit-slider-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orbit-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.02);
}

.orbit-slide.active {
    opacity: 1;
    animation: slide-zoom 12s ease-in-out infinite alternate;
}

@keyframes slide-zoom {
    0%   { transform: scale(1.02); }
    100% { transform: scale(1.1); }
}

/* Karanlık overlay - okunabilirlik için (yumuşak) */
.orbit-slider-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(5, 11, 22, 0.35) 0%, rgba(5, 11, 22, 0.55) 100%),
        radial-gradient(ellipse at center, rgba(5, 11, 22, 0.1) 0%, rgba(5, 11, 22, 0.45) 100%);
    z-index: 1;
}

/* İçerik slider üstünde olsun */
.orbit-bridge-section.has-slider-bg .container {
    position: relative;
    z-index: 2;
}

/* Slider varken stage min-height'ı azalt (yörünge yok artık) */
.orbit-bridge-section.has-slider-bg .orbit-bridge-stage {
    min-height: 420px;
    padding: 60px 0;
}

/* Slider varken merkez içerik daha okunaklı olsun */
.orbit-bridge-section.has-slider-bg .orbit-center-content {
    background: rgba(5, 11, 22, 0.55);
    backdrop-filter: blur(8px);
    padding: 48px 36px;
    border-radius: 24px;
    border: 1px solid rgba(78, 168, 255, 0.15);
}

@media (max-width: 768px) {
    .orbit-bridge-section.has-slider-bg .orbit-center-content {
        padding: 32px 24px;
        margin: 0 16px;
    }
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    padding: 100px 0;
}

.cta-card-v2 {
    background: linear-gradient(135deg, rgba(78, 168, 255, 0.08) 0%, rgba(11, 188, 199, 0.04) 100%);
    border: 1px solid rgba(78, 168, 255, 0.25);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 188, 199, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    margin: 16px 0 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .cta-section { padding: 64px 0; }
    .cta-card-v2 { padding: 40px 24px; border-radius: 18px; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}

/* =====================================================
   SLIDER VARSA - ESKİ YÖRÜNGE/BUBBLE'LARI GİZLE
   ===================================================== */
.orbit-bridge-section.has-slider-bg .orbit-ring,
.orbit-bridge-section.has-slider-bg .orbit-bubble,
.orbit-bridge-section.has-slider-bg .bubble-circle {
    display: none !important;
}

/* Slider yoksa da yörünge halkalarını ve renkli bubble'ları kaldır (kalıcı temizlik) */
.orbit-bridge-section .orbit-ring,
.orbit-bridge-section .orbit-bubble {
    display: none !important;
}
