.ds-pricing-section {
    padding: 15px 20px;
    background: #f7fcff;
}

.ds-pricing-wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.ds-pricing-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 42px;
}

.ds-pricing-kicker {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: #e8f4ff;
    color: #0057d9;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 14px;
}

.ds-pricing-head h2 {
    margin: 0 0 14px;
    font-size: 38px;
    line-height: 1.2;
    color: #102a43;
}

.ds-pricing-head p {
    margin: 0 auto 24px;
    color: #486581;
    font-size: 17px;
}

.ds-pricing-toggle {
    display: inline-flex;
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 10px 28px rgba(0,87,217,0.10);
}

.ds-pricing-toggle button {
    border: 0;
    background: transparent;
    color: #102a43;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.ds-pricing-toggle button.active {
    background: #0057d9;
    color: #ffffff;
}

.ds-pricing-toggle span {
    font-size: 11px;
    background: #22cff3;
    color: #102a43;
    padding: 3px 7px;
    border-radius: 999px;
    margin-left: 5px;
}

.ds-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
}

.ds-pricing-card {
    position: relative;
    width: 31%;
    min-width: 280px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(16,42,67,0.08);
}

.ds-pricing-card.recommended {
    border: 2px solid #0057d9;
    transform: translateY(-8px);
}

.ds-pricing-badge {
    position: absolute;
    top: -14px;
    right: 22px;
    background: #0057d9;
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.ds-pricing-card h3 {
    margin: 0 0 8px;
    color: #102a43;
    font-size: 24px;
}

.ds-pricing-subtitle {
    margin: 0 0 22px;
    color: #486581;
    font-weight: 700;
}

.ds-pricing-price {
    margin: 0 0 24px;
    color: #0057d9;
    font-size: 40px;
    font-weight: 900;
}

.ds-pricing-price small {
    font-size: 15px;
    color: #486581;
    font-weight: 700;
}

.ds-price-annual {
    display: none;
}

.ds-pricing-section.annual-active .ds-price-monthly {
    display: none;
}

.ds-pricing-section.annual-active .ds-price-annual {
    display: inline;
}

.ds-pricing-features {
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.ds-pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eef6ff;
    color: #334e68;
    font-weight: 700;
}

.ds-pricing-features li:before {
    content: "✓";
    color: #0057d9;
    font-weight: 900;
    margin-right: 10px;
}

.ds-pricing-btn {
    display: block;
    text-align: center;
    background: #0057d9;
    color: #ffffff;
    border-radius: 14px;
    padding: 14px 18px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(0,87,217,0.25);
}

.ds-pricing-btn:hover {
    color: #ffffff;
    background: #003f9e;
}

@media (max-width: 980px) {
    .ds-pricing-card {
        width: 47%;
    }
}

@media (max-width: 680px) {
    .ds-pricing-section {
        padding: 60px 16px;
    }

    .ds-pricing-head h2 {
        font-size: 30px;
    }

    .ds-pricing-card {
        width: 100%;
        min-width: 0;
    }

    .ds-pricing-card.recommended {
        transform: none;
    }
}

.ds-pricing-card .ds-pricing-btn,
.ds-pricing-card a.ds-pricing-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    background: #0057d9 !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 14px !important;
    padding: 15px 20px !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    box-shadow: 0 12px 24px rgba(0,87,217,0.25) !important;
    cursor: pointer !important;
}

