/* TalentP.AI — Landing Pages (Hero, CTA, How, Why, Slider) v1.6.0 */

/* ===== HERO ===== */
.hero {
    background: var(--tp-gradient-hero);
    margin-top: var(--tp-navbar-h);
    padding: 48px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero__deco-tr {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(26,188,156,0.08);
    pointer-events: none;
}
.hero__deco-bl {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(26,188,156,0.05);
    pointer-events: none;
}
.hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    width: auto !important;
    max-width: none !important;
    padding-left: 200px !important;
    padding-right: 200px !important;
}
@media (max-width: 1200px) {
    .hero__inner { padding-left: 80px !important; padding-right: 80px !important; }
}
@media (max-width: 768px) {
    .hero__inner { padding-left: 20px !important; padding-right: 20px !important; }
}
.hero__badge {
    display: inline-block;
    background: rgba(26,188,156,0.15);
    color: var(--tp-primary);
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 17px;
    font-weight: 600;
    margin: 12px auto;
    letter-spacing: 0.5px;
}
.hero__title {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    letter-spacing: -0.5px;
    max-width: 800px;
    text-align: center;
}
.hero__title-accent { color: var(--tp-primary); }
.hero__subtitle {
    color: rgba(255,255,255,0.82);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 16px !important;
    font-style: italic;
}
.hero__message {
    color: var(--tp-border);
    font-size: 18px;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 40px !important;
    font-weight: 500;
    text-align: center;
}
.hero__message-accent {
    color: var(--tp-primary);
    font-weight: 700;
}
.hero__cta-row {
    max-width: 640px;
    margin: 0 auto !important;
}
.hero__cta-col { margin-bottom: 20px; }

/* ===== CTA CARDS ===== */
.cta-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--tp-radius-md);
    padding: 32px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    backdrop-filter: blur(10px);
}
.cta-card--b2c { border: 1px solid rgba(26,188,156,0.3); }
.cta-card--b2b { border: 1px solid rgba(52,152,219,0.3); }
.cta-card--b2c:hover {
    transform: translateY(-4px);
    border-color: var(--tp-primary) !important;
    box-shadow: 0 12px 40px rgba(26,188,156,0.2) !important;
}
.cta-card--b2b:hover {
    transform: translateY(-4px);
    border-color: var(--tp-blue) !important;
    box-shadow: 0 12px 40px rgba(52,152,219,0.2) !important;
}
.cta-card__icon { font-size: 36px; margin-bottom: 12px; }
.cta-card__label {
    color: var(--tp-text-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.cta-card__title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px !important;
}
.cta-card__desc {
    color: var(--tp-text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px !important;
}
.cta-btn {
    display: block;
    padding: 12px 28px;
    border-radius: var(--tp-radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}
.cta-btn--b2c { background: var(--tp-gradient); }
.cta-btn--b2b { background: var(--tp-gradient-b2b); }
.cta-btn:hover { color: #fff; text-decoration: none; }

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--tp-surface-2);
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}
.stats-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    text-align: center;
}
.stats-bar__sep {
    width: 1px;
    height: 32px;
    background: #eee;
}
.stats-bar__num {
    font-size: 26px;
    font-weight: 800;
    color: var(--tp-text);
}
.stats-bar__label {
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-text-muted);
}

/* ===== HOW IT WORKS ===== */
.how-section {
    padding: 80px 0;
    background: var(--tp-surface);
    text-align: center;
}
.how-section__badge {
    display: inline-block;
    background: rgba(26,188,156,0.1);
    color: var(--tp-primary-dk);
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.how-section__title {
    font-size: 30px;
    font-weight: 700;
    color: var(--tp-text);
    margin-bottom: 12px !important;
}
.how-section__desc {
    color: var(--tp-text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 50px !important;
}
.how-section__row {
    max-width: 960px;
    margin: 0 auto 40px !important;
}
.step-col { margin-bottom: 28px; }

/* Step Cards */
.step-row { display: flex; flex-wrap: wrap; align-items: stretch; }
.step-row > [class*="col-"] { display: flex; }
.step-card {
    width: 100%;
    background: var(--tp-surface-2);
    border-radius: var(--tp-radius-md);
    padding: 36px 28px;
    position: relative;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--tp-shadow-md);
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--tp-shadow-lg) !important;
}
.step-card__num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}
.step-card__num--01 { background: var(--tp-primary); }
.step-card__num--02 { background: var(--tp-blue); }
.step-card__num--03 { background: #9b59b6; }
.step-card__num--04 { background: #e67e22; }
.step-card__icon {
    font-size: 40px;
    margin-bottom: 16px;
    margin-top: 8px;
}
.step-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--tp-text);
    margin-bottom: 10px !important;
}
.step-card__text {
    font-size: 14px;
    color: var(--tp-text-muted);
    line-height: 1.7;
    margin: 0 !important;
}

/* ===== WHY TALENTP.AI ===== */
.why-section {
    padding: 80px 0;
    background: var(--tp-surface-2);
    text-align: center;
}
.why-section__badge {
    display: inline-block;
    background: rgba(52,152,219,0.1);
    color: var(--tp-blue-dk);
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.why-section__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--tp-text);
    margin-bottom: 16px !important;
}
.why-section__desc {
    color: var(--tp-text-muted);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto 50px !important;
}
.why-section__row {
    max-width: 960px;
    margin: 0 auto !important;
}
.why-col { margin-bottom: 24px; }

