@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-SemiBold.eot');
    src: url('../fonts/Geist-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Geist-SemiBold.woff2') format('woff2'),
        url('../fonts/Geist-SemiBold.woff') format('woff'),
        url('../fonts/Geist-SemiBold.ttf') format('truetype'),
        url('../fonts/Geist-SemiBold.svg#Geist-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-Light.eot');
    src: url('../fonts/Geist-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Geist-Light.woff2') format('woff2'),
        url('../fonts/Geist-Light.woff') format('woff'),
        url('../fonts/Geist-Light.ttf') format('truetype'),
        url('../fonts/Geist-Light.svg#Geist-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-Bold.eot');
    src: url('../fonts/Geist-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Geist-Bold.woff2') format('woff2'),
        url('../fonts/Geist-Bold.woff') format('woff'),
        url('../fonts/Geist-Bold.ttf') format('truetype'),
        url('../fonts/Geist-Bold.svg#Geist-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-Medium.eot');
    src: url('../fonts/Geist-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Geist-Medium.woff2') format('woff2'),
        url('../fonts/Geist-Medium.woff') format('woff'),
        url('../fonts/Geist-Medium.ttf') format('truetype'),
        url('../fonts/Geist-Medium.svg#Geist-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-Regular.eot');
    src: url('../fonts/Geist-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Geist-Regular.woff2') format('woff2'),
        url('../fonts/Geist-Regular.woff') format('woff'),
        url('../fonts/Geist-Regular.ttf') format('truetype'),
        url('../fonts/Geist-Regular.svg#Geist-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: "Geist", sans-serif;
}

a {
    color: #000;
    text-decoration: none;
}

.main-section {
    max-width: 1020px;
    padding-top: 140px;
    padding-bottom: 3rem;
}

.content {
    flex: 1;
    min-width: 300px;
}

/* Navigation */
.nav-link {
    background-color: transparent;
    /* border: 1px solid #6c757d; */
    color: #6c757d;
    font-weight: 500;
    border-radius: 20px !important;
}

.nav-link.active {
    background-color: #000 !important;
    color: #fff !important;
}

.nav-link:hover {
    border-color: #000 !important;
    color: #495057;
}

/* Plan Cards */
.plans-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.plan {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 1rem;
    padding: 1rem;
    width: calc(50% - 0.5rem);
    max-width: 150px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
    transition: 0.2s ease;
    cursor: pointer;
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.plan strong {
    margin-top: 0.5rem;
    background: #000;
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    display: inline-block;
}

.plan small {
    font-size: 0.85rem;
    color: #666;
}

/* Flag + Title */
.flag-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 600;
}

/* .flag-title img {
    width: 50px;
    height: 50px;
    border: 1px solid #6c757d;
    border-radius: 50%;
} */

.flag-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid #e3e3e3;
}

/* Steps Section */
.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f4e8ff;
    color: #7b2cbf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    margin: 0 auto 15px;
}

.step-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-description {
    color: #555;
}

.icon {
    font-size: 2rem;
}

.benefit {
    margin-bottom: 2rem;
}

.footer {
    background: #f8f9fa; /* soft gradient like image */
    padding: 15px 0;
    font-size: 14px;
    color: #555;
}
.footer a {
    color: #555;
    text-decoration: none;
    margin: 0 8px;
}
.footer a:hover {
    text-decoration: none;
    color: #1fa2f9;
}

.download-section {
    text-align: center;
    padding: 40px 20px 80px;
}
.download-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #002f6c;
}
.download-section .highlight {
    color: #0056b3;
}
.qr-code {
    margin-top: 20px;
    max-width: 150px;
}

