/* ── Hero ──────────────────────────────────────────────────── */
.pd-hero {
    background:
        radial-gradient(ellipse at top left,     rgb(13 143 208 / 18%) 0%, transparent 45%),
        radial-gradient(ellipse at top right,    rgb(217 111 13 / 20%) 0%, transparent 45%),
        radial-gradient(ellipse at bottom left,  rgb(11 101 147 / 12%) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgb(131 67 6 / 14%)   0%, transparent 40%),
        linear-gradient(135deg, var(--dark-bg-primary) 0%, var(--dark-bg-secondary) 30%, #1a2030 60%, var(--dark-bg-primary) 100%);
    padding: 80px 0 88px;
    position: relative; overflow: hidden;
}
.pd-hero::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(1px 1px at 12% 25%, rgba(13,159,232,.09), transparent),
        radial-gradient(1px 1px at 88% 22%, rgba(237,131,33,.08),  transparent),
        radial-gradient(1px 1px at 22% 75%, rgba(13,159,232,.06),  transparent),
        radial-gradient(1px 1px at 74% 78%, rgba(237,131,33,.09),  transparent);
    background-size: 480px 380px;
    animation: pdHeroFloat 22s ease-in-out infinite;
    pointer-events: none;
}
@keyframes pdHeroFloat {
    0%,100% { transform: translateX(0) translateY(0); }
    33%      { transform: translateX(-8px) translateY(-5px); }
    66%      { transform: translateX(6px) translateY(-9px); }
}
.pd-hero-content { position: relative; z-index: 2; 
/* 	max-width: 780px;  */
}

/* Breadcrumb */
.tg-breadcrumb {
    display: inline-flex; align-items: center; gap: 6px;
    margin-bottom: 24px; flex-wrap: wrap;
}
.tg-breadcrumb a { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.tg-breadcrumb a:hover { color: rgba(255,255,255,.85); }
.tg-breadcrumb .tg-bc-sep { color: rgba(255,255,255,.2); }
.tg-breadcrumb .tg-bc-current { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.6); }

.pd-hero-title {
    font-size: 3rem; font-weight: 700;
    color: #fff; line-height: 1.15;
    margin: 0 0 16px; letter-spacing: -.3px;
}
.pd-hero-tagline {
    font-size: 17px; color: rgba(255,255,255,.6);
    line-height: 1.65; margin: 0; 
/* 	max-width: 600px; */
}

/* ── Body wrapper ──────────────────────────────────────────── */
.pd-body {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px 80px;
}

/* ── Cover image ───────────────────────────────────────────── */
.pd-cover {
    width: 100%; border-radius: 16px;
    overflow: hidden; background: #e4e8ed;
    margin: 56px 0 64px;
}
.pd-cover img { width: 100%; display: block; height: auto; object-fit: cover; }

