/* Entegrasyonlar — Premium içerik bileşenleri */

.int-premium {
    --int-accent: #0284c7;
    --int-accent-light: #0ea5e9;
}

.int-stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.int-stat {
    background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #7dd3fc;
    border-radius: 16px;
    padding: 18px 16px;
    text-align: center;
}

.int-stat__value {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    color: #0369a1;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.int-stat__label {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #075985;
    line-height: 1.4;
}

.int-hero-figure { position: relative; }

.int-hero-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    margin: 0;
    background: rgba(15, 23, 42, 0.88);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.int-hero-badge i {
    color: #38bdf8;
    margin-right: 6px;
}

.int-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.int-pillar {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.int-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(14, 165, 233, 0.14);
}

.int-pillar__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.int-pillar h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1e293b;
}

.int-pillar p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #64748b;
}

.int-metrics-panel {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #0c4a6e 55%, #082f49 100%);
    border-radius: 20px;
    padding: 28px 26px;
    margin-bottom: 28px;
    color: #fff;
    overflow: hidden;
}

.int-tag {
    display: inline-block;
    background: rgba(14, 165, 233, 0.22);
    color: #7dd3fc;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.int-tag--light {
    background: rgba(255, 255, 255, 0.14);
    color: #bae6fd;
}

.int-metrics-panel__text h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.int-metrics-panel__text p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.int-metrics-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.int-metrics-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.int-metrics-list i { color: #38bdf8; }

.int-metrics-panel__visual {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.int-ring {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(56, 189, 248, 0.35);
    animation: intPulse 3s ease-in-out infinite;
}

.int-ring i { color: #38bdf8; }

.int-ring--1 {
    width: 160px;
    height: 160px;
    font-size: 28px;
    animation-delay: 0s;
}

.int-ring--2 {
    width: 110px;
    height: 110px;
    font-size: 22px;
    background: rgba(14, 165, 233, 0.12);
    animation-delay: 0.4s;
}

.int-ring--3 {
    width: 64px;
    height: 64px;
    font-size: 18px;
    background: rgba(14, 165, 233, 0.25);
    animation-delay: 0.8s;
}

@keyframes intPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.04); opacity: 0.92; }
}

.int-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.int-service-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 18px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.int-service-card:hover {
    background: #f0f9ff;
    border-color: #7dd3fc;
}

.int-service-card i {
    font-size: 22px;
    color: #0284c7;
    margin-bottom: 10px;
}

.int-service-card h4 {
    margin: 0 0 6px;
    font-size: 0.98rem;
    font-weight: 800;
    color: #1e293b;
}

.int-service-card p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.6;
    color: #64748b;
}

.int-process { margin-bottom: 28px; }

.int-process h3 {
    margin: 0 0 18px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
}

.int-process__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.int-process__steps li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.int-process__num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.int-process__steps strong {
    display: block;
    font-size: 0.98rem;
    color: #1e293b;
    margin-bottom: 4px;
}

.int-process__steps p {
    margin: 0;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
}

.int-compare { margin-bottom: 28px; }

.int-compare h3 {
    margin: 0 0 16px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
}

.int-compare__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.int-compare__col {
    border-radius: 16px;
    padding: 20px 18px;
}

.int-compare__col--bad {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.int-compare__col--good {
    background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #7dd3fc;
}

.int-compare__col h4 {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 800;
}

.int-compare__col--bad h4 { color: #b91c1c; }
.int-compare__col--good h4 { color: #0369a1; }

.int-compare__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.int-compare__col li {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #475569;
}

.int-faq { margin-bottom: 28px; }

.int-faq h3 {
    margin: 0 0 14px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
}

.int-faq__item {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}

.int-faq__item summary {
    cursor: pointer;
    padding: 14px 18px;
    font-weight: 700;
    color: #1e293b;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.int-faq__item summary::-webkit-details-marker { display: none; }

.int-faq__item summary::after {
    content: "+";
    font-size: 1.2rem;
    color: #0284c7;
    font-weight: 400;
}

.int-faq__item[open] summary::after { content: "−"; }

.int-faq__item p {
    margin: 0;
    padding: 0 18px 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #64748b;
}

.int-inline-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 50%, #0ea5e9 100%);
    border-radius: 20px;
    padding: 26px 28px;
    margin-bottom: 24px;
    color: #fff;
    box-shadow: 0 16px 40px rgba(2, 132, 199, 0.28);
}

.int-inline-cta h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.int-inline-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 480px;
}

.int-inline-cta__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.int-inline-cta .ecx-btn-primary {
    background: #fff;
    color: #0369a1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.int-inline-cta .ecx-btn-whatsapp {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
    .int-stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .int-pillars, .int-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .int-metrics-panel { grid-template-columns: 1fr; }
    .int-metrics-panel__visual { height: 160px; }
}

@media (max-width: 575px) {
    .int-stats-band, .int-pillars, .int-services-grid, .int-compare__grid { grid-template-columns: 1fr; }
    .int-inline-cta__actions { width: 100%; }
    .int-inline-cta .ecx-btn { flex: 1 1 100%; justify-content: center; }
    .int-hero-badge {
        left: 12px; right: 12px; bottom: 12px;
        font-size: 0.8rem; text-align: center;
    }
}