.ds-pricing-card .ds-pricing-btn:hover,
.ds-pricing-card a.ds-pricing-btn:hover {
    background: #003f9e !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

/* Pricing card premium hover glow */
.ds-pricing-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ds-pricing-card:hover {
    transform: translateY(-10px);
    border-color: #0057d9;
    box-shadow: 0 24px 65px rgba(0, 87, 217, 0.20), 0 0 0 1px rgba(34, 207, 243, 0.20);
}

.ds-pricing-card.recommended:hover {
    transform: translateY(-14px);
    box-shadow: 0 28px 75px rgba(0, 87, 217, 0.28), 0 0 22px rgba(34, 207, 243, 0.28);
}

.ds-pricing-card:hover .ds-pricing-btn {
    animation: dsPricingButtonBreath 1.8s ease-in-out infinite;
}

@keyframes dsPricingButtonBreath {
    0% {
        box-shadow: 0 12px 24px rgba(0,87,217,0.25);
    }
    50% {
        box-shadow: 0 16px 36px rgba(0,87,217,0.42), 0 0 18px rgba(34,207,243,0.35);
    }
    100% {
        box-shadow: 0 12px 24px rgba(0,87,217,0.25);
    }
}

.ds-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ds-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 54px;
    padding: 0 24px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.ds-hero-btn-primary {
    background: #22cff3;
    color: #102a43;
}

.ds-hero-btn-primary:hover {
    transform: translateY(-2px);
}

.ds-hero-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,.55);
}

.ds-hero-btn-outline:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-2px);
}

.ds-pricing-trial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: -10px 0 22px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #e8f4ff;
    color: #0057d9;
    font-size: 13px;
    font-weight: 900;
}


/* =========================================
   DS Trader Pricing Comparison Table
   Light SaaS Brand Style
   ========================================= */

.ds-pricing-comparison {
    margin: 78px auto 0;
    max-width: 1260px;
}

.ds-pricing-comparison-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 34px;
}

.ds-pricing-comparison-head > span {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 999px;
    background: #e8f4ff;
    color: #0057d9;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.ds-pricing-comparison-head h3 {
    margin: 0 0 12px;
    color: #102a43;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 900;
}

.ds-pricing-comparison-head p {
    margin: 0;
    color: #486581;
    font-size: 16px;
}

.ds-pricing-table-wrap {
    background: #ffffff;
    border: 2px solid #bfdbfe;
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(16,42,67,0.10);
    overflow-x: auto;
}

.ds-pricing-table {
    width: 100%;
    min-width: 980px;
    border-collapse: separate;
    border-spacing: 0;
}

.ds-pricing-table th,
.ds-pricing-table td {
    padding: 0;
    border-right: 1px solid #dbeafe;
    border-bottom: 1px solid #dbeafe;
    vertical-align: middle;
    text-align: center;
}

.ds-pricing-table th:last-child,
.ds-pricing-table td:last-child {
    border-right: 0;
}

.ds-pricing-table tbody tr:last-child td {
    border-bottom: 0;
}

/* Header */
.ds-pricing-table thead th {
    background: #f8fbff;
}