/* Why Cards */
.why-row { display: flex; flex-wrap: wrap; align-items: stretch; }
.why-row > [class*="col-"] { display: flex; }
.why-card {
    width: 100%;
    background: var(--tp-surface);
    border-radius: var(--tp-radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: background 0.3s;
}
.why-card:hover { background: var(--tp-dark) !important; }
.why-card:hover .why-title { color: #fff !important; }
.why-card:hover .why-desc { color: var(--tp-text-light) !important; }
.why-card__icon { font-size: 32px; margin-bottom: 12px; }
.why-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-text);
    margin-bottom: 8px !important;
    transition: color 0.3s;
}
.why-desc {
    font-size: 13px;
    color: var(--tp-text-muted);
    line-height: 1.6;
    margin: 0 !important;
    transition: color 0.3s;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--tp-dark), var(--tp-navy-2));
    padding: 60px 0;
    text-align: center;
}
.cta-banner__title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px !important;
}
.cta-banner__desc {
    color: var(--tp-text-light);
    font-size: 16px;
    margin-bottom: 28px !important;
}
.cta-banner__btn {
    display: inline-block;
    background: var(--tp-gradient);
    color: #fff;
    padding: 14px 36px;
    border-radius: var(--tp-radius-sm);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.cta-banner__btn:hover { color: #fff; text-decoration: none; }

/* ===== INFO PAGES (HowItWorks, Why, DemoRequest) ===== */
.info-page {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.info-page__hero {
    background: var(--tp-gradient-hero);
    padding: 60px 0 48px;
    text-align: center;
    margin-top: var(--tp-navbar-h);
    position: relative;
}
.info-page__badge {
    display: inline-block;
    background: rgba(26,188,156,0.15);
    color: var(--tp-primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.info-page__title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px !important;
}
.info-page__desc {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin: 0 !important;
}
.info-page__body {
    background: var(--tp-surface);
    padding: 60px 0;
    flex: 1;
}
.info-page__cta {
    text-align: center;
    margin-top: 48px;
}
.demo-page__form-wrap {
    max-width: 560px;
    margin: 0 auto;
    background: var(--tp-surface-2);
    border-radius: var(--tp-radius-lg);
    padding: 24px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.demo-page__submit-btn {
    display: block;
    width: 100%;
    background: var(--tp-gradient-b2b);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 8px;
    transition: opacity 0.2s;
}
.demo-page__submit-btn:hover { opacity: 0.9; }
.demo-page__submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== DEMO MODAL ===== */
.demo-modal__content {
    border-radius: var(--tp-radius-lg);
    border: none;
    box-shadow: var(--tp-shadow-xl);
}
.demo-modal__header {
    border-bottom: 1px solid #f0ebfa;
    padding: 24px 28px 16px;
    text-align: center;
}
.demo-modal__icon { font-size: 36px; margin-bottom: 8px; }
.demo-modal__title {
    font-weight: 700;
    color: var(--tp-text);
    font-size: 22px;
    margin: 0 !important;
}
.demo-modal__subtitle {
    color: var(--tp-text-muted);
    font-size: 13px;
    margin: 6px 0 0 !important;
}
.demo-modal__body { padding: 20px 28px; }
.demo-form__label {
    font-weight: 600;
    color: var(--tp-text);
    font-size: 12px;
    margin-bottom: 0;
    display: block;
    min-width: 90px;
    flex-shrink: 0;
}
.demo-form__input {
    border-radius: 8px !important;
    border-color: var(--tp-border) !important;
    flex: 1;
    min-width: 0;
}
/* Demo form — label-input yan yana */
.demo-page__form-wrap .form-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}
.demo-page__form-wrap .form-group .demo-textarea {
    align-self: flex-start;
}
.demo-modal__footer {
    border-top: 1px solid #f0ebfa;
    padding: 16px 28px 24px;
}
.demo-submit-btn {
    background: var(--tp-gradient-b2b);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}
.demo-message {
    display: none;
    margin-top: 14px;
    font-size: 13px;
}

/* After Claude Design */

/* ==========================================================================
   === Hero — Split Layout (tp-hero) ===
   Sol: Slider  |  Sağ: CTA kartları  |  Arka plan: fotoğraf + overlay
   ========================================================================== */
.tp-hero {
    flex: 1;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--tp-dark);
    display: flex;
    flex-direction: column;
    margin-top: var(--tp-navbar-h);
}

/* Arka plan fotoğrafı */
.tp-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
/* Fotoğraf yoksa veya yüklenene kadar gradient fallback */
.tp-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(22,33,62,0.7) 50%, rgba(15,52,96,0.6) 100%);
    z-index: 1;
}

/* Split grid: sol slider + sağ CTA — kenarlıklardan içeride, orantılı */
.tp-hero__split {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: var(--tp-space-6);
    margin: auto 0;
    padding: 16px 44px;
    box-sizing: border-box;
}

/* SOL — Slider alanı (kart görünümlü) */
.tp-hero__left {
    flex: 4;
    position: relative;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: rgba(15,20,40,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--tp-radius-lg);
    overflow: hidden;
}
.tp-hero__stage {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 1;
    min-height: 280px;
}

/* SAĞ — CTA kartları */
.tp-hero__right {
    flex: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 16px;
    z-index: 3;
}

/* === Hero CTA kartları (glassmorphism) === */
.tp-hero-cta {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--tp-radius-lg);
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform var(--tp-t-base) var(--tp-ease),
                box-shadow var(--tp-t-base) var(--tp-ease),
                border-color var(--tp-t-base) var(--tp-ease);
}
.tp-hero-cta--b2c {
    border: 1px solid rgba(26,188,156,0.25);
}
.tp-hero-cta--b2b {
    border: 1px solid rgba(52,152,219,0.25);
}
.tp-hero-cta--b2c:hover {
    transform: translateY(-3px);
    border-color: var(--tp-primary);
    box-shadow: 0 12px 40px rgba(26,188,156,0.2);
}
.tp-hero-cta--b2b:hover {
    transform: translateY(-3px);
    border-color: var(--tp-blue);
    box-shadow: 0 12px 40px rgba(52,152,219,0.2);
}

