/* =========================================
   SMSONAY.PRO - ANASAYFA CSS (FULL)
   ========================================= */

.smsonay-page-container {
    background-color: #fff;
    padding-top: 0;
    overflow-x: hidden;
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.sms-hero-section {
    position: relative;
    padding: 6rem 0;
    /* Mesh Gradient Arkaplan */
    background: radial-gradient(circle at 10% 20%, rgba(0, 74, 173, 0.03) 0%, transparent 25%),
                radial-gradient(circle at 90% 80%, rgba(0, 191, 99, 0.03) 0%, transparent 25%);
    background-color: #fff;
}

.sms-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* --- SOL KOLON --- */

/* Modern Tags (Hareketli Etiketler) */
.sms-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2rem;
}

.sms-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-text);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    animation: floatTag 4s ease-in-out infinite;
}

.sms-tag svg {
    width: 18px;
    height: 18px;
    color: var(--clr-secondary); /* Yeşil İkonlar */
}

/* Etiketlerin farklı zamanlarda hareket etmesi için gecikme */
.sms-tag:nth-child(1) { animation-delay: 0s; }
.sms-tag:nth-child(2) { animation-delay: 1s; }
.sms-tag:nth-child(3) { animation-delay: 2s; }
.sms-tag:nth-child(4) { animation-delay: 0.5s; }

@keyframes floatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* H1 Title & Animation */
.sms-hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.highlight-wrapper {
    position: relative;
    display: inline-block;
    color: var(--clr-primary);
}

.underline-anim {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: auto;
    overflow: visible;
}

.underline-anim path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawPath 1s ease-out 0.5s forwards;
}

@keyframes drawPath { to { stroke-dashoffset: 0; } }

.sms-hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 90%;
}

/* İstatistikler */
.sms-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.sms-stat-card {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.sms-stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--clr-primary-light);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    background: #f0f5ff;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.rating-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-text { 
    font-size: 0.9rem; 
    color: #1e293b; 
}
.rating-text strong {
    font-weight: 800;
}

/* Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-sms-primary {
    background: linear-gradient(135deg, var(--clr-primary), #003680);
    color: #fff;
    padding: 1rem 2.2rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(0, 74, 173, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-sms-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(0, 74, 173, 0.5);
}

.store-links-mini { display: flex; gap: 10px; }
.store-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}
.store-btn:hover {
    background: #fff;
    color: #1e293b;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* --- SAĞ KOLON (MİNİMAL DÜZ TELEFON) --- */
.sms-visual-col {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.phone-mockup-straight {
    position: relative;
    width: 320px;
    height: 640px;
    background: #fff; /* Çerçeve için baz */
    border-radius: 50px;
    /* Minimal Çerçeve Efekti */
    box-shadow: 
        0 0 0 4px #e2e8f0, /* Dış ince çizgi */
        0 0 0 12px #fff, /* Beyaz boşluk */
        0 20px 50px -10px rgba(0,0,0,0.15); /* Yumuşak Gölge */
    margin: 0 auto;
    z-index: 2;
    transform: rotate(0deg); /* Tam Düz */
    border: 8px solid #1e293b; /* Koyu Çerçeve */
}

/* Fiziksel Tuşlar */
.phone-btn {
    position: absolute;
    background: #334155;
    border-radius: 4px;
    left: -10px;
    z-index: -1;
}
.volume-up { top: 120px; width: 4px; height: 40px; }
.volume-down { top: 170px; width: 4px; height: 40px; }
.power { top: 140px; right: -10px; left: auto; width: 4px; height: 60px; }

/* Ekran Çerçevesi */
.phone-bezel {
    width: 100%;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
    border-radius: 42px;
    background: #000;
    overflow: hidden;
}

/* Ekran */
.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff; /* Düz Beyaz Zemin */
    border-radius: 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Dynamic Island */
.dynamic-island {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #000;
    border-radius: 20px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}
.camera-dot { width: 8px; height: 8px; background: #1a1a1a; border-radius: 50%; }

/* Üst Bar (Gizli) */
.screen-header-bar { display: none; }

/* Uygulama Alanı */
.app-white-bg {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    background: #fff;
    padding-bottom: 200px;
}

/* Logo Alanı (Tam Ortada) */
.app-logo-area {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    z-index: 5;
}

.app-screen-logo { 
    width: 160px; 
    height: auto; 
    margin-bottom: 10px; 
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
}

.app-date { display: none; }

/* Bildirim Alanı */
.notification-container {
    height: 320px;
    width: 100%;
    position: absolute;
    bottom: 30px;
    left: 0;
    overflow: hidden;
    /* Üstten silikleşme efekti */
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 100%);
    padding: 0 20px;
    z-index: 10;
}

.notification-track {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Aşağıdan Yukarı Sonsuz Akış */
    animation: scrollVerticalNotifications 12s linear infinite;
}

.notification-container:hover .notification-track {
    animation-play-state: paused;
}

@keyframes scrollVerticalNotifications {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } 
}