.ds-pricing-table thead th:first-child {
    background: linear-gradient(135deg, #0057d9, #0047b3);
    color: #ffffff;
    border-top-left-radius: 24px;
}

.ds-pricing-table thead th:last-child {
    border-top-right-radius: 24px;
}

.ds-compare-head-inner {
    min-height: 112px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: left;
}

.ds-compare-head-feature {
    justify-content: flex-start;
}

.ds-compare-head-feature strong {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 15px;
    font-weight: 900;
}

.ds-compare-plan-title strong {
    display: block;
    color: #0057d9;
    text-transform: uppercase;
    letter-spacing: .03em;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
}

.ds-compare-plan-title small {
    display: block;
    margin-top: 5px;
    color: #7b8794;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

/* Icons */
.ds-compare-header-icon,
.ds-compare-plan-icon,
.ds-compare-row-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 999px;
    font-size: 18px;
    line-height: 1;
}

.ds-compare-header-icon {
    background: rgba(255,255,255,0.14);
    border: 2px solid rgba(255,255,255,0.50);
    color: #ffffff;
}

.ds-compare-plan-icon,
.ds-compare-row-icon {
    background: #ffffff;
    border: 2px solid #bfdbfe;
    color: #0057d9;
    box-shadow: 0 8px 20px rgba(0,87,217,0.08);
}

/* Feature column */
.ds-pricing-table tbody td:first-child {
    background: #f0f7ff;
    width: 34%;
}

.ds-compare-feature-cell {
    min-height: 84px;
    padding: 18px 26px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.ds-compare-feature-cell strong {
    color: #071426;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}

/* Values - silver gray, not blue */
.ds-pricing-table tbody td:not(:first-child) {
    background: #ffffff;
    color: #6b7c93;
    font-size: 22px;
    font-weight: 850;
    padding: 18px 24px;
}

.ds-pricing-table tbody tr:nth-child(even) td:not(:first-child) {
    background: #fbfdff;
}

.ds-pricing-table tbody tr:hover td {
    background: #eef6ff !important;
}

/* Prices also silver gray */
.ds-compare-price {
    color: #425466;
    font-size: 23px;
    font-weight: 900;
}

.ds-pricing-table small {
    color: #7b8794;
    font-size: 13px;
    font-weight: 800;
    margin-left: 2px;
}

/* Annual saving pill can stay green because it is a positive badge */
.ds-compare-save-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #dcfce7;
    color: #0f9f4f;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

/* Yes/No also silver gray as requested */
.ds-compare-yes,
.ds-compare-no {
    color: #6b7c93;
    font-weight: 900;
}

/* Mobile */
@media (max-width: 680px) {
    .ds-pricing-comparison {
        margin-top: 52px;
    }

    .ds-pricing-comparison-head h3 {
        font-size: 27px;
    }

    .ds-pricing-table {
        min-width: 940px;
    }

    .ds-compare-head-inner {
        min-height: 100px;
        padding: 18px 20px;
    }

    .ds-compare-feature-cell {
        min-height: 78px;
        padding: 16px 20px;
    }
}

.ds-pricing-faq {
    max-width: 1180px;
    margin: 80px auto 0;
}

.ds-pricing-faq-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.ds-pricing-faq-head span {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 999px;
    background: #e8f4ff;
    color: #0057d9;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.ds-pricing-faq-head h3 {
    margin: 0 0 12px;
    color: #102a43;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 900;
}

.ds-pricing-faq-head p {
    margin: 0;
    color: #486581;
    font-size: 16px;
}

.ds-pricing-faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.ds-pricing-faq-item {
    width: calc(50% - 9px);
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 14px 36px rgba(16,42,67,0.06);
}

.ds-pricing-faq-item h4 {
    margin: 0 0 10px;
    color: #102a43;
    font-size: 18px;
    font-weight: 900;
}

.ds-pricing-faq-item p {
    margin: 0;
    color: #486581;
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 720px) {
    .ds-pricing-faq-item {
        width: 100%;
    }

    .ds-pricing-faq-head h3 {
        font-size: 27px;
    }
}

.ds-pricing-cta {
    max-width: 1180px;
    margin: 80px auto 0;
}

.ds-pricing-cta-inner {
    text-align: center;
    border-radius: 28px;
    padding: 56px 28px;
    background: linear-gradient(135deg, #071426, #0057d9);
    box-shadow: 0 26px 70px rgba(0,87,217,0.22);
    color: #ffffff;
}

.ds-pricing-cta-inner span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.ds-pricing-cta-inner h3 {
    max-width: 780px;
    margin: 0 auto 14px;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 900;
}

.ds-pricing-cta-inner p {
    max-width: 720px;
    margin: 0 auto 28px;
    color: #dbeafe;
    font-size: 17px;
    line-height: 1.65;
}

.ds-pricing-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ds-pricing-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 50px;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.ds-pricing-cta-btn.primary {
    background: #22cff3;
    color: #071426;
}

.ds-pricing-cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.55);
}

.ds-pricing-cta-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 720px) {
    .ds-pricing-cta-inner h3 {
        font-size: 28px;
    }
}

/* =========================================
   DS Trader Checkout Summary Page
   Premium Light SaaS Style
   ========================================= */

.ds-checkout-wrap {
    position: relative;
    padding: 90px 20px 70px;
    background:
        radial-gradient(circle at 5% 8%, rgba(34,207,243,0.12), transparent 28%),
        radial-gradient(circle at 95% 10%, rgba(0,87,217,0.10), transparent 26%),
        linear-gradient(180deg, #f7fcff, #ffffff);
    overflow: hidden;
}

.ds-checkout-page-head {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.ds-checkout-page-head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #bfdbfe;
    color: #0057d9;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(0,87,217,0.08);
}

.ds-checkout-page-head h1 {
    margin: 0 0 12px;
    color: #102a43;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 900;
}

.ds-checkout-page-head p {
    margin: 0;
    color: #486581;
    font-size: 17px;
}

.ds-checkout-shell {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.ds-checkout-main,
.ds-checkout-summary,
.ds-checkout-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid #bfdbfe;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(16,42,67,0.10);
}

.ds-checkout-main {
    flex: 1;
    padding: 34px;
}

.ds-checkout-summary {
    width: 420px;
    padding: 30px;
    position: sticky;
    top: 110px;
}

.ds-checkout-card {
    max-width: 620px;
    margin: 0 auto;
    padding: 36px;
    text-align: center;
}

.ds-checkout-card p {
    color: #486581;
    font-size: 16px;
    line-height: 1.6;
}

.ds-checkout-kicker {
    display: inline-flex;
    padding: 9px 16px;
    border-radius: 999px;
    background: #e8f4ff;
    color: #0057d9;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.ds-checkout-main h2,
.ds-checkout-card h2 {
    margin: 0 0 8px;
    color: #102a43;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.15;
}

.ds-checkout-subtitle {
    margin: 0 0 24px;
    color: #102a43;
    font-size: 16px;
    font-weight: 800;
}

.ds-checkout-pricing {
    display: flex;
    gap: 16px;
    margin: 26px 0 18px;
}

.ds-checkout-price-option {
    flex: 1;
    position: relative;
    background: #ffffff;
    border: 1px solid #bfdbfe;
    border-radius: 18px;
    padding: 22px 22px 22px 92px;
    min-height: 118px;
}

.ds-checkout-price-option.active {
    border-color: #0057d9;
    box-shadow: 0 14px 32px rgba(0,87,217,0.14);
}

.ds-checkout-price-icon {
    position: absolute;
    left: 22px;
    top: 31px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #e8f4ff;
    color: #0057d9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.ds-checkout-price-option small {
    display: block;
    color: #102a43;
    font-weight: 900;
    margin-bottom: 8px;
}

.ds-checkout-price-option strong {
    color: #0057d9;
    font-size: 32px;
    font-weight: 900;
}

.ds-checkout-price-option strong span {
    font-size: 16px;
    color: #102a43;
}

.ds-checkout-trial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    background: #f0f7ff;
    border: 1px dashed #7fb3ff;
    color: #0057d9;
    font-weight: 900;
    margin-bottom: 28px;
}

.ds-checkout-section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 10px 0 18px;
}

.ds-checkout-section-title h3 {
    margin: 0;
    color: #102a43;
    font-size: 22px;
    font-weight: 900;
}

.ds-checkout-section-title:before,
.ds-checkout-section-title:after {
    content: "";
    height: 2px;
    background: #0057d9;
    flex: 1;
    opacity: .65;
}

.ds-checkout-section-title span {
    color: #0057d9;
    font-weight: 900;
}

.ds-checkout-features {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ds-checkout-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid #dbeafe;
    color: #102a43;
    font-weight: 800;
}

.ds-checkout-check {
    color: #0057d9;
    font-weight: 900;
    font-size: 18px;
}

.ds-checkout-feature-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 8px;
    background: #e8f4ff;
    color: #0057d9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.ds-checkout-features li strong {
    min-width: 220px;
    color: #102a43;
    font-size: 14px;
    font-weight: 900;
}