/* Kart üst alan: sol yazılar + sağ görsel yan yana */
.tp-hero-cta__top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}
.tp-hero-cta__text {
    flex: 1;
    min-width: 0;
    text-align: left;
}
.tp-hero-cta__label {
    display: block;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
}
.tp-hero-cta__title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}
.tp-hero-cta__desc {
    color: rgba(255,255,255,0.65);
    font-size: var(--tp-fs-xs);
    line-height: var(--tp-lh-snug);
}
.tp-hero-cta__img {
    width: 240px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.08);
}
.tp-hero-cta__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-hero-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px var(--tp-space-5);
    border-radius: var(--tp-radius-sm);
    font-size: var(--tp-fs-sm);
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    min-height: 40px;
    transition: opacity var(--tp-t-fast);
}
.tp-hero-cta__btn:hover { opacity: 0.9; text-decoration: none; color: #fff; }
.tp-hero-cta__btn--b2c { background: var(--tp-gradient); }
.tp-hero-cta__btn--b2b { background: var(--tp-gradient-b2b); }

/* === Tablet: stack layout === */
@media (max-width: 992px) {
    .tp-hero__split {
        flex-direction: column;
        align-items: stretch;
        padding: var(--tp-space-4) var(--tp-space-5);
        gap: var(--tp-space-3);
    }
    .tp-hero__left { width: 100%; min-height: 260px; }
    .tp-hero__right {
        width: 100%;
        flex-direction: row;
        gap: var(--tp-space-3);
    }
    .tp-hero-cta { flex: 1; }
    .tp-hero__stage { min-height: 220px; }
}
/* === Mobile: allow scroll === */
@media (max-width: 768px) {
    .tp-hero { overflow-y: auto; }
}
/* === Mobile: compact stack === */
@media (max-width: 576px) {
    .tp-hero__split {
        padding: var(--tp-space-3) var(--tp-space-3);
        gap: var(--tp-space-2);
        margin: auto 0;
    }
    .tp-hero__left { min-height: 220px; }
    .tp-hero__right { flex-direction: column; width: 100%; gap: var(--tp-space-2); }
    .tp-hero__stage { min-height: 200px; }
    .tp-hero-cta {
        padding: var(--tp-space-3) var(--tp-space-4);
    }
    .tp-hero-cta__label { font-size: 16px; }
    .tp-hero-cta__img { width: 120px; height: 80px; }
    .tp-hero-cta__top { gap: 10px; margin-bottom: 8px; }
    .tp-hero-cta__title { font-size: 13px; }
    .tp-hero-cta__desc { font-size: 11px; }
    .tp-hero-cta__btn {
        width: 100%;
        justify-content: center;
        padding: var(--tp-space-2) var(--tp-space-4);
        min-height: 36px;
        font-size: 13px;
    }
}

/* === Slider icerik — mobil font/padding uyumu === */
@media (max-width: 768px) {
    .sc { padding: 0 var(--tp-space-4); }
    .sc__title h1 { font-size: clamp(22px, 5.5vw, 36px); }
    .sc__italic p { font-size: clamp(14px, 3.5vw, 18px); }
    .sc__message .sc__lead { font-size: clamp(13px, 3.2vw, 16px); }
    .sc__message .sc__rest { font-size: clamp(16px, 4vw, 22px); }
    .sc__stats { gap: clamp(12px, 4vw, 24px); padding: 0 var(--tp-space-3); }
    .sc__statNum { font-size: clamp(20px, 5vw, 32px); }
    .sc__statLabel { font-size: 10px; }
    .sc__cta h2 { font-size: clamp(18px, 4.5vw, 28px); }
    .sc__cta p { font-size: clamp(12px, 3vw, 14px); }
    .vC__nav { bottom: var(--tp-space-3); }
    .vA__nav { left: var(--tp-space-4); right: var(--tp-space-4); bottom: var(--tp-space-4); }
    .vA__kicker { left: var(--tp-space-4); top: var(--tp-space-4); }
    .vB__left { padding: var(--tp-space-4); }
    .vB__counterNum { font-size: 56px; }
}
/* === Slider icerik — küçük mobil (≤576px) daha kompakt === */
@media (max-width: 576px) {
    .sc { padding: 0 var(--tp-space-3); }
    .sc__title h1 { font-size: clamp(20px, 5vw, 30px); }
    .sc__italic p { font-size: clamp(12px, 3vw, 15px); margin: 0.15em 0; }
    .sc__message .sc__lead { font-size: clamp(11px, 2.8vw, 14px); margin-bottom: 6px; }
    .sc__message .sc__rest { font-size: clamp(14px, 3.5vw, 18px); }
    .sc__stats { gap: clamp(10px, 3vw, 18px); padding: 0 var(--tp-space-2); }
    .sc__statNum { font-size: clamp(18px, 4.5vw, 26px); }
    .sc__statLabel { font-size: 9px; }
    .sc__cta h2 { font-size: clamp(16px, 4vw, 22px); }
    .sc__cta p { font-size: clamp(11px, 2.8vw, 13px); }
    .vC__nav { bottom: var(--tp-space-2); }
    .vC__pill { width: 24px; height: 4px; }
    .vC__glyph { font-size: clamp(60px, 16vw, 120px); }
}

.tp-hero__nojs {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 0 var(--tp-space-8);
    color: #fff;
}
.tp-hero__nojs h1 { color: #fff; }
.tp-hero__nojs em {
    font-style: normal;
    background: var(--tp-gradient-mixed);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === Slider — shared slide content (sc__*) === */
.sc {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 0 var(--tp-space-8);
    color: #fff;
    font-family: var(--tp-font-body);
    box-sizing: border-box;
}
.sc h1, .sc h2 { color: #fff !important; }

/* Title */
.sc__title h1 {
    margin: 0; font-weight: 800;
    letter-spacing: var(--tp-tracking-tight);
    line-height: 1.05;
    font-size: clamp(28px, 4vw, 48px);
}
.sc__title em {
    font-style: normal;
    background: var(--tp-gradient-mixed);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Italic problem */
.sc__italic p {
    color: rgba(255,255,255,0.82);
    font-size: clamp(15px, 1.8vw, 20px);
    font-style: italic; line-height: var(--tp-lh-snug);
    margin: 0.25em 0;
    opacity: 0; transform: translateY(10px);
}
.vC__slide.is-on .sc__italic p { animation: scUp 0.6s forwards; }

/* Message */
.sc__message .sc__lead { color: rgba(255,255,255,0.72); font-size: clamp(14px, 1.6vw, 18px); margin: 0 0 10px; font-weight: 500; }
.sc__message .sc__rest { color: #fff; font-size: clamp(17px, 2vw, 24px); margin: 0; font-weight: 700; line-height: 1.35; }
.sc__message .sc__rest span { color: var(--tp-primary); font-weight: 800; }

/* Stats */
.sc__stats { flex-direction: row; gap: clamp(16px, 2.5vw, 40px); flex-wrap: wrap; padding: 0 var(--tp-space-5); }
.sc__stat { text-align: center; opacity: 0; transform: translateY(14px) scale(0.92); }
.vC__slide.is-on .sc__stat { animation: scPop 0.55s cubic-bezier(.2,.9,.3,1.2) forwards; }
.sc__statNum {
    font-size: clamp(22px, 3vw, 38px); font-weight: 800;
    background: var(--tp-gradient-mixed);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: var(--tp-tracking-tight);
}
.sc__statLabel {
    font-size: clamp(12px, 1vw, 14px);
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: var(--tp-tracking-caps);
    margin-top: var(--tp-space-1);
    font-weight: 600;
}

/* CTA */
.sc__cta h2 { margin: 0 0 var(--tp-space-3); font-size: clamp(20px, 2.8vw, 32px); font-weight: 800; line-height: 1.15; letter-spacing: var(--tp-tracking-tight); }
.sc__cta p  { margin: 0; color: rgba(255,255,255,0.72); font-size: clamp(12px, 1vw, 15px); }

@keyframes scUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes scPop { to { opacity: 1; transform: translateY(0) scale(1); } }

/* === Slider Variant C — Gradient Burst === */
.vC {
    position: absolute; inset: 0; overflow: hidden;
    background: linear-gradient(135deg, var(--gA) 0%, var(--gB) 100%);
    transition: background 1.2s ease;
}

.vC__aurora { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; animation: vCPop 1.6s cubic-bezier(.2,.9,.3,1.2); }
.vC__aurora--1 { width: 500px; height: 500px; background: var(--gGlow); opacity: 0.35; top: -150px; left: -120px; }
.vC__aurora--2 { width: 400px; height: 400px; background: var(--gGlow); opacity: 0.22; bottom: -120px; right: -80px; }
@keyframes vCPop { from { opacity: 0; transform: scale(0.6); } to { opacity: 0.35; transform: scale(1); } }

.vC__grain { position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
             background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
             background-size: 3px 3px; }

.vC__glyph {
    position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
    font-size: clamp(120px, 20vw, 300px); font-weight: 900;
    color: var(--gGlow); opacity: 0.08; line-height: 0.8; pointer-events: none;
    font-family: Georgia, serif;
    animation: vCGlyph 0.8s cubic-bezier(.2,.9,.3,1.1);
}
@keyframes vCGlyph {
    from { opacity: 0; transform: translateY(-50%) scale(0.7) rotate(-10deg); }
    to   { opacity: 0.08; transform: translateY(-50%) scale(1) rotate(0); }
}

.vC__stack { position: absolute; inset: 0; }
.vC__slide { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
             opacity: 0; transform: scale(1.05); filter: blur(8px);
             transition: opacity 0.7s, transform 0.9s, filter 0.7s;
             pointer-events: none; }
.vC__slide.is-on { opacity: 1; transform: scale(1); filter: blur(0); pointer-events: auto; }

.vC__nav { position: absolute; bottom: var(--tp-space-8); left: 50%; transform: translateX(-50%); display: flex; gap: var(--tp-space-2); z-index: 3; }
.vC__pill {
    width: 36px; height: 6px; border: none; padding: 0;
    border-radius: 3px; background: rgba(255,255,255,0.15);
    cursor: pointer; overflow: hidden; position: relative;
}
.vC__pill.is-on { background: rgba(255,255,255,0.2); }
.vC__pillFill { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--gGlow); border-radius: 3px; }
.vC__pill.is-on .vC__pillFill { animation: vCFill 4.2s linear forwards; }
@keyframes vCFill { to { width: 100%; } }

@media (prefers-reduced-motion: reduce) {
    .vC__aurora, .vC__glyph, .vC__pillFill { animation: none !important; }
    .vC__slide { transition: none !important; }
}

@media (max-width: 768px) {
    .vC__glyph { font-size: clamp(80px, 20vw, 160px); }
}

@media (max-width: 768px) {
    .nav-center-badge { display: none; }
}

/* ==========================================================================
   === Hero Slider (tp-hero) ===
   Konteyner; içerik JS tarafından render edilir. 3 varyant: data-variant="A|B|C"
   ========================================================================== */
.tp-hero
{
    width: 100%;
    background: var(--tp-dark);
    overflow: hidden;
}

.tp-hero__stage
{
    position: relative;
    width: 100%;
    max-width: var(--tp-container-max);
    margin: 0 auto;
    min-height: 280px;
}

@media (max-width: 992px)
{
    .tp-hero__stage
    {
        min-height: 220px;
    }
}
@media (max-width: 576px)
{
    .tp-hero__stage
    {
        min-height: 180px;
    }
}

.tp-hero__nojs
{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 var(--tp-space-8);
    color: #fff;
    background: var(--tp-gradient-hero);
}

    .tp-hero__nojs h1
    {
        color: #fff;
    }

    .tp-hero__nojs em
    {
        font-style: normal;
        background: var(--tp-gradient-mixed);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* === Slider — shared slide content (sc__*) === */
.sc
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 var(--tp-space-6);
    color: #fff;
    font-family: var(--tp-font-body);
    box-sizing: border-box;
}

    .sc h1, .sc h2
    {
        color: #fff !important;
    }

/* Title */
.sc__title h1
{
    margin: 0;
    font-weight: 800;
    letter-spacing: var(--tp-tracking-tight);
    line-height: 1.05;
    font-size: clamp(32px, 4.8vw, 56px);
}

.sc__title em
{
    font-style: normal;
    background: var(--tp-gradient-mixed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Italic problem */
.sc__italic p
{
    color: rgba(255,255,255,0.82);
    font-size: clamp(15px, 1.8vw, 21px);
    font-style: italic;
    line-height: var(--tp-lh-snug);
    margin: 0.35em 0;
    opacity: 0;
    transform: translateY(10px);
}

.vA__slide--visible .sc__italic p,
.vB__panel.is-on .sc__italic p,
.vC__slide.is-on .sc__italic p
{
    animation: scUp 0.6s forwards;
}

/* Message */
.sc__message .sc__lead
{
    color: rgba(255,255,255,0.72);
    font-size: clamp(14px, 1.6vw, 19px);
    margin: 0 0 10px;
    font-weight: 500;
}

.sc__message .sc__rest
{
    color: #fff;
    font-size: clamp(18px, 2.1vw, 26px);
    margin: 0;
    font-weight: 700;
    line-height: 1.35;
}

    .sc__message .sc__rest span
    {
        color: var(--tp-primary);
        font-weight: 800;
    }

/* Stats */
.sc__stats
{
    flex-direction: row;
    gap: clamp(20px, 3vw, 56px);
    flex-wrap: wrap;
    padding: 0 var(--tp-space-5);
}

.sc__stat
{
    text-align: center;
    opacity: 0;
    transform: translateY(14px) scale(0.92);
}

.vA__slide--visible .sc__stat,
.vB__panel.is-on .sc__stat,
.vC__slide.is-on .sc__stat
{
    animation: scPop 0.55s cubic-bezier(.2,.9,.3,1.2) forwards;
}

.sc__statNum
{
    font-size: clamp(24px, 3.2vw, 42px);
    font-weight: 800;
    background: var(--tp-gradient-mixed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: var(--tp-tracking-tight);
}

.sc__statLabel
{
    font-size: clamp(12px, 1vw, 14px);
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: var(--tp-tracking-caps);
    margin-top: var(--tp-space-1);
    font-weight: 600;
}

/* CTA */
.sc__cta h2
{
    margin: 0 0 var(--tp-space-4);
    font-size: clamp(21px, 2.7vw, 35px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: var(--tp-tracking-tight);
}

.sc__cta p
{
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: clamp(12px, 1vw, 15px);
}

@keyframes scUp
{
    to
    {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scPop
{
    to
    {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* === Slider Variant A — Kinetic Type === */
.tp-hero[data-variant="A"] .tp-hero__stage
{
    background: var(--tp-gradient-hero);
}

.vA
{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.vA__grid
{
    position: absolute;
    inset: -2px;
    background-image: linear-gradient(rgba(52,152,219,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(52,152,219,0.08) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.vA__blob
{
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: vAFloat 14s ease-in-out infinite;
}

.vA__blob--1
{
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: rgba(26,188,156,0.22);
}

.vA__blob--2
{
    width: 360px;
    height: 360px;
    bottom: -100px;
    left: -60px;
    background: rgba(52,152,219,0.18);
    animation-delay: -5s;
}

.vA__blob--3
{
    width: 240px;
    height: 240px;
    top: 40%;
    left: 55%;
    background: rgba(155,89,182,0.14);
    animation-delay: -10s;
}

@keyframes vAFloat
{
    0%, 100%
    {
        transform: translate(0,0) scale(1);
    }

    33%
    {
        transform: translate(40px,-30px) scale(1.1);
    }

    66%
    {
        transform: translate(-30px,20px) scale(0.95);
    }
}

.vA__kicker
{
    position: absolute;
    top: var(--tp-space-6);
    left: var(--tp-space-10);
    z-index: 3;
    color: rgba(255,255,255,0.7);
    font-size: var(--tp-fs-micro);
    font-weight: 700;
    letter-spacing: var(--tp-tracking-caps);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: var(--tp-space-2);
}

.vA__kickerDot
{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tp-primary);
    animation: vAPulse 1.6s infinite;
}

@keyframes vAPulse
{
    0%
    {
        box-shadow: 0 0 0 0 rgba(26,188,156,0.7);
    }

    70%
    {
        box-shadow: 0 0 0 10px rgba(26,188,156,0);
    }

    100%
    {
        box-shadow: 0 0 0 0 rgba(26,188,156,0);
    }
}

.vA__track
{
    position: absolute;
    inset: 0;
    display: flex;
    width: 500%;
    transition: transform 0.85s cubic-bezier(.7,0,.2,1);
}

.vA__slide
{
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vA__nav
{
    position: absolute;
    bottom: var(--tp-space-6);
    left: var(--tp-space-10);
    right: var(--tp-space-10);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: var(--tp-space-5);
}

.vA__bar
{
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.12);
    border-radius: 2px;
    overflow: hidden;
}

.vA__barFill
{
    height: 100%;
    width: 100%;
    background: var(--tp-gradient-mixed);
    transform-origin: left;
    animation: vABar 4.2s linear forwards;
}

@keyframes vABar
{
    from
    {
        transform: scaleX(0);
    }

    to
    {
        transform: scaleX(1);
    }
}

.vA__dots
{
    display: flex;
    gap: var(--tp-space-1);
}

.vA__dot
{
    background: transparent;
    border: none;
    padding: var(--tp-space-2) var(--tp-space-3);
    color: rgba(255,255,255,0.4);
    font-size: var(--tp-fs-micro);
    font-weight: 700;
    letter-spacing: var(--tp-tracking-caps);
    cursor: pointer;
    font-family: inherit;
    transition: color var(--tp-t-base);
}

    .vA__dot.is-on
    {
        color: var(--tp-primary);
    }

/* === Slider Variant B — Split Stage === */
.tp-hero[data-variant="B"] .tp-hero__stage
{
    background: var(--tp-dark-2);
}

.vB
{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.vB__left
{
    width: 260px;
    flex-shrink: 0;
    padding: var(--tp-space-8) var(--tp-space-6);
    background: linear-gradient(180deg, var(--tp-navy), var(--tp-dark-2));
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

    .vB__left::before
    {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 2px;
        height: 40%;
        background: linear-gradient(180deg, var(--tp-primary), transparent);
    }

.vB__kicker
{
    font-size: 10px;
    font-weight: 700;
    letter-spacing: var(--tp-tracking-caps);
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.vB__counter
{
    display: flex;
    align-items: baseline;
    gap: var(--tp-space-2);
    color: #fff;
    margin: var(--tp-space-6) 0 var(--tp-space-2);
    font-weight: 800;
    letter-spacing: -2px;
}

.vB__counterNum
{
    font-size: 108px;
    line-height: 1;
    background: var(--tp-gradient-mixed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: vBSlideIn 0.6s cubic-bezier(.2,.9,.3,1.1);
}

.vB__counterTotal
{
    font-size: 24px;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    letter-spacing: 0;
}

@keyframes vBSlideIn
{
    from
    {
        opacity: 0;
        transform: translateY(-20px);
    }

    to
    {
        opacity: 1;
        transform: translateY(0);
    }
}

.vB__label
{
    color: var(--tp-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: auto;
}

.vB__progress
{
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: var(--tp-space-6);
}

.vB__seg
{
    height: 3px;
    border: none;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    transition: background var(--tp-t-slow);
}

    .vB__seg.is-on
    {
        background: rgba(26,188,156,0.5);
    }

    .vB__seg.is-cur
    {
        background: var(--tp-primary);
        box-shadow: 0 0 12px rgba(26,188,156,0.6);
    }

.vB__right
{
    flex: 1;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 70% 30%, rgba(26,188,156,0.08), transparent 50%), radial-gradient(ellipse at 30% 70%, rgba(52,152,219,0.08), transparent 50%);
}

.vB__panel
{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--tp-t-slow), transform 0.6s cubic-bezier(.2,.8,.3,1);
    pointer-events: none;
}

    .vB__panel.is-on
    {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

.vB__cornerTR, .vB__cornerBL
{
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
}

.vB__cornerTR
{
    top: var(--tp-space-5);
    right: var(--tp-space-5);
    border-top: 2px solid var(--tp-primary);
    border-right: 2px solid var(--tp-primary);
}

.vB__cornerBL
{
    bottom: var(--tp-space-5);
    left: var(--tp-space-5);
    border-bottom: 2px solid var(--tp-blue);
    border-left: 2px solid var(--tp-blue);
}

@media (max-width: 768px)
{
    .vB
    {
        flex-direction: column;
    }

    .vB__left
    {
        width: 100%;
        padding: var(--tp-space-5);
    }

    .vB__counterNum
    {
        font-size: 72px;
    }
}

/* === Slider Variant C — Gradient Burst === */
.vC
{
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gA) 0%, var(--gB) 100%);
    transition: background 1.2s ease;
}

.vC__aurora
{
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: vCPop 1.6s cubic-bezier(.2,.9,.3,1.2);
}

.vC__aurora--1
{
    width: 500px;
    height: 500px;
    background: var(--gGlow);
    opacity: 0.35;
    top: -150px;
    left: -120px;
}

.vC__aurora--2
{
    width: 400px;
    height: 400px;
    background: var(--gGlow);
    opacity: 0.22;
    bottom: -120px;
    right: -80px;
}

@keyframes vCPop
{
    from
    {
        opacity: 0;
        transform: scale(0.6);
    }

    to
    {
        opacity: 0.35;
        transform: scale(1);
    }
}

.vC__grain
{
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 3px 3px;
}

.vC__glyph
{
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(160px, 28vw, 400px);
    font-weight: 900;
    color: var(--gGlow);
    opacity: 0.08;
    line-height: 0.8;
    pointer-events: none;
    font-family: Georgia, serif;
    animation: vCGlyph 0.8s cubic-bezier(.2,.9,.3,1.1);
}

@keyframes vCGlyph
{
    from
    {
        opacity: 0;
        transform: translateY(-50%) scale(0.7) rotate(-10deg);
    }

    to
    {
        opacity: 0.08;
        transform: translateY(-50%) scale(1) rotate(0);
    }
}

.vC__stack
{
    position: absolute;
    inset: 0;
}

.vC__slide
{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.05);
    filter: blur(8px);
    transition: opacity 0.7s, transform 0.9s, filter 0.7s;
    pointer-events: none;
}

    .vC__slide.is-on
    {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
        pointer-events: auto;
    }

.vC__nav
{
    position: absolute;
    bottom: var(--tp-space-4);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--tp-space-2);
    z-index: 3;
}

.vC__pill
{
    width: 36px;
    height: 6px;
    border: none;
    padding: 0;
    border-radius: 3px;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

    .vC__pill.is-on
    {
        background: rgba(255,255,255,0.2);
    }

.vC__pillFill
{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--gGlow);
    border-radius: 3px;
}

.vC__pill.is-on .vC__pillFill
{
    animation: vCFill 4.2s linear forwards;
}

@keyframes vCFill
{
    to
    {
        width: 100%;
    }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce)
{
    .vA__blob, .vA__kickerDot,
    .vB__counterNum,
    .vC__aurora, .vC__glyph,
    .vA__barFill, .vC__pillFill
    {
        animation: none !important;
    }

    .vA__track, .vB__panel, .vC__slide
    {
        transition: none !important;
    }
}

/* Adım Kartları */
/* === 3-Step Cards (tp-step) === */
.tp-step
{
    background: var(--tp-surface-2);
    border: 1px solid var(--tp-border);
    border-radius: var(--tp-radius-lg);
    padding: var(--tp-space-8);
    height: 100%;
    transition: transform var(--tp-t-base) var(--tp-ease), box-shadow var(--tp-t-base) var(--tp-ease), border-color var(--tp-t-base) var(--tp-ease);
    position: relative;
    overflow: hidden;
}

    .tp-step:hover
    {
        transform: translateY(-4px);
        box-shadow: var(--tp-shadow-lg);
        border-color: transparent;
    }

.tp-step__num
{
    font-family: var(--tp-font-heading);
    font-size: 48px;
    font-weight: 800;
    background: var(--tp-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--tp-space-4);
    letter-spacing: var(--tp-tracking-tight);
}

.tp-step__title
{
    margin: 0 0 var(--tp-space-3);
    color: var(--tp-text);
}

.tp-step__body
{
    margin: 0;
    color: var(--tp-text-muted);
}

/* Accent for step 03 (ürün akışında purple) */
.tp-step[data-step="03"] .tp-step__num
{
    background: linear-gradient(135deg, var(--tp-accent), var(--tp-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* B2B variant (gerekirse grid içinde alternat) */
.tp-step--b2b .tp-step__num
{
    background: var(--tp-gradient-b2b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === CTA Cards (tp-cta) === */
.tp-cta
{
    padding: var(--tp-space-20) 0;
    background: var(--tp-surface);
}

.tp-cta__grid
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--tp-space-6);
}

@media (max-width: 768px)
{
    .tp-cta__grid
    {
        grid-template-columns: 1fr;
    }

    .tp-cta
    {
        padding: var(--tp-space-12) 0;
    }
}

.tp-cta__card
{
    position: relative;
    display: block;
    padding: var(--tp-space-10);
    border-radius: var(--tp-radius-lg);
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    transition: transform var(--tp-t-base) var(--tp-ease), box-shadow var(--tp-t-base) var(--tp-ease);
}

    .tp-cta__card::before
    {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 80% -20%, rgba(255,255,255,0.22), transparent 60%);
        z-index: -1;
    }

.tp-cta__card--b2c
{
    background: var(--tp-gradient);
    box-shadow: var(--tp-shadow-primary-lg);
}

.tp-cta__card--b2b
{
    background: var(--tp-gradient-b2b);
    box-shadow: var(--tp-shadow-blue);
}

.tp-cta__card:hover
{
    transform: translateY(-6px);
}

.tp-cta__card--b2c:hover
{
    box-shadow: 0 24px 60px rgba(26,188,156,0.35);
}

.tp-cta__card--b2b:hover
{
    box-shadow: 0 24px 60px rgba(52,152,219,0.35);
}

.tp-cta__title
{
    margin: var(--tp-space-2) 0 var(--tp-space-3);
    color: #fff;
}

.tp-cta__body
{
    margin: 0 0 var(--tp-space-8);
    color: rgba(255,255,255,0.88);
    max-width: 42ch;
}

.tp-cta__arrow
{
    position: absolute;
    right: var(--tp-space-8);
    bottom: var(--tp-space-8);
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    transition: transform var(--tp-t-base) var(--tp-ease), background var(--tp-t-base);
}

.tp-cta__card:hover .tp-cta__arrow
{
    transform: translateX(4px);
    background: rgba(255,255,255,0.32);
}

/* === How It Works — Split Layout (koyu tema) === */
.info-page__body--split {
    margin-top: var(--tp-navbar-h);
    padding: 40px 0;
    flex: 1;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--tp-dark) 0%, #2d2d4e 100%);
    position: relative;
}
.how-split {
    gap: 0;
}
.how-split__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: var(--tp-space-8);
}
.how-split__visual-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: var(--tp-space-3);
    letter-spacing: 0.5px;
    text-transform: none;
}
.how-split__img-placeholder {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4 / 3;
    border-radius: var(--tp-radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-split__img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.how-split__img-fallback {
    background: linear-gradient(135deg, rgba(26,188,156,0.12), rgba(52,152,219,0.12));
    position: relative;
}
.how-split__img-fallback::after {
    content: '🧠';
    font-size: 64px;
    opacity: 0.3;
}
.how-split__title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--tp-space-4) !important;
}
.how-split__cards {
    display: flex;
    flex-direction: column;
    gap: var(--tp-space-2);
    margin-bottom: var(--tp-space-4);
}
.how-split__cards .step-card {
    display: flex;
    align-items: center;
    gap: var(--tp-space-3);
    padding: var(--tp-space-3) var(--tp-space-5);
    text-align: left;
    position: relative;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
}
.how-split__cards .step-card:hover {
    transform: none;
    background: rgba(255,255,255,0.10);
    box-shadow: none !important;
}
.how-split__cards .step-card__num {
    position: static;
    transform: none;
    width: 30px;
    height: 30px;
    font-size: 12px;
    flex-shrink: 0;
}
.how-split__cards .step-card__icon {
    font-size: 26px;
    margin: 0;
    flex-shrink: 0;
}
.how-split__cards .step-card__title {
    margin-bottom: 4px !important;
    color: #fff;
}
.how-split__cards .step-card__text {
    margin: 0 !important;
    color: rgba(255,255,255,0.65);
}
.how-split__cta {
    margin-top: var(--tp-space-4);
}
@media (max-width: 768px) {
    .info-page__body--split { padding: 40px 0; overflow-y: auto; }
    .how-split__visual {
        padding-right: 0;
        margin-bottom: var(--tp-space-6);
    }
    .how-split__img-placeholder { max-width: 280px; }
    .how-split__visual-title { font-size: 18px; margin-bottom: var(--tp-space-2); }
    .how-split__title { font-size: 26px; text-align: center; }
    .how-split__cta { text-align: center; }
}

/* === Demo Request — Split Layout === */
.demo-split__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--tp-space-5);
    padding-right: var(--tp-space-8);
}
.demo-split__img-placeholder {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 4 / 3;
    border-radius: var(--tp-radius-lg);
    overflow: hidden;
    background: var(--tp-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.demo-split__img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.demo-split__img-fallback {
    background: linear-gradient(135deg, rgba(52,152,219,0.08), rgba(26,188,156,0.08));
    position: relative;
}
.demo-split__img-fallback::after {
    content: '🏢';
    font-size: 64px;
    opacity: 0.3;
}
.demo-split__text {
    max-width: 400px;
    text-align: center;
}
.demo-split__text p {
    color: var(--tp-text-muted);
    font-size: 15px;
    line-height: 1.7;
}
.demo-split__form-side .demo-page__form-wrap {
    max-width: 100%;
    margin-left: auto;
}
@media (max-width: 768px) {
    .demo-split__visual {
        padding-right: 0;
        margin-bottom: var(--tp-space-6);
    }
    .demo-split__img-placeholder { max-width: 280px; }
    .demo-page__form-wrap .form-group {
        flex-direction: column;
        align-items: stretch;
    }
    .demo-form__label { min-width: unset; }
}

/* === Social Proof (tp-proof) === */
.tp-proof
{
    padding: var(--tp-space-12) 0;
    background: var(--tp-surface-2);
}

.tp-proof__row
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 4vw, 64px);
}

.tp-proof__item
{
    font-family: var(--tp-font-heading);
    font-size: var(--tp-fs-h4);
    font-weight: 700;
    color: var(--tp-text-light);
    letter-spacing: var(--tp-tracking-wide);
    opacity: 0.7;
    transition: opacity var(--tp-t-base), color var(--tp-t-base);
}

    .tp-proof__item:hover
    {
        opacity: 1;
        color: var(--tp-text-muted);
    }

    .tp-proof__item img
    {
        max-height: 28px;
        filter: grayscale(1);
        opacity: 0.6;
    }
