/* ═══════════════════════════════════════════════════════
   HİZMET İÇ SAYFA — Ortak Stiller (sip- prefix)
   Space Grotesk font sistemi
═══════════════════════════════════════════════════════ */

/* ── HERO ── */
.sip-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.sip-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sip-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79,70,229,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,70,229,.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.sip-glow-1 {
    position: absolute;
    top: -200px; left: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, var(--sip-color1, rgba(79,70,229,.18)) 0%, transparent 70%);
    border-radius: 50%;
    animation: sipGlow 8s ease-in-out infinite alternate;
}

.sip-glow-2 {
    position: absolute;
    bottom: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--sip-color2, rgba(16,185,129,.14)) 0%, transparent 70%);
    border-radius: 50%;
    animation: sipGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes sipGlow {
    from { transform: scale(1) translate(0,0); }
    to   { transform: scale(1.2) translate(30px,30px); }
}

.sip-hero .container { position: relative; z-index: 1; }

/* Hero Badge */
.sip-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,70,229,.12);
    border: 1px solid rgba(79,70,229,.28);
    border-radius: 50px;
    padding: 8px 20px;
    color: #818CF8;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 22px;
    font-family: 'Space Grotesk', sans-serif;
}

.sip-hero-badge.google { background: rgba(66,133,244,.12); border-color: rgba(66,133,244,.28); color: #4285F4; }
.sip-hero-badge.green  { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.28); color: #10B981; }
.sip-hero-badge.orange { background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.28); color: #F59E0B; }
.sip-hero-badge.red    { background: rgba(239,68,68,.12);  border-color: rgba(239,68,68,.28);  color: #EF4444; }
.sip-hero-badge.purple { background: rgba(139,92,246,.12); border-color: rgba(139,92,246,.28); color: #8B5CF6; }

/* Hero Title */
.sip-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.sip-gradient {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sip-gradient-google { background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC04 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sip-gradient-green  { background: linear-gradient(135deg, #10B981 0%, #06B6D4 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sip-gradient-orange { background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sip-gradient-red    { background: linear-gradient(135deg, #EF4444 0%, #EC4899 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sip-gradient-purple { background: linear-gradient(135deg, #8B5CF6 0%, #4F46E5 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.sip-hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,.72);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 560px;
}

/* Hero Stats */
.sip-hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.sip-stat { text-align: center; }

.sip-stat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4F46E5, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.sip-stat-lbl {
    display: block;
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-family: 'Space Grotesk', sans-serif;
}

.sip-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

/* Hero Buttons */
.sip-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

.sip-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #4F46E5, #10B981);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 8px 25px rgba(79,70,229,.4);
    font-family: 'Space Grotesk', sans-serif;
    font-size: .95rem;
}

.sip-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(79,70,229,.55); color: #fff; }

.sip-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .95rem;
}

.sip-btn-secondary:hover { background: rgba(255,255,255,.15); transform: translateY(-3px); color: #fff; }

/* Breadcrumb */
.sip-breadcrumb .breadcrumb { background: transparent; padding: 0; margin: 0; }
.sip-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.5); text-decoration: none; font-family: 'Space Grotesk', sans-serif; }
.sip-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.35); font-family: 'Space Grotesk', sans-serif; }
.sip-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.25); }

/* Scroll hint */
.sip-scroll-hint {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,.35);
    font-size: .72rem;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.sip-scroll-mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.2); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.sip-scroll-wheel { width: 4px; height: 8px; background: rgba(255,255,255,.4); border-radius: 2px; animation: sipScroll 2s ease-in-out infinite; }
@keyframes sipScroll { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

/* ── SECTION COMMONS ── */
.sip-section { padding: 100px 0; position: relative; }
.sip-section-sm { padding: 60px 0; }

.sip-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,70,229,.1);
    border: 1px solid rgba(79,70,229,.22);
    border-radius: 50px;
    padding: 7px 18px;
    color: #818CF8;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 14px;
    font-family: 'Space Grotesk', sans-serif;
}

.sip-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -.5px;
}

.sip-section-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── WHY CARDS ── */
.sip-why-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 32px 26px;
    height: 100%;
    transition: all .35s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.sip-why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79,70,229,.05), transparent);
    opacity: 0;
    transition: opacity .35s ease;
}

.sip-why-card:hover { transform: translateY(-10px); border-color: rgba(79,70,229,.35); box-shadow: 0 20px 50px rgba(79,70,229,.18); }
.sip-why-card:hover::before { opacity: 1; }

.sip-why-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.sip-why-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.sip-why-card p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .88rem;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin: 0;
}

.sip-why-tag {
    display: inline-block;
    margin-top: 14px;
    padding: 4px 14px;
    background: rgba(79,70,229,.12);
    border: 1px solid rgba(79,70,229,.22);
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600;
    color: #818CF8;
    font-family: 'Space Grotesk', sans-serif;
}

/* ── SERVICE TYPE CARDS ── */
.sip-type-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 30px 24px;
    height: 100%;
    transition: all .35s ease;
    backdrop-filter: blur(10px);
}