.ds-checkout-features li small {
    color: #486581;
    font-size: 14px;
    font-weight: 700;
}

/* Summary Card */
.ds-checkout-summary-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.ds-checkout-summary-title span {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #e8f4ff;
    color: #0057d9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.ds-checkout-summary-title h3 {
    margin: 0;
    color: #102a43;
    font-size: 26px;
    font-weight: 900;
}

.ds-checkout-summary-table {
    border-top: 3px solid #0057d9;
}

.ds-checkout-summary-head,
.ds-checkout-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #dbeafe;
}

.ds-checkout-summary-head strong {
    color: #102a43;
    font-weight: 900;
}

.ds-checkout-summary-row > span {
    color: #102a43;
    font-weight: 900;
}

.ds-checkout-summary-row > strong {
    color: #102a43;
    font-weight: 900;
    text-align: right;
}

.ds-checkout-summary-row.billing-row {
    display: block;
}

.ds-checkout-summary-row.billing-row > span {
    display: block;
    margin-bottom: 12px;
}

.ds-checkout-billing-choice {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ds-checkout-billing-choice label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
}

.ds-checkout-billing-choice label.active {
    border-color: #0057d9;
    background: #f0f7ff;
    box-shadow: 0 8px 18px rgba(0,87,217,0.10);
}

