/* ============================================
   Project Detail — Scroll-Driven Layout
   ============================================ */

/* ---- Scroll Stage ----
   Height formula: sticky area is 100vh, scroll runway above it.
   All animations finish at p≈0.77, so runway = 0.77 * (stageH - 100vh).
   We want just enough runway for animations to complete, nothing more.
   200vh gives p range of 0→1 over 100vh of scroll — tight and responsive. */
.pd-stage {
    position: relative;
    height: 200vh;
}

/* ---- Sticky frame — locks to viewport for the 400vh ---- */
.pd-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ---- Hero Text — z-index: 1 (lowest, behind everything) ---- */
.pd-hero-text {
    position: absolute;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
    will-change: transform, opacity;
    pointer-events: none;
    backface-visibility: hidden;
}

.pd-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(79, 143, 247, 0.1);
    border: 1px solid rgba(79, 143, 247, 0.25);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-blue-light);
    margin-bottom: 28px;
}

.pd-title {
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 16px;
    white-space: nowrap;
}

.pd-subtitle {
    font-size: clamp(13px, 1.4vw, 15px);
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto;
}

/* ---- Overlay — z-index: 10, sits above hero text, fades in to bury it ---- */
/*      JS drives its opacity from 0 → 1 as scroll advances                  */
.pd-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: var(--bg-primary);     /* site's dark background color */
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
}

/* ---- Phone — z-index: 20 (above overlay and hero) ---- */
.pd-phone-container {
    position: absolute;
    z-index: 20;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.pd-phone {
    width: 280px;
    height: 570px;
    background: #111118;
    border-radius: 44px;
    border: 3px solid #2a2a35;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 30px 90px rgba(0, 0, 0, 0.7),
        0 0 120px rgba(79, 143, 247, 0.1);
}

.pd-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: rgba(10, 10, 18, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.06);
}

.pd-phone-camera {
    width: 10px;
    height: 10px;
    background: #1a1a24;
    border-radius: 50%;
    border: 1px solid #2a2a35;
}

.pd-phone-screen {
    position: absolute;
    inset: 4px;
    border-radius: 40px;
    overflow: hidden;
    background: var(--bg-secondary);
    z-index: 1;
}

.pd-phone-screen-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.pd-phone-home-bar {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    z-index: 10;
}

/* ---- Cards — z-index: 20 (same level as phone, above overlay) ---- */
.pd-cards {
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 20;
}

/* Left cards: stretch to fill phone height, wider to reduce text wrap */
.pd-cards-left {
    left: calc(50% - 530px);
    width: 350px;
    height: 570px;
    gap: 6px;
}

/* Right cards: match phone height, distribute evenly */
.pd-cards-right {
    right: calc(50% - 440px);
    width: 210px;
    height: 570px;
    gap: 8px;
}

/* Individual card — glassmorphism */
.pd-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
    transition: background 0.3s ease, border-color 0.3s ease;
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    min-height: 0;
}

.pd-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.22);
}

/* Feature card internals */
.pd-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    flex-shrink: 0;
}

.pd-card-icon svg {
    width: 15px;
    height: 15px;
}