.sip-type-card:hover { transform: translateY(-8px); border-color: rgba(79,70,229,.3); box-shadow: 0 20px 50px rgba(0,0,0,.25); }

.sip-type-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #4F46E5, #10B981);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(79,70,229,.3);
}

.sip-type-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.sip-type-card p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .87rem;
    color: rgba(255,255,255,.62);
    line-height: 1.65;
    margin-bottom: 16px;
}

.sip-type-list { list-style: none; padding: 0; margin: 0; }
.sip-type-list li {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .84rem;
    color: rgba(255,255,255,.72);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.sip-type-list li:last-child { border-bottom: none; }
.sip-type-list li i { color: #10B981; font-size: .72rem; flex-shrink: 0; }

/* ── PROCESS ── */
.sip-process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 60px;
}

.sip-process-step {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    text-align: center;
    padding: 0 16px;
}

.sip-process-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(79,70,229,.25), rgba(16,185,129,.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.sip-process-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, #4F46E5, #10B981);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin: 0 auto 18px;
    box-shadow: 0 10px 30px rgba(79,70,229,.35);
    transition: transform .3s ease;
}

.sip-process-step:hover .sip-process-icon { transform: scale(1.1) rotate(5deg); }

.sip-process-step h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.sip-process-step p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
}

.sip-process-line {
    flex: 0 0 50px;
    height: 2px;
    background: linear-gradient(90deg, #4F46E5, #10B981);
    margin-top: 100px;
    opacity: .3;
}

/* ── RESULTS ── */
.sip-results-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.sip-results-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79,70,229,.07) 0%, rgba(16,185,129,.07) 100%);
}

.sip-results-section .container { position: relative; z-index: 1; }

.sip-result-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 36px 22px;
    text-align: center;
    transition: all .35s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.sip-result-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4F46E5, #10B981, #06B6D4);
}

.sip-result-card:hover { transform: translateY(-10px); border-color: rgba(79,70,229,.3); box-shadow: 0 25px 60px rgba(79,70,229,.18); }

.sip-result-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(79,70,229,.15), rgba(16,185,129,.15));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: #4F46E5;
    margin: 0 auto 18px;
}

.sip-result-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4F46E5, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.sip-result-unit {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    display: inline-block;
    vertical-align: top;
    margin-top: 8px;
}

.sip-result-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin: 10px 0 6px;
}

.sip-result-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
}

/* ── CTA ── */
.sip-cta-section { padding: 80px 0 100px; }

.sip-cta-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(79,70,229,.2);
    border-radius: 26px;
    padding: 56px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.sip-cta-glow-1 { position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(79,70,229,.14) 0%, transparent 70%); border-radius: 50%; }
.sip-cta-glow-2 { position: absolute; bottom: -100px; right: -100px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(16,185,129,.1) 0%, transparent 70%); border-radius: 50%; }
.sip-cta-card .row { position: relative; z-index: 1; }

.sip-cta-badge {
    display: inline-flex; align-items: center;
    background: rgba(79,70,229,.12);
    border: 1px solid rgba(79,70,229,.25);
    border-radius: 50px;
    padding: 6px 16px;
    color: #818CF8;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 14px;
    font-family: 'Space Grotesk', sans-serif;
}

.sip-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -.5px;
}

.sip-cta-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .93rem;
    color: rgba(255,255,255,.68);
    line-height: 1.75;
    margin-bottom: 22px;
}

.sip-cta-features { display: flex; gap: 18px; flex-wrap: wrap; }
.sip-cta-features span {
    display: flex; align-items: center; gap: 7px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .83rem;
    color: rgba(255,255,255,.78);
    font-weight: 500;
}
.sip-cta-features span i { color: #10B981; }

/* CTA Form */
.sip-cta-form { }

.sip-form-input {
    width: 100%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 13px 18px;
    color: #fff;
    font-size: .9rem;
    transition: all .3s ease;
    outline: none;
    font-family: 'Space Grotesk', sans-serif;
}

.sip-form-input::placeholder { color: rgba(255,255,255,.32); }
.sip-form-input:focus { border-color: rgba(79,70,229,.5); background: rgba(255,255,255,.1); box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
.sip-form-input option { background: #1a1a2e; color: #fff; }

.sip-cta-submit {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #4F46E5, #10B981);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 8px 25px rgba(79,70,229,.4);
}

.sip-cta-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(79,70,229,.55); }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .sip-hero { padding: 100px 0 60px; }
    .sip-process-line { display: none; }
    .sip-process-timeline { gap: 28px; }
    .sip-cta-card { padding: 38px 28px; }
}

@media (max-width: 767px) {
    .sip-hero-title { font-size: 2.2rem; }
    .sip-hero-stats { gap: 16px; }
    .sip-stat-num { font-size: 1.7rem; }
    .sip-process-step { min-width: 150px; }
    .sip-cta-card { padding: 28px 18px; }
    .sip-cta-features { flex-direction: column; gap: 10px; }
}