.ds-checkout-billing-choice input {
    margin: 0;
}

.ds-checkout-billing-choice label span {
    color: #102a43;
    font-weight: 900;
    flex: 1;
}

.ds-checkout-billing-choice label span em {
    color: #0f9f4f;
    font-style: normal;
    font-size: 12px;
}

.ds-checkout-billing-choice label strong {
    color: #102a43;
    font-weight: 900;
}

.ds-checkout-due {
    margin: 18px 0 16px;
    padding: 18px;
    border-radius: 12px;
    background: #eef6ff;
    border: 1px solid #bfdbfe;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ds-checkout-due span,
.ds-checkout-due strong {
    color: #0057d9;
    font-size: 20px;
    font-weight: 900;
}

.ds-checkout-form {
    margin: 0;
}

.ds-checkout-btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    min-height: 56px;
    border: 0;
    border-radius: 12px;
    background: #0057d9;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(0,87,217,0.22);
}

.ds-checkout-btn:hover {
    background: #0047b3;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.ds-checkout-note {
    color: #486581;
    font-size: 14px;
    line-height: 1.55;
    text-align: center;
    margin: 18px 0 26px;
}

.ds-checkout-or {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 22px;
}

.ds-checkout-or span {
    height: 1px;
    background: #dbeafe;
    flex: 1;
}

.ds-checkout-or em {
    color: #486581;
    font-style: normal;
    font-weight: 900;
}

.ds-checkout-back {
    display: block;
    text-align: center;
    color: #0057d9;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
}

.ds-checkout-back:hover {
    color: #0047b3;
    text-decoration: none;
}

.ds-checkout-disclaimer {
    max-width: 1160px;
    margin: 26px auto 0;
    padding: 18px 24px;
    border-radius: 14px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #7c2d12;
    font-size: 15px;
    line-height: 1.55;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ds-checkout-disclaimer span {
    font-size: 20px;
    line-height: 1.2;
}

.ds-checkout-disclaimer p {
    margin: 0;
}

.ds-checkout-disclaimer strong {
    color: #9a3412;
}

@media (max-width: 980px) {
    .ds-checkout-shell {
        flex-direction: column;
    }

    .ds-checkout-summary {
        width: 100%;
        position: static;
    }

    .ds-checkout-pricing {
        flex-direction: column;
    }

    .ds-checkout-features li {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .ds-checkout-features li strong {
        min-width: auto;
    }
}

.ds-checkout-alert {
    max-width: 1160px;
    margin: 0 auto 24px;
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 900;
    text-align: center;
}

.ds-checkout-alert.success {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.ds-checkout-alert.warning {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
}