/* Bildirim Kartı (Pro - Daha Minimal) */
.notif-card-pro {
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    display: flex;
    gap: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    align-items: center;
}

.notif-icon-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff; 
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}

.notif-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.notif-body-pro {
    flex-grow: 1;
    overflow: hidden;
}

.notif-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3px;
}

.app-title {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
}

.app-time {
    font-size: 11px;
    color: #94a3b8;
}

.notif-message {
    font-size: 13px;
    color: #475569;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-message strong {
    color: #000;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}


/* =========================================
   2. SERVICE LOGOS SLIDER (MARQUEE)
   ========================================= */
.service-logos-section {
    padding: 6rem 0 4rem 0;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.service-logos-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(248, 250, 252, 0.5) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.service-logos-header {
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-logos-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--clr-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    background: #eff6ff;
    padding: 8px 20px;
    border-radius: 99px;
    border: 1px solid rgba(0, 74, 173, 0.1);
}

.service-logos-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.logo-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    margin-bottom: 4rem;
}

.logo-marquee-track {
    display: flex;
    gap: 5rem;
    width: max-content; 
    animation: marqueeScroll 40s linear infinite;
    padding: 1rem 0;
}

.logo-marquee-wrapper:hover .logo-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: default;
    background: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
}

.marquee-item:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--clr-primary-light);
}

.marquee-logo {
    width: 32px;
    height: 32px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.marquee-item:hover .marquee-logo {
    filter: grayscale(0%); 
}

.marquee-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #64748b; 
    transition: color 0.3s ease;
}

.marquee-item:hover .marquee-text {
    color: #1e293b; 
}


/* =========================================
   3. GLOBAL STATS COUNTER
   ========================================= */
.sms-global-stats-section {
    padding: 0 0 6rem 0;
    background-color: #fff;
}

