/*
Theme Name: Astra Child Test
Template: astra
Version: 1.0.0
*/

.takipci-homepage {
    --tp-primary: #7c3aed;
    --tp-primary-dark: #5b21b6;
    --tp-blue: #2563eb;
    --tp-navy: #07111f;
    --tp-navy-2: #0d1830;
    --tp-text: #111827;
    --tp-muted: #64748b;
    --tp-border: #e5e7eb;
    --tp-bg: #f8fafc;
    --tp-white: #ffffff;

    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--tp-text);
    background: var(--tp-bg);
    line-height: 1.6;
    overflow: hidden;
}

.takipci-homepage *,
.takipci-homepage *::before,
.takipci-homepage *::after {
    box-sizing: border-box;
}

.takipci-homepage a {
    text-decoration: none;
}

.takipci-homepage p,
.takipci-homepage h1,
.takipci-homepage h2,
.takipci-homepage h3 {
    margin-top: 0;
}

.tp-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================
   HERO
========================= */
.tp-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(124,58,237,.24), transparent 30%),
        radial-gradient(circle at 20% 90%, rgba(37,99,235,.18), transparent 30%),
        linear-gradient(135deg, #050b15 0%, #0b1428 55%, #111b35 100%);
    color: #fff;
}

.tp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.tp-hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.tp-glow-one {
    right: -100px;
    top: -150px;
    background: rgba(124,58,237,.25);
}

.tp-glow-two {
    left: -180px;
    bottom: -220px;
    background: rgba(37,99,235,.18);
}

.tp-hero .tp-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
    padding: 90px 0;
}

.tp-hero-content {
    max-width: 650px;
}

.tp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
    margin-bottom: 24px;
}

.tp-live-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(34,197,94,.1);
}

.tp-hero h1 {
    font-size: clamp(3rem, 5vw, 5.1rem);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 850;
    color: #fff;
    margin-bottom: 25px;
}

.tp-hero h1 span {
    display: block;
    background: linear-gradient(90deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tp-hero-text {
    max-width: 580px;
    color: #aab6c9;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.tp-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 800;
    transition: .25s ease;
}

.tp-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    box-shadow: 0 14px 35px rgba(99,102,241,.28);
}

.tp-btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(99,102,241,.4);
}

.tp-btn-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.055);
}

.tp-btn-secondary:hover {
    color: #fff;
    background: rgba(255,255,255,.1);
    transform: translateY(-3px);
}

.tp-trust-row {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 45px;
}

.tp-trust-row div:not(.tp-trust-divider) {
    display: flex;
    flex-direction: column;
}

.tp-trust-row strong {
    font-size: 22px;
    color: #fff;
}

.tp-trust-row span {
    color: #75849b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .7px;
}

.tp-trust-divider {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,.12);
}

/* Dashboard */
.tp-hero-visual {
    display: flex;
    justify-content: flex-end;
}

.tp-dashboard-card {
    width: min(470px, 100%);
    padding: 25px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 25px;
    background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
    box-shadow: 0 35px 90px rgba(0,0,0,.35);
    backdrop-filter: blur(20px);
    transform: rotate(1deg);
}

.tp-dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.tp-small-label {
    display: block;
    color: #7f8ca1;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.tp-dashboard-top strong {
    font-size: 18px;
    color: #fff;
}

.tp-status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #86efac;
    font-size: 11px;
    font-weight: 700;
}

.tp-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
}

.tp-mini-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.tp-mini-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 13px 5px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 13px;
    background: rgba(0,0,0,.13);
    transition: .25s ease;
}

.tp-mini-platform:hover {
    transform: translateY(-4px);
    border-color: var(--platform-color);
}

.tp-mini-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #fff;
    background: var(--platform-color);
}

.tp-mini-icon i {
    font-size: 17px;
}

.tp-mini-platform > span {
    width: 100%;
    overflow: hidden;
    color: #aeb9c9;
    font-size: 8px;
    font-weight: 700;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp-dashboard-bottom {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.tp-dashboard-bottom span {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255,255,255,.045);
    color: #94a3b8;
    font-size: 10px;
    font-weight: 700;
}

/* =========================
   PLATFORM CARDS
========================= */
.tp-platforms {
    padding: 100px 0;
    background: #fff;
}

.tp-section-heading {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
}

.tp-section-heading h2 {
    color: #0f172a;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -1.4px;
    font-weight: 850;
    margin-bottom: 14px;
}

.tp-section-heading h2 span {
    color: #7c3aed;
}

.tp-platform-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.tp-platform-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 245px;
    padding: 23px;
    border: 1px solid #e7eaf0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(15,23,42,.035);
    overflow: hidden;
    transition: .3s ease;
}

.tp-platform-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--platform-color);
    opacity: .7;
}

.tp-platform-card:hover {
    transform: translateY(-7px);
    border-color: var(--platform-color);
    box-shadow: 0 20px 45px rgba(15,23,42,.09);
}

.tp-platform-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 15px;
    color: #fff;
    background: var(--platform-color);
}

.tp-platform-info h3 {
    margin: 4px 0 7px;
    color: #111827;
    font-size: 16px;
    font-weight: 800;
}

.tp-platform-info p {
    margin: 0;
    color: #788598;
    font-size: 11px;
}

.tp-platform-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    margin-left: auto;
    border-radius: 50%;
    color: var(--platform-color);
    background: #f5f6f8;
    transition: .25s ease;
}