.header button.navbar-toggler {
    font-size: 16px;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #FFFFFFE5;
    box-shadow: 0px 0px 24px 0px #0000001F;
    backdrop-filter: blur(8px);
    border-radius: 70px;
    padding: 14px 24px;
}
.header a {
    padding: 0px;
}
.header-top {
    padding: 24px 0px 0px;
}
.header ul li a {
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    color: var(--black) !important;
    padding: 0px !important;
}
.header ul li a:hover {
    color: #1fa2f9 !important;
}
.header ul li a.arrow-right:hover {
    color: #ffffff !important;
}
.header ul li {
    padding: 0px 11px !important;
}
.header ul li:last-child {
    padding-right: 0px !important;
}
.header .download-btn a {
    background: #000000;
    color: #ffffff !important;
    padding: 10px 45px 10px 20px !important;
    border-radius: 36px;
}
/* .header-top > div {
    width: 1020px;
} */
.header {
    background: #fff;
    box-shadow: 0px 0px 24px 0px #0000001F;
    backdrop-filter: unset;
    position: relative;
}
.header button:focus:not(:focus-visible) {
    box-shadow: unset;
}
 a.arrow-right {
    position: relative;
}
a.arrow-right:hover::after {
    margin-left: 13px;
    transition: 0.3s ease-in;
}
a.arrow-right:hover::before {
    width: 100%;
    transition: 0.3s ease-in;
}
a.arrow-right::before {
    content: "";
    position: absolute;
    width: 0%;
    background: rgba(255, 255, 255, 0.2);
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 36px;
    transition: 0.3s ease-in;
}
a.arrow-right::after {
    content: "";
    position: absolute;
    background: url(../images/arrow-right.svg);
    background-repeat: no-repeat;
    width: 12px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8px;
    transition: 0.3s ease-in;
}

.discount-badge {
    display: inline-block;
    background: #f8e5a1;
    color: #212529;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(255, 193, 7, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    min-width: 45px;
    text-align: center;
    line-height: 1;
    font-family: 'Geist', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}


@media only screen and (max-width: 1200px) {
    .header ul li a {
        font-size: 13px;
    }
    .header .download-btn a {
        padding: 10px 38px 10px 18px !important;
    }
    .header ul li {
        padding: 0px 8px !important;
    }
    .header a img {
        width: 165px;
    }
}

@media only screen and (max-width: 1199px) {
    .header {
        background: #fff;
        backdrop-filter: unset;
        box-shadow: unset;
        position: relative;
    }
    .navbar-content {
        position: absolute;
        top: 35px;
        background: #fff;
        box-shadow: rgba(0, 0, 0, 0.12) 0px -20px 24px 0px;
        width: 100%;
        left: 0;
        padding-top: 60px;
        padding-bottom: 10px;
        z-index: -1;
        border-bottom-left-radius: 35px;
        border-bottom-right-radius: 35px;
    }
    .header ul li {
        padding: 0px 0px 12px 0px !important;
    }
}

@media only screen and (max-width: 992px) {
    #image-section {
        display: none;
    }
}


@media (min-width: 1400px) {
    .container {
        max-width: 1150px;
    }
}

/* Supported Countries Modal Specific Styles */
body.supported-modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

body.supported-modal-open .fixed-top,
body.supported-modal-open .fixed-bottom,
body.supported-modal-open .is-fixed,
body.supported-modal-open .sticky-top {
    padding-right: 0 !important;
    margin-right: 0 !important;
}

body.supported-modal-open .promo-pill-wrapper,
body.supported-modal-open .promo-overlay,
body.supported-modal-open .promo-modal,
body.supported-modal-open .promo-sheet {
    display: none !important;
}

#countriesModal.modal {
    background: transparent !important; /* Let Bootstrap backdrop handle shading */
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9001 !important; /* Positioned above page content and header */
    justify-content: initial;
    align-items: initial;
}

/* Custom smooth transitions matching requested 160ms timing */
#countriesModal.modal.fade {
    transition: opacity 160ms ease !important;
}

#countriesModal.modal.fade .modal-dialog {
    transform: translateY(8px) scale(0.98) !important;
    transition: transform 160ms ease, opacity 160ms ease !important;
}

#countriesModal.modal.show .modal-dialog {
    transform: translateY(0) scale(1) !important;
}

#countriesModal.modal.show {
    display: block !important;
}

/* Override custom-style.css global .modal-content overrides */
#countriesModal .modal-dialog {
    max-width: 900px !important; /* Width desktop 850px-950px */
    width: 100% !important;
    margin: 1.75rem auto !important;
    z-index: 9002 !important;
}