.global-stats-container {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 30px;
    padding: 4rem;
    color: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dekoratif Efektler */
.global-stats-container::before {
    content: ''; position: absolute; top: -100px; right: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.global-stats-container::after {
    content: ''; position: absolute; bottom: -100px; left: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0, 191, 99, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.global-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.global-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.global-stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
}

.global-stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.8rem;
}

.global-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.global-stat-label {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================
   4. HİZMETLERİMİZ SECTION
   ========================================= */
.sms-services-section {
    padding: 8rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.sms-services-section::before {
    content: '';
    position: absolute;
    top: -10%; right: -10%; width: 50%; height: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}
.sms-services-section::after {
    content: '';
    position: absolute;
    bottom: -10%; left: -10%; width: 50%; height: 50%;
    background: radial-gradient(circle, rgba(0, 191, 99, 0.05) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}

.sms-services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    position: relative; z-index: 1;
}

.sms-services-subtitle {
    display: inline-block;
    font-size: 0.85rem; color: var(--clr-primary);
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 1rem;
    background: #eff6ff; padding: 8px 20px; border-radius: 99px;
    border: 1px solid rgba(0, 74, 173, 0.1);
}

.sms-services-title {
    font-size: 3rem; font-weight: 900; color: #1e293b;
    margin-bottom: 1.5rem; letter-spacing: -0.03em; line-height: 1.2;
}

.sms-services-desc {
    font-size: 1.15rem; color: #64748b; line-height: 1.7;
}
.sms-services-desc strong { color: #1e293b; }

.sms-services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative; z-index: 1;
}

.services-grid-row {
    display: flex;
    gap: 2rem;
    width: 100%;
}

.sms-service-card {
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
}
.sms-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
}

.card-1-4 { flex: 1; min-width: 250px; }
.card-2-4 { flex: 2; min-width: 400px; display: grid; grid-template-columns: 1fr 0.8fr; gap: 2rem; align-items: center; }

/* Renk Temaları */
.card-blue { background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%); border-color: #dbeafe; }
.card-blue:hover { border-color: #3b82f6; box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15); }
.card-blue .card-icon-wrapper { background: #dbeafe; color: #2563eb; }

.card-red { background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%); border-color: #fee2e2; }
.card-red:hover { border-color: #ef4444; box-shadow: 0 15px 30px rgba(239, 68, 68, 0.15); }
.card-red .card-icon-wrapper { background: #fee2e2; color: #dc2626; }

.card-green { background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%); border-color: #dcfce7; }
.card-green:hover { border-color: #22c55e; box-shadow: 0 15px 30px rgba(34, 197, 94, 0.15); }
.card-green .card-icon-wrapper { background: #dcfce7; color: #16a34a; }

.card-orange { background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%); border-color: #ffedd5; }
.card-orange:hover { border-color: #f97316; box-shadow: 0 15px 30px rgba(249, 115, 22, 0.15); }
.card-orange .card-icon-wrapper { background: #ffedd5; color: #ea580c; }

.card-purple { background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%); border-color: #e9d5ff; }
.card-purple:hover { border-color: #a855f7; box-shadow: 0 15px 30px rgba(168, 85, 247, 0.15); }
.card-purple .card-icon-wrapper { background: #e9d5ff; color: #9333ea; }

.card-indigo { background: linear-gradient(135deg, #e0e7ff 0%, #ffffff 100%); border-color: #c7d2fe; }
.card-indigo:hover { border-color: #6366f1; box-shadow: 0 15px 30px rgba(99, 102, 241, 0.15); }
.card-indigo .card-icon-wrapper { background: #c7d2fe; color: #4f46e5; }

/* Animasyon Konteynerları */
.anim-container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

/* Animasyon CSS'leri */
/* --- 1. SMS ONAY (MINIMAL CODE REVEAL) --- */
.anim-code-reveal {
    background: #fff;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    width: 220px;
    border: 1px solid #f1f5f9;
}

.code-box {
    font-family: monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    width: 100%;
    position: relative;
    border: 2px solid #e2e8f0;
}

.static { color: var(--clr-primary); }

.typing-code::after {
    content: '5829';
    animation: typeCode 4s steps(4, end) infinite;
}

@keyframes typeCode {
    0%, 30% { content: ''; }
    40% { content: '5'; }
    50% { content: '58'; }
    60% { content: '582'; }
    70%, 100% { content: '5829'; }
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1.5rem;
    background: #000;
    margin-left: 5px;
    animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 99px;
    transition: all 0.3s ease;
    background: #fff7ed;
    color: #ea580c;
    animation: statusChange 4s infinite;
}

.status-badge svg { width: 16px; height: 16px; }
.spinner { animation: rotate 1s linear infinite; stroke: currentColor; }
.check { display: none; stroke: currentColor; fill: none; stroke-width: 3; }

@keyframes statusChange {
    0%, 65% { background: #fff7ed; color: #ea580c; }
    70%, 100% { background: #ecfdf5; color: #10b981; }
}

.status-badge .spinner { animation: hideSpinner 4s infinite; }
@keyframes hideSpinner { 0%, 65% { opacity: 1; width: 16px; } 70%, 100% { opacity: 0; width: 0; margin: 0; } }

.status-badge .check { display: block; width: 0; opacity: 0; animation: showCheck 4s infinite; }
@keyframes showCheck { 0%, 65% { opacity: 0; width: 0; } 70%, 100% { opacity: 1; width: 16px; margin-right: 5px; } }

.status-badge .text::after { content: 'Bekleniyor...'; animation: textChange 4s infinite; }
@keyframes textChange { 0%, 65% { content: 'Bekleniyor...'; } 70%, 100% { content: 'Onaylandı!'; } }
@keyframes rotate { 100% { transform: rotate(360deg); } }


/* --- 2. GÜVENLİK --- */
.anim-shield { position: relative; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }
.shield-icon { width: 60px; height: 60px; fill: #fee2e2; stroke: #dc2626; stroke-width: 2; transition: all 0.3s; }
.shield-pulse { position: absolute; width: 100%; height: 100%; border: 2px solid #dc2626; border-radius: 50%; opacity: 0; animation: pulseShield 2s infinite; }
.shield-check { position: absolute; width: 24px; height: 24px; background: #dc2626; border-radius: 50%; bottom: 0; right: 10px; display: flex; align-items: center; justify-content: center; color: #fff; animation: popCheck 2s infinite; }
.shield-check svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 3; fill: none; }
@keyframes pulseShield { 0% { transform: scale(0.8); opacity: 0.5; } 100% { transform: scale(1.2); opacity: 0; } }
@keyframes popCheck { 0%, 50% { transform: scale(0); } 60% { transform: scale(1.1); } 70% { transform: scale(1); } 100% { transform: scale(1); } }

/* --- 3. GİZLİLİK --- */
.anim-privacy { position: relative; width: 80px; height: 80px; }
.incognito-mask { position: absolute; top: 10px; left: 10px; opacity: 0; animation: maskFade 4s infinite; }
.glasses span { display: inline-block; width: 20px; height: 10px; background: #333; border-radius: 0 0 10px 10px; margin: 0 2px; }
.lock-icon { width: 40px; height: 50px; background: #10b981; border-radius: 6px; position: absolute; bottom: 10px; right: 20px; animation: lockSecure 4s infinite; }
.lock-icon .shackle { width: 24px; height: 20px; border: 4px solid #10b981; border-bottom: none; border-radius: 12px 12px 0 0; position: absolute; top: -16px; left: 8px; transform-origin: right bottom; animation: shackleMove 4s infinite; }
@keyframes lockSecure { 0% { transform: scale(0.9); } 50% { transform: scale(1); box-shadow: 0 0 20px rgba(16, 185, 129, 0.4); } 100% { transform: scale(0.9); } }
@keyframes shackleMove { 0%, 20% { transform: rotateY(180deg); } 40%, 100% { transform: rotateY(0); } }

/* --- 4. GLOBAL --- */
.anim-global-orbit { position: relative; width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; }
.orbit-center { width: 40px; height: 40px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--clr-primary); box-shadow: 0 4px 10px rgba(0,0,0,0.1); z-index: 2; }
.orbit-center svg { width: 24px; height: 24px; }
.orbit-ring { position: absolute; width: 100%; height: 100%; border: 1px dashed #fdba74; border-radius: 50%; animation: orbitRotate 10s linear infinite; }
.orbiting-flag { position: absolute; width: 24px; height: 24px; border-radius: 50%; overflow: hidden; border: 2px solid #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); animation: orbitCounterRotate 10s linear infinite; }
.orbiting-flag img { width: 100%; height: 100%; object-fit: cover; }
.f1 { top: 0; left: 50%; margin-left: -12px; margin-top: -12px; }
.f2 { top: 50%; right: 0; margin-right: -12px; margin-top: -12px; }
.f3 { bottom: 0; left: 50%; margin-left: -12px; margin-bottom: -12px; }
.f4 { top: 50%; left: 0; margin-left: -12px; margin-top: -12px; }
@keyframes orbitRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbitCounterRotate { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.flag-stack { display: flex; align-items: center; margin-top: 1.5rem; }
.stack-flag { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; margin-left: -10px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); transition: transform 0.2s ease; }
.stack-flag:first-child { margin-left: 0; }
.stack-flag:hover { transform: translateY(-3px); z-index: 10 !important; }
.stack-more { font-size: 0.8rem; font-weight: 700; color: #64748b; margin-left: 8px; background: #f1f5f9; padding: 4px 10px; border-radius: 20px; }

/* --- 5. CANLI DESTEK --- */
.anim-support { position: relative; height: 80px; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.chat-bubble { padding: 6px 12px; border-radius: 12px; font-size: 0.7rem; margin-bottom: 5px; opacity: 0; position: absolute; }
.chat-bubble.user { background: #f3e8ff; color: #7e22ce; right: 10%; bottom: 40px; border-radius: 12px 12px 0 12px; animation: chatUser 3s infinite; }
.chat-bubble.agent { background: #9333ea; color: #fff; left: 10%; bottom: 10px; border-radius: 12px 12px 12px 0; animation: chatAgent 3s infinite 1.5s; }
.headset-icon { font-size: 2rem; position: absolute; top: 0; left: 50%; transform: translateX(-50%); animation: bounceHeadset 3s infinite; }
@keyframes chatUser { 0% { opacity: 0; transform: translateY(10px); } 20% { opacity: 1; transform: translateY(0); } 80% { opacity: 1; } 100% { opacity: 0; } }
@keyframes chatAgent { 0% { opacity: 0; transform: translateY(10px); } 20% { opacity: 1; transform: translateY(0); } 80% { opacity: 1; } 100% { opacity: 0; } }

/* --- 6. SANAL NUMARA --- */
.anim-virtual-sim { position: relative; display: flex; align-items: center; gap: 20px; }
.sim-card { width: 60px; height: 90px; background: #6366f1; border-radius: 8px; border-bottom-right-radius: 18px; position: relative; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.sim-chip { width: 30px; height: 24px; background: #fbbf24; border-radius: 4px; position: absolute; top: 20px; left: 15px; }
.sim-label { position: absolute; bottom: 10px; left: 10px; color: #fff; font-size: 0.7rem; font-weight: 700; }
.number-display { font-family: monospace; font-size: 1.2rem; color: #4f46e5; background: #fff; padding: 10px 20px; border-radius: 8px; border: 2px solid #e0e7ff; display: flex; gap: 2px; }
.changing-digits span { display: inline-block; width: 3ch; text-align: center; animation: numChange 2s infinite; }
@keyframes numChange { 0% { opacity: 0.5; transform: translateY(-2px); } 50% { opacity: 1; transform: translateY(0); } 100% { opacity: 0.5; transform: translateY(-2px); } }


.card-icon-wrapper {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}
.card-title {
    font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.3;
}
.card-text {
    font-size: 1rem; line-height: 1.6; color: #64748b;
}
.card-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 1.5rem; padding: 12px 24px;
    border-radius: 12px; font-weight: 700; text-decoration: none;
    transition: all 0.3s ease; width: max-content;
}

.card-visual {
    display: flex; justify-content: center; align-items: center;
}

/* =========================================
   5. HOW IT WORKS SECTION (NASIL ÇALIŞIR)
   ========================================= */
.sms-how-it-works {
    padding: 6rem 0;
    background-color: #f8fafc;
    border-top: 1px solid var(--clr-border);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 2rem;
    position: relative;
    margin-top: 4rem;
}

/* Masaüstü Bağlantı Çizgisi */
.how-it-works-grid::before {
    content: '';
    position: absolute;
    top: 30px; 
    left: 10%; 
    right: 10%; 
    height: 2px;
    background-image: linear-gradient(to right, #cbd5e1 50%, rgba(255,255,255,0) 0%);
    background-position: bottom;
    background-size: 10px 1px;
    background-repeat: repeat-x;
    z-index: 0;
}

.step-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: transparent;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-header {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: var(--clr-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 2;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-secondary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    z-index: 1; 
}

.step-card:hover .step-icon {
    background: var(--clr-primary);
    color: #fff;
    transform: rotate(5deg);
    border-color: var(--clr-primary);
}

.step-icon svg { width: 28px; height: 28px; stroke-width: 1.5; }

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* =========================================
   6. PRICING TABLE SECTION (YENİ)
   ========================================= */
.sms-pricing-table-section {
    padding: 6rem 0;
    background-color: #fff;
    border-top: 1px solid var(--clr-border);
}

.sms-pricing-table-section .section-title { color: #000; }
.sms-pricing-table-section .section-desc { color: #111; }

/* Tagler */
.pricing-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.p-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-light);
    background: var(--clr-surface);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--clr-border);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.p-tag:hover {
    background: var(--clr-primary-light);
    color: var(--clr-primary);
    border-color: var(--clr-primary);
}

/* Interface Card */
.pricing-interface-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

/* Interface Header */
.interface-header {
    background: #f8fafc;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-selector-wrapper label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.custom-select-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 8px 12px;
    min-width: 250px;
}

#selected-service-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.custom-select-container select {
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: black;
    width: 100%;
    cursor: pointer;
    outline: none;
    appearance: none; 
}

.select-arrow {
    font-size: 0.7rem;
    color: var(--clr-text-light);
    pointer-events: none;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #059669; 
    background: #ecfdf5;
    padding: 4px 10px;
    border-radius: 6px;
}

.blink-dot {
    width: 8px;
    height: 8px;
    background: #059669;
    border-radius: 50%;
    animation: blinkLive 1.5s infinite;
}

@keyframes blinkLive {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* Interface Body (Table) */
.interface-body {
    padding: 0;
}

.pricing-table-wrapper {
    width: 100%;
    overflow-x: auto; 
}

.sms-price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; 
}

.sms-price-table th {
    text-align: left;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    color: var(--clr-text-light);
    font-weight: 600;
    border-bottom: 1px solid var(--clr-border);
    background: #fff;
}

.sms-price-table td {
    padding: 1.2rem 2rem;
    border-bottom: 1px solid var(--clr-surface);
    color: black;
    font-weight: 500;
    vertical-align: middle;
}

.sms-price-table tr:last-child td {
    border-bottom: none;
}

.sms-price-table tr:hover {
    background-color: #f8fafc;
}

.country-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-flag {
    width: 24px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.success-rate {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}
.rate-high { background: #ecfdf5; color: #059669; }
.rate-med { background: #fff7ed; color: #ea580c; }

.price-cell {
    font-weight: 800;
    color: var(--clr-primary);
    font-size: 1.1rem;
}

.buy-btn-sm {
    display: inline-block;
    padding: 6px 14px;
    background: var(--clr-secondary);
    color: #fff;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.buy-btn-sm:hover {
    background: #00a651;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 191, 99, 0.2);
}

/* Interface Footer */
.interface-footer {
    background: #f8fafc;
    padding: 1rem 2rem;
    border-top: 1px solid var(--clr-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.interface-footer p {
    font-size: 0.8rem;
    color: var(--clr-text-light);
    margin: 0;
}

.btn-table-action {
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}
.btn-table-action:hover { text-decoration: underline; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .sms-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    .sms-content-col { align-items: center; }
    
    .sms-tags-wrapper {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .sms-stats-row { 
        justify-content: center; 
        width: 100%;
    }

    .hero-actions { 
        flex-direction: column; 
        gap: 1.5rem; 
    }
    
    .phone-mockup-straight {
        width: 300px;
        height: 600px;
    }

    .service-logos-title { font-size: 2rem; }
    
    .global-stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .global-stat-card:not(:last-child)::after { display: none; }
    .global-stat-card { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 2rem; }
    .global-stat-card:last-child { border-bottom: none; padding-bottom: 0; }

    .services-grid-row { flex-wrap: wrap; }
    .card-1-4, .card-2-4 { flex: auto; width: 100%; min-width: auto; }
    .card-2-4 { grid-template-columns: 1fr; text-align: center; }
    .card-2-4 .card-visual { margin-top: 2rem; }
    .card-2-4 .card-icon-wrapper { margin: 0 auto 1.5rem auto; }
    .card-2-4 .card-link { margin: 1.5rem auto 0 auto; }

    /* GÜNCELLEME: Nasıl Çalışır Bölümü - Mobil Düzeltmesi */
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding-left: 0; /* Padding sıfırlandı */
        position: relative;
    }
    
    /* Yatay çizgiyi kaldır */
    .how-it-works-grid::before {
        display: none;
    }

    /* Dikey Çizgi (Tam Ortadan Geçen) */
    .how-it-works-grid::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%; /* Tam ortala */
        transform: translateX(-50%);
        width: 2px;
        background-image: linear-gradient(to bottom, #cbd5e1 50%, rgba(255,255,255,0) 0%);
        background-size: 1px 10px;
        background-repeat: repeat-y;
        z-index: 0;
    }

    .step-card {
        flex-direction: column; /* İSTEK: İkon üstte, yazı altta */
        align-items: center; /* Ortala */
        text-align: center; /* Metni ortala */
        padding: 0 1rem;
        position: relative;
        z-index: 1;
    }

    .step-header {
        margin-right: 0; /* Sağ boşluğu kaldır */
        margin-bottom: 1.2rem; /* İkon ile başlık arasına boşluk */
        flex-shrink: 0;
    }
    
    .step-icon {
        background-color: #fff;
        position: relative;
        z-index: 2;
        width: 70px; /* Mobilde ikon biraz daha belirgin */
        height: 70px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }
    
    .step-icon svg {
        width: 32px;
        height: 32px;
    }
    
    /* Adım numarası (İkonun sol üst köşesine) */
    .step-number {
        top: -5px;
        right: auto;
        left: -5px;
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
        border: 2px solid #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .step-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .step-desc {
        font-size: 0.95rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Pricing Table Başlıkları (CSS'i olmayanlar için yedek) */
    /* Eğer PHP'de class değiştirilemezse diye buraya da ekliyoruz */
    .sms-pricing-table-section .seo-title {
        font-size: 2.2rem;
        font-weight: 900;
        color: #1e293b;
        margin-bottom: 1.5rem;
    }
    
    .sms-pricing-table-section .seo-subtitle {
        display: inline-block;
        font-size: 0.85rem;
        color: var(--clr-primary);
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 1rem;
        background: #eff6ff;
        padding: 8px 20px;
        border-radius: 99px;
    }
}

@media (max-width: 768px) {
    .sms-hero-section { padding: 2rem 0 4rem 0; }
    .sms-hero-title { font-size: 2.5rem; }
    .sms-services-section { padding: 4rem 0; }
    .sms-services-title { font-size: 2.2rem; }
}
/* =========================================
   7. FAQ SECTION (CUSTOM FOR SMSONAY)
   ========================================= */
.money-faq-section {
    padding: 6rem 0;
    background-color: #fff;
    border-top: 1px solid #e2e8f0;
}

.faq-grid {
    display: flex;
    justify-content: center;
}

.faq-content-col {
    width: 100%;
    max-width: 800px; /* Okunabilirlik için genişlik sınırı */
}

/* Accordion Stilleri */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-item.active {
    border-color: var(--clr-primary);
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.08);
}

.faq-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    padding-right: 1rem;
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Plus Icon */
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--clr-primary);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.faq-icon::before { width: 2px; height: 16px; } 
.faq-icon::after { width: 16px; height: 2px; } 

/* Aktif Durumda Eksi (-) Olsun */
.faq-item.active .faq-icon::before {
    transform: translate(-50%, -50%) rotate(90deg); 
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #f8fafc;
}

.faq-body p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    padding-top: 1rem;
}

/* =========================================
   8. LATEST BLOG POSTS SECTION
   ========================================= */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-color: var(--clr-primary-light);
}

.blog-thumb-wrapper {
    position: relative;
    padding-top: 60%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.blog-thumb-wrapper img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb-wrapper img {
    transform: scale(1.05);
}

.blog-cat-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--clr-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 0.8rem 0;
    line-height: 1.4;
}

.blog-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-title a:hover {
    color: var(--clr-primary);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap 0.2s;
}

.read-more-link:hover {
    gap: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .faq-content-col {
        padding: 0;
    }
    .faq-question {
        font-size: 1rem;
    }
}