/* ================================
   WRAPPER
================================ */
.pricing-wrapper {
    width: 100%;
    padding: clamp(60px, 6vw, 100px) 0;
}

body :not(.pricing-wrapper) pre,
body :not(.pricing-wrapper) pre code {
    border: none;
    background: none;
    padding: 10px;
    margin: 1em 0;
    overflow: auto;
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.pricing-heading {
    text-align: center;
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.pricing-subheading {
    text-align: center;
    color: #000;
    font-size: clamp(0.95rem, 1.2vw, 1.2rem);
    max-width: 680px;
    margin: 0 auto 50px auto;
    line-height: 1.5;
    font-weight: 600;
}

.pricing-subheading::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 18px auto 0;
}

/* ================================
   ACCORDION
================================ */

.dpa-section {
    margin-bottom: 40px;
    width: 100%;
}

.dpa-section-title {
    cursor: pointer;
    background: #fff;
	/*max-width: 1100px;*/
	max-width: 1400px;
    margin: 0 auto;
    padding: 20px 26px;
    border-radius: 14px;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
	transition: all .25s ease;
    position: relative;
}

.dpa-section-title:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.dpa-section-title.active {
    background: #f7f9fc;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.dpa-section-title::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dpa-section-title.active::after {
    transform: rotate(180deg);
}

/* ================================
   CONTENT
================================ */

.dpa-section-content {
	max-width: 1400px;
	margin: 0 auto;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height .45s ease, opacity .35s ease, transform .35s ease, padding .35s ease;
}

.dpa-section-content.active {
    max-height: none;
    overflow: visible;
    opacity: 1;
    transform: translateY(0);
    padding: 10px 0 50px;
}

/* ================================
   BADGE
================================ */

.dpa-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    pointer-events: none;
    background: linear-gradient(135deg,#ff7a18,#ff3d00);
    color: #fff;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* ================================
   GRID
================================ */

.dpa-grid {
    display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    justify-content: center;
    gap: clamp(20px,3vw,30px);
    align-items: stretch;
}

/* ================================
   CARD
================================ */

.dpa-card {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: clamp(16px,3vw,36px) clamp(16px,3vw,28px);
    transition: all .3s ease;
    box-shadow:
        0 10px 25px rgb(0 0 0 / 16%),
        0 25px 60px rgb(0 0 0 / 5%);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    position: relative;
}

.dpa-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.12),
        0 10px 20px rgba(0,0,0,0.05);
}

.hr_color {
    margin: 6px 0;
    opacity: .25;
}

.dpa-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 16px;
}
.dpa-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(0,115,255,0.15),
        rgba(0,175,240,0.15),
        rgba(255,255,255,0)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.dpa-card:hover::before {
    opacity: 1;
}

/* ================================
IMAGE
================================ */
.dpa-card .dpa-image {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dpa-card .dpa-image img {
    max-width: auto !important;
    max-height: 36px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    transition: transform .3s ease;
}

.dpa-card:hover .dpa-image img {
    transform: scale(1.05);
}
/* ================================
   PRICE
================================ */

.dpa-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: clamp(2rem,3vw,2.6rem);
    font-weight: 700;
    color: #00aff0;
    gap: 4px;
    /*margin-bottom: 18px;*/
	margin: 0;
}

.dpa-price {
    text-shadow: 0 2px 10px rgba(0,175,240,0.15);
}

.dpa-currency {
    font-size: .55em;
    margin-top: -0.25em;
    opacity: .85;
}

.dpa-price-value {
    font-family: "Inter","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: clamp(2rem,3vw,2.8rem);
    font-variant-numeric: tabular-nums;
}

.dpa-price-period {
    font-size: .9rem;
    opacity: .7;
    color: #777;
    margin-left: 4px;
    align-self: flex-end;
}

.dpa-price-period{
    font-size: .8rem;
    opacity: .7;
    margin-left: 4px;
}
/* ================================
   TITLE
================================ */

.dpa-package-name {
    font-size: clamp(1.05rem,1.5vw,1.4rem);
    font-weight: 600;
    /*margin-bottom: 14px;*/
	margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.dpa-package-name i {
    color: #0073ff;
}

/* ================================
   DESCRIPTION
================================ */

.dpa-description {
    text-align: center;
    font-size: clamp(.9rem,1.2vw,1.1rem);
    font-weight: 600;
    color: #666;
    line-height: 1.5;
    padding: 4px 0;
    /*margin: 0 0 20px;*/
	margin: 0;
}

/* ================================
   FEATURES
================================ */

.dpa-features {
    /*margin: clamp(10px,1.5vw,20px) 0 clamp(20px,3vw,30px);*/
	margin: 0;
    padding: clamp(6px,1vw,10px) clamp(10px,4vw,30px);
    display: flex;
    flex-direction: column;
    gap: clamp(6px,1vw,12px);
    flex-grow: 1;
    font-size: clamp(.85rem,.9vw,1rem);
}

.dpa-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 500;
    line-height: 1.45;
    color: #3a3a3a;
}

.dpa-feature i {
    color: #00c853;
    flex-shrink: 0;
}

/* ================================
   BUTTON
================================ */

.dpa-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.dpa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg,#0073ff,#0052cc);
    color: #fff;
    padding: 12px clamp(16px,3vw,24px);
    border-radius: 40px;
    font-weight: 600;
    transition: all .25s ease;
    letter-spacing: .4px;
    min-width: clamp(100px,35%,160px);
    cursor: pointer;
}

.dpa-btn,
.dpa-btn:hover,
.dpa-btn:focus,
.dpa-btn:active {
    text-decoration: none !important;
}

.dpa-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    color: #fff;
}

/* ================================
   LAPTOP OPTIMIZATION
================================ */
@media (min-width:1281px) and (max-width:1399px) {
    .dpa-card .dpa-image {
        height:56px; /* container */
    }
    .dpa-card .dpa-image img {
        max-height:36px !important; /* icon */
        width:auto !important;
        object-fit:contain;
    }
}
/* prevent scaling on large monitors */
@media (min-width:1400px){

    .dpa-card .dpa-image{
        height:56px;
    }

    .dpa-card .dpa-image img{
        height:36px;
    }

}
@media (max-width:1280px){

    .dpa-card{
        padding:22px 20px;
    }

    .dpa-card .dpa-image{
        height:60px;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .dpa-card .dpa-image img{
        max-height:40px;
        width:auto;
    }

    .dpa-price-value{
        font-size:2.2rem;
    }

    .dpa-features{
        gap:8px;
        padding:6px 16px;
    }

    .dpa-feature{
        font-size:.9rem;
    }

}

/* ================================
   TABLET
================================ */

@media (max-width:768px){

    .dpa-grid{
        gap: clamp(16px,4vw,24px);
    }

    .dpa-card .dpa-image{
        height:55px;
    }

    .dpa-card .dpa-image img{
        max-height:36px;
    }

}

/* ================================
   MOBILE
================================ */

@media (max-width:576px){

    .pricing-wrapper{
        padding:60px 20px;
    }

    .pricing-heading{
        font-size:1.6rem;
    }

    .dpa-package-name{
        font-size:1.05rem;
    }

    .dpa-description{
        font-size:.95rem;
    }

    .dpa-card .dpa-image{
        height:50px;
    }

    .dpa-card .dpa-image img{
        max-height:32px;
    }

}

/* ================================
   SMALL MOBILE
================================ */

@media (max-width:480px){

    .dpa-card{
        padding:16px;
    }

    .dpa-card .dpa-image{
        height:45px;
    }

    .dpa-card .dpa-image img{
        max-height:28px;
    }

}