@media (max-width: 767.98px) {
    #countriesModal .modal-dialog {
        max-width: none !important;
        width: calc(100% - 32px) !important;
        margin: 1rem auto !important;
    }
}

#countriesModal .modal-content {
    background-color: #ffffff !important;
    width: 100% !important;
    height: auto !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
    border-radius: 20px !important; /* 18px-24px rounded corners */
    padding: 0 !important; /* Reset padding to use standard Bootstrap structure */
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

#countriesModal .modal-header {
    border-bottom: 1px solid #f1f1f1 !important;
    padding: 1.5rem 2rem !important;
    position: sticky !important;
    top: 0 !important;
    background: #ffffff !important;
    z-index: 10 !important;
}

#countriesModal .modal-title {
    font-weight: 600 !important;
    font-size: 1.25rem !important;
    color: #111111 !important;
    margin: 0 !important;
}

#countriesModal .modal-body {
    padding: 2rem !important;
    overflow-y: auto !important;
}

#countriesModal .modal-footer {
    border-top: 1px solid #f1f1f1 !important;
    padding: 1rem 2rem !important;
    display: flex !important;
    justify-content: flex-end !important;
    background: #ffffff !important;
    position: sticky !important;
    bottom: 0 !important;
    z-index: 10 !important;
}

#countriesModal .btn-close {
    background-color: transparent !important;
    border: none !important;
    font-size: 1.25rem !important;
    opacity: 0.5 !important;
    transition: opacity 0.2s ease !important;
}

#countriesModal .btn-close:hover {
    opacity: 1 !important;
}

#countriesModal .btn-close:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Ensure backdrop has lower z-index than modal and is positioned above header */
body.supported-modal-open .modal-backdrop {
    z-index: 9000 !important;
}

/* ════════════════════════════════════════════════════════════════
   DESTINATION PAGE — REDESIGN (dp- namespace)
   ════════════════════════════════════════════════════════════════ */
.dp-page {
    background: #f5f6fa;
    color: #1a1a2e;
    padding-top: 96px; /* clear the fixed header */
}

.dp-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Breadcrumb ── */
.dp-breadcrumb {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    color: #888;
}
.dp-breadcrumb a { color: #888; text-decoration: none; }
.dp-breadcrumb a:hover { color: #e8174a; }
.dp-breadcrumb span { margin: 0 6px; }

/* ── Hero ── */
.dp-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 60%, #3a1a3a 100%);
    padding: 44px 0 0;
    position: relative;
    overflow: hidden;
}
.dp-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(232, 23, 74, 0.12);
    pointer-events: none;
}
.dp-hero::after {
    content: '';
    position: absolute;
    bottom: 30px; left: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.dp-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: end;
    position: relative;
    z-index: 1;
}
.dp-hero-left { padding-bottom: 36px; }

.dp-country-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.dp-flag-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.dp-flag-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dp-country-info h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 4px;
    /* Override global h1 gradient-text clip from custom-style.css */
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: #fff;
}
.dp-country-info .dp-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}
.dp-supported-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.dp-supported-btn:hover { background: #e8174a; border-color: #e8174a; }

.dp-trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.dp-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}
.dp-trust-item .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #e8174a;
}

.dp-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.dp-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(4px);
}
.dp-badge .badge-icon { font-size: 15px; }

.dp-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.70);
    max-width: 560px;
    line-height: 1.65;
    margin: 0;
}

/* Price card */
.dp-price-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px 20px 0 0;
    padding: 24px 28px;
    text-align: center;
    min-width: 200px;
    backdrop-filter: blur(8px);
    align-self: flex-end;
}
.dp-price-card .from-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.dp-price-card .price {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.dp-price-card .price-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}
.dp-price-card .discount-pill {
    display: inline-block;
    background: #e8174a;
    color: #fff;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
}

/* Data size filter tabs */
.dp-filter-bar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}
.dp-filter-inner {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    scrollbar-width: none;
    flex-wrap: nowrap;
}
.dp-filter-inner::-webkit-scrollbar { display: none; }
.dp-filter-inner .nav-item { flex: 1 1 0; max-width: 200px; display: flex; }

