:root {
    --primary-dark: #0f172a;
    --primary-coral: #ef4444;
    --primary-green: #22c55e;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
}

.dpt-wrapper * {
    box-sizing: border-box;
}

.dpt-wrapper {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

/* Toggle Switch */
.dpt-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    gap: 16px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #94a3b8;
}

.dpt-toggle-label.active {
    color: var(--text-dark);
}

.dpt-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    margin: 0;
}

.dpt-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.dpt-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-coral);
    transition: .3s;
    border-radius: 34px;
}

.dpt-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.dpt-switch input:checked+.dpt-slider:before {
    transform: translateX(20px);
}

.dpt-save-badge {
    color: var(--primary-green);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Pricing Grid */
.dpt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Card Styles */
.dpt-pricing-card {
    background: #fff;
    border-radius: 40px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

/* Highlighted Card */
.dpt-pricing-card.highlighted {
    padding: 80px 40px;
    border: 1.5px solid var(--primary-coral);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 10;
    background: #fff;
}

.dpt-pricing-card.highlighted::before {
    content: "";
    position: absolute;
    inset: -15px;
    border: 1.5px solid var(--primary-coral);
    border-radius: 54px;
    background-color: #fef2f2;
    pointer-events: none;
    z-index: -1;
}

/* Highlighted Card Badge */
.dpt-badge-recommended {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-coral);
    color: #fff;
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
    text-align: center;
    line-height: 1.2;
    z-index: 20;
}

/* Card Header */
.dpt-card-header {
    margin-bottom: 40px;
}

.dpt-plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.dpt-price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.dpt-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #94a3b8;
    margin-right: 4px;
    align-self: flex-start;
    margin-top: 10px;
}

.dpt-price {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -0.05em;
    transition: opacity 0.15s ease-in-out;
}

.dpt-custom-price {
    font-size: 3.5rem;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.dpt-period {
    color: #94a3b8;
    font-weight: 600;
    margin-left: 8px;
    font-size: 1.1rem;
}

.dpt-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Feature List */
.dpt-features-list {
    list-style: none;
    flex: 1;
    margin: 0;
    padding: 0;
    margin-bottom: 50px;
}

.dpt-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 0.9rem;
    color: #334155;
    font-weight: 600;
}

.dpt-features-list li.disabled {
    color: #cbd5e1;
    opacity: 0.4;
}

.dpt-icon {
    width: 20px;
    height: 20px;
    margin-right: 14px;
    flex-shrink: 0;
}

.dpt-icon-check {
    color: var(--primary-green);
}

.dpt-icon-phone {
    color: var(--primary-coral);
}

.dpt-icon-cross {
    color: #e2e8f0;
}

/* Button */
.dpt-btn-signup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dpt-btn-dark {
    background-color: var(--primary-dark);
    color: #fff;
}

.dpt-btn-dark:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.2);
}

.dpt-btn-red {
    background-color: var(--primary-coral);
    color: #fff;
}

.dpt-btn-red:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.3);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .dpt-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 60px;
    }

    .dpt-pricing-card.highlighted {
        order: -1;
        margin-left:10px;
        margin-right:10px;
    }
}