/* Each card icon gets a unique color */
.pd-card[data-idx="0"] .pd-card-icon { background: rgba(59,130,246,0.12); color: #3b82f6; }
.pd-card[data-idx="1"] .pd-card-icon { background: rgba(168,85,247,0.12); color: #a855f7; }
.pd-card[data-idx="2"] .pd-card-icon { background: rgba(34,197,94,0.12);  color: #22c55e; }
.pd-card[data-idx="3"] .pd-card-icon { background: rgba(236,72,153,0.12); color: #ec4899; }

.pd-card-title {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
    line-height: 1.3;
}

.pd-card-desc {
    font-size: 9.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Stat card internals */
.pd-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pd-stat-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.pd-stat-value {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ---- Bottom Section ---- */
.pd-bottom {
    text-align: center;
    padding: 80px 40px 120px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.pd-bottom.visible {
    opacity: 1;
    transform: translateY(0);
}

.pd-bottom-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
}

.pd-cta-btn {
    margin-bottom: 24px;
}

.pd-back-link {
    display: inline-block;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pd-back-link:hover {
    color: var(--accent-blue-light);
}

/* ============================================
   Accent Color Variations
   ============================================ */
body.project-accent-purple .pd-phone {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 120px rgba(168,85,247,0.15);
}
body.project-accent-green .pd-phone {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 120px rgba(34,197,94,0.15);
}
body.project-accent-cyan .pd-phone {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 120px rgba(34,211,238,0.15);
}
body.project-accent-red .pd-phone {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 120px rgba(239,68,68,0.15);
}
body.project-accent-blue .pd-phone {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 120px rgba(59,130,246,0.15);
}
body.project-accent-orange .pd-phone {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 120px rgba(234,88,12,0.15);
}

body.project-accent-purple .pd-stat-value { color: #a78bfa; }
body.project-accent-green .pd-stat-value  { color: #4ade80; }
body.project-accent-cyan .pd-stat-value   { color: #22d3ee; }
body.project-accent-red .pd-stat-value    { color: #f87171; }
body.project-accent-blue .pd-stat-value   { color: #60a5fa; }
body.project-accent-orange .pd-stat-value { color: #fb923c; }

/* Card bg = visible accent tint, border = bold accent, thicker */
body.project-accent-purple .pd-card { background: rgba(168,85,247,0.12); border: 1.5px solid rgba(168,85,247,0.45); }
body.project-accent-green .pd-card  { background: rgba(34,197,94,0.12);  border: 1.5px solid rgba(34,197,94,0.45); }
body.project-accent-cyan .pd-card   { background: rgba(34,211,238,0.12); border: 1.5px solid rgba(34,211,238,0.45); }
body.project-accent-red .pd-card    { background: rgba(239,68,68,0.12);  border: 1.5px solid rgba(239,68,68,0.45); }
body.project-accent-blue .pd-card   { background: rgba(59,130,246,0.12); border: 1.5px solid rgba(59,130,246,0.45); }
body.project-accent-orange .pd-card { background: rgba(234,88,12,0.12);  border: 1.5px solid rgba(234,88,12,0.45); }

body.project-accent-purple .pd-card:hover { background: rgba(168,85,247,0.18); border-color: rgba(168,85,247,0.60); }
body.project-accent-green .pd-card:hover  { background: rgba(34,197,94,0.18);  border-color: rgba(34,197,94,0.60); }
body.project-accent-cyan .pd-card:hover   { background: rgba(34,211,238,0.18); border-color: rgba(34,211,238,0.60); }
body.project-accent-red .pd-card:hover    { background: rgba(239,68,68,0.18);  border-color: rgba(239,68,68,0.60); }
body.project-accent-blue .pd-card:hover   { background: rgba(59,130,246,0.18); border-color: rgba(59,130,246,0.60); }
body.project-accent-orange .pd-card:hover { background: rgba(234,88,12,0.18);  border-color: rgba(234,88,12,0.60); }

body.project-accent-purple .pd-badge { background: rgba(168,85,247,0.1); border-color: rgba(168,85,247,0.25); color: #c4b5fd; }
body.project-accent-green .pd-badge  { background: rgba(34,197,94,0.1);  border-color: rgba(34,197,94,0.25);  color: #86efac; }
body.project-accent-cyan .pd-badge   { background: rgba(34,211,238,0.1); border-color: rgba(34,211,238,0.25); color: #67e8f9; }
body.project-accent-red .pd-badge    { background: rgba(239,68,68,0.1);  border-color: rgba(239,68,68,0.25);  color: #fca5a5; }
body.project-accent-blue .pd-badge   { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.25); color: #93c5fd; }
body.project-accent-orange .pd-badge { background: rgba(234,88,12,0.1);  border-color: rgba(234,88,12,0.25);  color: #fdba74; }

/* Accent rengine göre scan çizgisi ve glow rengi (sadece mobil) */
@media (max-width: 700px) {
    body.project-accent-purple .pd-phone-container::after { background: linear-gradient(90deg, transparent 0%, rgba(168,85,247,0) 10%, rgba(168,85,247,0.9) 40%, rgba(196,181,253,1) 50%, rgba(168,85,247,0.9) 60%, rgba(168,85,247,0) 90%, transparent 100%); box-shadow: 0 0 12px rgba(168,85,247,0.8), 0 0 24px rgba(168,85,247,0.4); }
    body.project-accent-green .pd-phone-container::after  { background: linear-gradient(90deg, transparent 0%, rgba(34,197,94,0) 10%, rgba(34,197,94,0.9) 40%, rgba(134,239,172,1) 50%, rgba(34,197,94,0.9) 60%, rgba(34,197,94,0) 90%, transparent 100%); box-shadow: 0 0 12px rgba(34,197,94,0.8), 0 0 24px rgba(34,197,94,0.4); }
    body.project-accent-cyan .pd-phone-container::after   { background: linear-gradient(90deg, transparent 0%, rgba(34,211,238,0) 10%, rgba(34,211,238,0.9) 40%, rgba(103,232,249,1) 50%, rgba(34,211,238,0.9) 60%, rgba(34,211,238,0) 90%, transparent 100%); box-shadow: 0 0 12px rgba(34,211,238,0.8), 0 0 24px rgba(34,211,238,0.4); }
    body.project-accent-red .pd-phone-container::after    { background: linear-gradient(90deg, transparent 0%, rgba(239,68,68,0) 10%, rgba(239,68,68,0.9) 40%, rgba(252,165,165,1) 50%, rgba(239,68,68,0.9) 60%, rgba(239,68,68,0) 90%, transparent 100%); box-shadow: 0 0 12px rgba(239,68,68,0.8), 0 0 24px rgba(239,68,68,0.4); }
    body.project-accent-blue .pd-phone-container::after   { background: linear-gradient(90deg, transparent 0%, rgba(59,130,246,0) 10%, rgba(59,130,246,0.9) 40%, rgba(147,197,253,1) 50%, rgba(59,130,246,0.9) 60%, rgba(59,130,246,0) 90%, transparent 100%); box-shadow: 0 0 12px rgba(59,130,246,0.8), 0 0 24px rgba(59,130,246,0.4); }
    body.project-accent-orange .pd-phone-container::after { background: linear-gradient(90deg, transparent 0%, rgba(234,88,12,0) 10%, rgba(234,88,12,0.9) 40%, rgba(253,186,116,1) 50%, rgba(234,88,12,0.9) 60%, rgba(234,88,12,0) 90%, transparent 100%); box-shadow: 0 0 12px rgba(234,88,12,0.8), 0 0 24px rgba(234,88,12,0.4); }

    body.project-accent-purple .pd-phone-container.mobile-visible .pd-phone { animation: phone-corner-glow-purple 1.2s ease 0s forwards; }
    body.project-accent-green .pd-phone-container.mobile-visible .pd-phone  { animation: phone-corner-glow-green 1.2s ease 0s forwards; }
    body.project-accent-cyan .pd-phone-container.mobile-visible .pd-phone   { animation: phone-corner-glow-cyan 1.2s ease 0s forwards; }
    body.project-accent-red .pd-phone-container.mobile-visible .pd-phone    { animation: phone-corner-glow-red 1.2s ease 0s forwards; }
    body.project-accent-orange .pd-phone-container.mobile-visible .pd-phone { animation: phone-corner-glow-orange 1.2s ease 0s forwards; }

    @keyframes phone-corner-glow-purple { 0% { box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 0px rgba(168,85,247,0); } 30% { box-shadow: 0 0 0 1px rgba(168,85,247,0.6), 0 30px 90px rgba(0,0,0,0.7), 0 0 40px rgba(168,85,247,0.5); } 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 120px rgba(168,85,247,0.15); } }
    @keyframes phone-corner-glow-green  { 0% { box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 0px rgba(34,197,94,0); } 30% { box-shadow: 0 0 0 1px rgba(34,197,94,0.6), 0 30px 90px rgba(0,0,0,0.7), 0 0 40px rgba(34,197,94,0.5); } 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 120px rgba(34,197,94,0.15); } }
    @keyframes phone-corner-glow-cyan   { 0% { box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 0px rgba(34,211,238,0); } 30% { box-shadow: 0 0 0 1px rgba(34,211,238,0.6), 0 30px 90px rgba(0,0,0,0.7), 0 0 40px rgba(34,211,238,0.5); } 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 120px rgba(34,211,238,0.15); } }
    @keyframes phone-corner-glow-red    { 0% { box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 0px rgba(239,68,68,0); } 30% { box-shadow: 0 0 0 1px rgba(239,68,68,0.6), 0 30px 90px rgba(0,0,0,0.7), 0 0 40px rgba(239,68,68,0.5); } 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 120px rgba(239,68,68,0.15); } }
    @keyframes phone-corner-glow-orange { 0% { box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 0px rgba(234,88,12,0); } 30% { box-shadow: 0 0 0 1px rgba(234,88,12,0.6), 0 30px 90px rgba(0,0,0,0.7), 0 0 40px rgba(234,88,12,0.5); } 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 120px rgba(234,88,12,0.15); } }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
    .pd-cards-left  { left: calc(50% - 440px); width: 290px; height: 510px; }
    .pd-cards-right { right: calc(50% - 370px); width: 175px; height: 510px; }
    .pd-phone       { width: 250px; height: 510px; border-radius: 40px; }
    .pd-phone-screen { border-radius: 36px; }
    .pd-stat-value  { font-size: 10.5px; }
    .pd-card-desc   { font-size: 9px; }
}

@media (max-width: 850px) {
    .pd-cards-left  { left: calc(50% - 370px); width: 240px; height: 450px; }
    .pd-cards-right { right: calc(50% - 310px); width: 160px; height: 450px; }
    .pd-phone       { width: 220px; height: 450px; border-radius: 36px; }
    .pd-phone-screen { border-radius: 32px; }
    .pd-card        { padding: 8px 10px; border-radius: 12px; }
    .pd-stat-value  { font-size: 10px; }
    .pd-card-title  { font-size: 10px; }
    .pd-card-desc   { font-size: 8px; }
    .pd-card-icon   { width: 26px; height: 26px; margin-bottom: 3px; }
    .pd-card-icon svg { width: 13px; height: 13px; }
}

@media (max-width: 700px) {
    html, body {
        overflow-x: hidden;
    }

    .pd-stage {
        height: auto;
        min-height: 100vh;
    }

    .pd-sticky {
        position: relative;
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 24px;
        padding: 90px 16px 40px;
    }

    .pd-hero-text {
        position: relative;
        padding: 0 12px;
        margin-bottom: 16px;
    }

    .pd-title {
        font-size: clamp(18px, 5vw, 26px);
        white-space: normal;
        line-height: 1.3;
    }

    .pd-subtitle {
        font-size: 13px;
        max-width: 100%;
    }

    .pd-overlay {
        display: none;
    }

    .pd-phone-container {
        position: relative;
        z-index: 20;
        opacity: 0;
        transform: translateY(50px) scale(0.88);
        transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
                    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .pd-phone-container.mobile-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    /* Teknolojik scan çizgisi — telefon reveal anında geçer */
    .pd-phone-container::after {
        content: '';
        position: absolute;
        left: -4px;
        right: -4px;
        top: -4px;
        height: 3px;
        background: linear-gradient(90deg,
            transparent 0%,
            rgba(79, 143, 247, 0.0) 10%,
            rgba(79, 143, 247, 0.9) 40%,
            rgba(34, 211, 238, 1.0) 50%,
            rgba(79, 143, 247, 0.9) 60%,
            rgba(79, 143, 247, 0.0) 90%,
            transparent 100%
        );
        border-radius: 2px;
        opacity: 0;
        z-index: 30;
        pointer-events: none;
        box-shadow: 0 0 12px rgba(34, 211, 238, 0.8), 0 0 24px rgba(79, 143, 247, 0.4);
    }

    .pd-phone-container.mobile-visible::after {
        animation: phone-scan 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
    }

    @keyframes phone-scan {
        0%   { top: -4px;    opacity: 0; }
        8%   { opacity: 1; }
        92%  { opacity: 1; }
        100% { top: calc(100% + 4px); opacity: 0; }
    }

    /* Köşe çerçeve efekti — scan ile birlikte parlıyor */
    .pd-phone-container.mobile-visible .pd-phone {
        animation: phone-corner-glow 1.2s ease 0s forwards;
    }

    @keyframes phone-corner-glow {
        0%   { box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 0px rgba(79,143,247,0); }
        30%  { box-shadow: 0 0 0 1px rgba(79,143,247,0.6),  0 30px 90px rgba(0,0,0,0.7), 0 0 40px rgba(79,143,247,0.4); }
        70%  { box-shadow: 0 0 0 1px rgba(79,143,247,0.4),  0 30px 90px rgba(0,0,0,0.7), 0 0 30px rgba(79,143,247,0.25); }
        100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px rgba(0,0,0,0.7), 0 0 120px rgba(79,143,247,0.1); }
    }

    .pd-phone {
        width: 180px;
        height: 370px;
        border-radius: 30px;
    }

    .pd-phone-screen {
        border-radius: 26px;
    }

    .pd-phone-notch {
        width: 70px;
        height: 20px;
        top: 8px;
    }

    .pd-phone-camera {
        width: 8px;
        height: 8px;
    }

    .pd-cards {
        position: relative;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        left: auto !important;
        right: auto !important;
        height: auto !important;
        gap: 10px;
    }

    .pd-cards-left,
    .pd-cards-right {
        width: 100%;
        left: auto;
        right: auto;
        height: auto;
    }

    .pd-card {
        flex: none;
        width: 100%;
        padding: 14px 16px;
        min-height: auto;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
                    transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .pd-card.mobile-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .pd-card-title {
        font-size: 13px;
    }

    .pd-card-desc {
        font-size: 11px;
        line-height: 1.5;
    }

    .pd-card-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 6px;
    }

    .pd-card-icon svg {
        width: 14px;
        height: 14px;
    }

    .pd-stat-label {
        font-size: 13px;
    }

    .pd-stat-value {
        font-size: 12px;
    }

    .pd-bottom {
        padding: 40px 20px 60px;
    }

    .pd-bottom-text {
        font-size: 15px;
    }
}