.dp-tab {
    flex: 1 1 0;
    min-width: 90px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    border: none;
    border-bottom: 3px solid transparent;
    background: none;
    cursor: pointer;
    font-family: "Geist", sans-serif;
    transition: all 0.2s;
    position: relative;
    color: #555;
}
.dp-tab:hover { background: #fef0f3; color: #e8174a; }
.dp-tab.active {
    border-bottom-color: #e8174a;
    background: #fff8f9;
    color: #e8174a;
}
.dp-tab .tab-size {
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 3px;
}
.dp-tab .tab-label {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.7;
    white-space: nowrap;
}
.dp-tab .tab-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #e8174a;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 50px;
}
.dp-filter-inner .nav-item + .nav-item .dp-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #eee;
}

/* ── Plans grid + info card ── */
.dp-plans-section { padding: 32px 0 48px; }
.dp-plans-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}
.dp-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}
.dp-plan-card {
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: block;
    text-decoration: none;
    color: inherit;
}
.dp-plan-card:hover {
    border-color: #e8174a;
    box-shadow: 0 4px 16px rgba(232, 23, 74, 0.1);
    transform: translateY(-2px);
}
.dp-plan-card .plan-type {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}
.dp-plan-card .plan-duration {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}
.dp-plan-card .plan-discount {
    display: inline-block;
    background: #fff8e1;
    color: #e6a817;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
}
.dp-plan-card .plan-price {
    display: block;
    background: #1a1a2e;
    color: #fff;
    border-radius: 8px;
    padding: 8px;
    font-size: 14px;
    font-weight: 700;
}

.dp-no-plans { font-size: 1.1rem; }

/* Side info card */
.dp-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 96px;
}
.dp-info-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a2e;
}
.dp-info-card .info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #555;
}
.dp-info-card .info-row .info-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}
.dp-info-card .info-row strong { color: #1a1a2e; }

.dp-legend {
    background: #f8f9ff;
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
}
.dp-legend h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.dp-legend .legend-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: #555;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}
.dp-legend .legend-row:last-child { border-bottom: none; }
.dp-legend .legend-row .type { font-weight: 600; color: #1a1a2e; }

/* ── Steps ── */
.dp-steps-section {
    background: #fff;
    padding: 56px 0;
    border-top: 1px solid #eee;
}
.dp-steps-section h2,
.dp-why-section h2 {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: currentColor;
}
.dp-steps-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 8px;
}
.dp-steps-section h2 span { color: #e8174a; }
.dp-steps-sub {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}
.dp-steps-sub span { color: #e8174a; font-weight: 700; }
.dp-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.dp-step-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #fde8ee;
    color: #e8174a;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.dp-step-item h4 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.dp-step-item p { font-size: 13px; color: #666; line-height: 1.5; margin: 0; }

/* ── Why section ── */
.dp-why-section {
    padding: 56px 0;
    background: #f5f6fa;
}
.dp-why-section h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.dp-why-section h2 span { color: #e8174a; }
.dp-why-sub {
    font-size: 14px;
    color: #888;
    margin-bottom: 32px;
}
.dp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.dp-why-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.dp-why-card .why-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #f6f7fb;
    margin-bottom: 12px;
    overflow: hidden;
}
.dp-why-card .why-icon img { width: 44px; height: 44px; object-fit: contain; }
.dp-why-card h4 { font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.dp-why-card p { font-size: 13px; color: #666; line-height: 1.5; margin: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .dp-page { padding-top: 84px; }
    .dp-hero-inner { grid-template-columns: 1fr; }
    .dp-price-card { display: none; }
    .dp-plans-layout { grid-template-columns: 1fr; }
    .dp-info-card { position: static; }
    /* Give the HOT badge its own row on top so it doesn't overlap narrow tab labels */
    .dp-tab { padding-top: 22px; }
    .dp-tab .tab-badge {
        top: 5px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .dp-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .dp-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .dp-steps-grid { grid-template-columns: 1fr 1fr; }
    .dp-why-grid { grid-template-columns: 1fr; }
    .dp-plans-grid { grid-template-columns: repeat(2, 1fr); }
}