/* ── Shared section title ──────────────────────────────────── */
.pd-section-title {
    font-size: 1.35rem; font-weight: 700;
    color: var(--text-primary, #0f1419);
    margin: 0 0 20px; line-height: 1.3;
}

/* ── Overview 2-col ────────────────────────────────────────── */
.pd-overview {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 64px;
    margin-bottom: 72px;
    align-items: start;
}
.pd-about p {
    font-size: 16px; color: var(--text-secondary, #6c757d);
    line-height: 1.8; margin: 0 0 18px;
}
.pd-about p:last-child { margin-bottom: 0; }

/* Details table */
.pd-details-table { border-top: 1px solid #f0f2f5; }
.pd-detail-row {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f2f5;
}
.pd-detail-row-last { border-bottom: none; }
.pd-detail-label {
    font-size: 11.5px; font-weight: 700;
    color: var(--text-secondary, #6c757d);
    white-space: nowrap; flex-shrink: 0;
    text-transform: uppercase; letter-spacing: .4px;
    padding-top: 2px;
}
.pd-detail-val {
    font-size: 14px; font-weight: 500;
    color: var(--text-primary, #0f1419);
    text-align: right;
}
.pd-detail-link {
    color: #0d9fe8; text-decoration: none;
    font-size: 14px; font-weight: 500;
    display: inline-flex; align-items: center; gap: 5px;
    transition: color .2s;
}
.pd-detail-link:hover { color: #0b8fd4; }
.pd-detail-link i { font-size: 11px; }

/* Technology chips */
.pd-tech-chips {
    display: flex; flex-wrap: wrap;
    gap: 6px; justify-content: flex-end;
}
.pd-tech-chip {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600;
    padding: 4px 12px; border-radius: 100px;
    background: #0f1419; color: #fff;
    white-space: nowrap;
}
.pd-tech-chip i { font-size: 12px; }

/* ── Services Section — prominent ──────────────────────────── */
.pd-services-section {
    margin-bottom: 72px;
    padding: 48px;
    background: linear-gradient(135deg,
        rgba(13,159,232,.04) 0%,
        rgba(237,131,33,.03) 100%);
    border-radius: 16px;
    border: 1px solid rgba(13,159,232,.1);
}
.pd-services-desc {
    font-size: 15px; color: var(--text-secondary, #6c757d);
    margin: -8px 0 32px; line-height: 1.6;
}
.pd-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.pd-service-card {
    display: flex; align-items: center; gap: 14px;
    background: #fff; border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid #f0f2f5;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.pd-service-card:hover {
    border-color: #0d9fe8;
    box-shadow: 0 4px 16px rgba(13,159,232,.08);
}
.pd-service-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; flex-shrink: 0;
}
.pd-icon-blue   { background: rgba(13,159,232,.1);  color: #0d9fe8; }
.pd-icon-orange { background: rgba(237,131,33,.1); color: #ed8321; }
.pd-service-name {
    font-size: 14px; font-weight: 600;
    color: var(--text-primary, #0f1419);
    line-height: 1.3;
}

/* ── What we built ─────────────────────────────────────────── */
.pd-built { margin-bottom: 72px; }
.pd-built-header { margin-bottom: 32px; }
.pd-built-desc {
    font-size: 16px; color: var(--text-secondary, #6c757d);
    line-height: 1.7; margin: 0; 
}
.pd-screenshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.pd-screenshot-wide { grid-column: 1 / -1; }
.pd-screenshot {
    border-radius: 12px; overflow: hidden;
    background: #e4e8ed;
}
.pd-screenshot img {
    width: 100%; display: block;
    height: auto; object-fit: cover;
    transition: transform .4s ease;
}
.pd-screenshot:hover img { transform: scale(1.02); }
.pd-screenshot-cap {
    display: block; font-size: 12px;
    color: #adb5bd; font-weight: 500;
    padding: 8px;
}

/* ── Challenge & Solution ──────────────────────────────────── */
.pd-cs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 72px;
    padding: 48px;
    background: #f8f9fa;
    border-radius: 16px;
}
.pd-cs-label {
    display: block; font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: #0d9fe8; margin-bottom: 12px;
    font-family: 'IBM Plex Mono', monospace;
}
.pd-cs-label-orange { color: #ed8321; }
.pd-cs-title {
    font-size: 1.05rem; font-weight: 700;
    color: var(--text-primary, #0f1419);
    margin: 0 0 14px; line-height: 1.4;
}
.pd-challenge p,
.pd-solution p {
    font-size: 15px; color: var(--text-secondary, #6c757d);
    line-height: 1.75; margin: 0;
}

/* ── Results ───────────────────────────────────────────────── */
.pd-results { margin-bottom: 72px; }
.pd-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid #e9ecef;
    border-radius: 14px; overflow: hidden;
    margin-top: 28px;
}
.pd-result-item {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 36px 24px; text-align: center;
    border-right: 1px solid #e9ecef;
}
.pd-result-item:last-child { border-right: none; }
.pd-result-num {
    font-size: 2.2rem; font-weight: 700;
    color: #0d9fe8; line-height: 1; margin-bottom: 8px;
}
.pd-result-plus { font-size: 1.4rem; }
.pd-result-label {
    font-size: 12.5px; font-weight: 500;
    color: var(--text-secondary, #6c757d);
    line-height: 1.4;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .pd-body { padding: 0 24px 80px; }
    .pd-overview { grid-template-columns: 1fr; gap: 48px; }
    .pd-tech-chips { justify-content: flex-end; }
    .pd-detail-val { text-align: left; }
    .pd-services-section { padding: 36px; }
}
@media (max-width: 768px) {
    .pd-hero-title   { font-size: 2.2rem; }
    .pd-hero-tagline { font-size: 15px; }
    .pd-services-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-cs { grid-template-columns: 1fr; gap: 32px; padding: 28px 24px; }
    .pd-results-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-result-item:nth-child(2) { border-right: none; }
    .pd-result-item:nth-child(3),
    .pd-result-item:nth-child(4) { border-top: 1px solid #e9ecef; }
    .pd-screenshot-grid { grid-template-columns: 1fr; }
    .pd-screenshot-wide { grid-column: 1; }
    .pd-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .pd-hero { padding: 60px 0 68px; }
    .pd-hero-title { font-size: 1.9rem; }
    .pd-body { padding: 0 16px 60px; }
    .pd-cover { margin: 40px 0 48px; border-radius: 12px; }
    .pd-services-grid { grid-template-columns: 1fr; }
    .pd-services-section { padding: 24px 20px; }
	.pd-results-grid { grid-template-columns: repeat(1, 1fr); }
	.pd-result-item:nth-child(2) { border-top: 1px solid #e9ecef; }
	.pd-result-item{ border-right: 0; }
}
.pd-description br{
	margin-bottom:24px;
	border-bottom:1px solid #eee;
	padding-bottom:16px;
}
section.cta-section {
    background: linear-gradient(135deg, rgb(13 159 232 / 14%) 0%, rgb(237 131 33 / 13%) 100%);
}