/* ROOT VARIABLES */
:root {
    --pk-red: #D4231D;
    --pk-red-hover: #ff4444;
    --pk-dark: #0a0a0a;
    --pk-gray: #cccccc;
}

/* RESET & BASE */
.pk-dyno-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pk-dyno-page {
    background: var(--pk-dark);
    color: var(--pk-gray);
    overflow-x: hidden;
}

/* HERO SECTION */
.pk-dyno-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.pk-dyno-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.pk-dyno-hero h1 {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
}

.pk-dyno-hero-subtitle {
    font-size: 2.2rem;
    color: var(--pk-red);
    font-weight: 700;
    margin-bottom: 30px;
}

.pk-dyno-hero-text {
    font-size: 1.6rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--pk-gray);
}

.pk-dyno-cta {
    display: inline-block;
    background: var(--pk-red);
    color: #fff;
    padding: 18px 50px;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pk-dyno-cta:hover {
    background: var(--pk-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 35, 29, 0.3);
}

/* SPECS SECTION */
.pk-dyno-specs-section {
    position: relative;
    padding: 80px 20px;
    background: #0f0f0f;
    overflow: hidden;
}

.pk-dyno-specs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--pk-dyno-specs-bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 1;
}

.pk-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.pk-dyno-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pk-dyno-spec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 35, 29, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.pk-dyno-spec-card:hover {
    border-color: var(--pk-red);
    transform: translateY(-5px);
}

.pk-dyno-spec-value {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: var(--pk-red);
    margin-bottom: 15px;
}

.pk-dyno-spec-label {
    display: block;
    font-size: 1.4rem;
    color: var(--pk-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* WHY SECTION */
.pk-dyno-why {
    padding: 100px 20px;
    background: var(--pk-dark);
}

.pk-section-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pk-section-subtitle {
    font-size: 1.8rem;
    color: var(--pk-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.pk-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.pk-why-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.pk-why-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.pk-why-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.pk-why-card h3 {
    font-size: 2rem;
    color: var(--pk-red);
    margin-bottom: 15px;
    font-weight: 700;
}

.pk-why-card p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--pk-gray);
}

/* PROCESS SECTION */
.pk-dyno-process {
    padding: 100px 20px;
    background: #0f0f0f;
}

.pk-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.pk-process-step {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    text-align: center;
}

.pk-process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--pk-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
}

.pk-process-step h3 {
    font-size: 2rem;
    color: #fff;
    margin: 30px 0 15px;
    font-weight: 700;
}

.pk-process-step p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--pk-gray);
}

/* CAROUSEL SECTION */
.pk-dyno-carousel-section {
    padding: 100px 20px;
    background: var(--pk-dark);
}

.pk-dyno-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

.pk-dyno-carousel-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pk-dyno-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.pk-dyno-carousel-slide {
    min-width: 100%;
    position: relative;
}

.pk-dyno-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.pk-dyno-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 35, 29, 0.9);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.pk-dyno-carousel-btn:hover {
    background: var(--pk-red-hover);
    transform: translateY(-50%) scale(1.1);
}

.pk-dyno-carousel-prev { left: -25px; }
.pk-dyno-carousel-next { right: -25px; }

.pk-dyno-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pk-dyno-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pk-dyno-carousel-dot.active {
    background: var(--pk-red);
    width: 30px;
    border-radius: 6px;
}

/* CTA SECTION */
.pk-dyno-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
}

.pk-dyno-cta-section h2 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
}

.pk-dyno-cta-section p {
    font-size: 1.8rem;
    color: var(--pk-gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .pk-dyno-hero h1 { font-size: 3.5rem; }
    .pk-dyno-hero-subtitle { font-size: 1.8rem; }
    .pk-dyno-hero-text { font-size: 1.4rem; }

    .pk-dyno-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pk-why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pk-process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .pk-dyno-hero h1 { font-size: 4rem; }
    .pk-dyno-hero-subtitle { font-size: 1.6rem; }
    .pk-dyno-specs-grid { grid-template-columns: 1fr; }
    .pk-section-title { font-size: 4rem; }

    .pk-dyno-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }

    .pk-dyno-carousel-prev { left: 10px; }
    .pk-dyno-carousel-next { right: 10px; }
}