.rdsm-section,
.rdsm-cta,
.rdsm-hero {
    box-sizing: border-box;
}
.rdsm-section *,
.rdsm-cta *,
.rdsm-hero * {
    box-sizing: border-box;
}

.rdsm-full-page {
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
}
.rdsm-full-page * {
    box-sizing: border-box;
}
.rdsm-full-page .rdsm-hero {
    margin-top: 0;
}
.rdsm-full-page .rdsm-section:first-of-type {
    margin-top: 70px;
}
body .entry-content > .rdsm-full-page:first-child,
body .wp-block-shortcode > .rdsm-full-page:first-child {
    margin-top: 0;
}

.rdsm-section {
    max-width: var(--rdsm-max-width, 1180px);
    margin: var(--rdsm-section-margin, 75px) auto;
    padding: 0 var(--rdsm-section-padding-x, 20px);
    background: transparent;
}
.rdsm-hero {
    width: 100%;
    margin: 0 auto var(--rdsm-section-margin, 75px);
    padding: var(--rdsm-hero-padding-top, 95px) var(--rdsm-section-padding-x, 20px) var(--rdsm-hero-padding-bottom, 95px);
    text-align: center;
    background: linear-gradient(135deg, var(--rdsm-hero-start, #07111f) 0%, var(--rdsm-hero-end, #12345a) 100%);
    border-radius: 0 0 var(--rdsm-hero-radius, 36px) var(--rdsm-hero-radius, 36px);
}
.rdsm-hero-inner {
    max-width: 920px;
    margin: 0 auto;
}
.rdsm-hero-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--rdsm-hero-eyebrow, #b8d4ff) !important;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.rdsm-hero h1 {
    margin: 0 0 22px !important;
    color: var(--rdsm-hero-title, #ffffff) !important;
    font-size: clamp(36px, 6vw, 68px) !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em;
}
.rdsm-hero p {
    max-width: 760px;
    margin: 0 auto 32px !important;
    color: var(--rdsm-hero-text, #dce8ff) !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
}
.rdsm-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.rdsm-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 26px;
    border-radius: var(--rdsm-button-radius, 999px);
    font-weight: 800;
    text-decoration: none !important;
    transition: transform .2s ease, opacity .2s ease, background .2s ease, color .2s ease;
}
.rdsm-hero-primary {
    background: var(--rdsm-hero-primary-bg, #ffffff) !important;
    color: var(--rdsm-hero-primary-text, #07111f) !important;
    border: 1px solid var(--rdsm-hero-primary-bg, #ffffff);
}
.rdsm-hero-secondary {
    background: transparent !important;
    color: var(--rdsm-hero-secondary-text, #ffffff) !important;
    border: 1px solid var(--rdsm-hero-secondary-border, #ffffff);
}
.rdsm-hero-btn:hover {
    transform: translateY(-2px);
    opacity: .92;
}
.rdsm-section-head {
    max-width: 780px;
    margin: 0 auto 36px;
    text-align: var(--rdsm-text-align, center);
}
.rdsm-section-head h2,
.rdsm-cta h2 {
    margin: 0 0 12px !important;
    color: var(--rdsm-heading, #101828) !important;
    font-size: clamp(30px, 4vw, 48px) !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em;
}
.rdsm-section-head p {
    margin: 0 !important;
    color: var(--rdsm-subtitle, #5c667a) !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
}
.rdsm-grid {
    display: grid;
    gap: var(--rdsm-grid-gap, 22px);
}
.rdsm-cols-1 { grid-template-columns: 1fr; }
.rdsm-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rdsm-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rdsm-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.rdsm-card,
.rdsm-process-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--rdsm-this-card-bg, var(--rdsm-card, #ffffff)) !important;
    border: 1px solid var(--rdsm-border, #e8edf5) !important;
    border-radius: var(--rdsm-card-radius, 24px);
    padding: var(--rdsm-card-padding, 28px);
    box-shadow: var(--rdsm-card-shadow, 0 14px 38px rgba(16, 24, 40, 0.08));
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    overflow: hidden;
}
.rdsm-card:hover,
.rdsm-process-card:hover {
    transform: var(--rdsm-hover-transform, translateY(-4px));
    border-color: var(--rdsm-accent, #185cff) !important;
    box-shadow: var(--rdsm-card-hover-shadow, 0 18px 45px rgba(16, 24, 40, 0.12));
}
.rdsm-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--rdsm-icon-bg, #f7f9fc) !important;
    color: var(--rdsm-icon-text, #101828) !important;
    font-size: 28px;
    margin-bottom: 18px;
}
.rdsm-card h3,
.rdsm-process-card h3 {
    margin: 0 0 12px !important;
    color: var(--rdsm-this-card-title, var(--rdsm-card-title, #101828)) !important;
    font-size: 22px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
}
.rdsm-card-text,
.rdsm-process-card p {
    margin-top: 0 !important;
    color: var(--rdsm-this-card-text, var(--rdsm-card-text, #5c667a)) !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
}
.rdsm-price-label,
.rdsm-links-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin: 10px 0 14px !important;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--rdsm-price, #185cff) !important;
    background: var(--rdsm-light, #f7f9fc) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}
.rdsm-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 18px 0 24px !important;
}
.rdsm-features li {
    position: relative;
    display: flex;
    gap: 10px;
    padding-left: 0 !important;
    margin-bottom: 10px !important;
    color: var(--rdsm-feature-text, #344054) !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
}
.rdsm-feature-mark {
    color: var(--rdsm-check, #185cff) !important;
    font-weight: 900;
    flex: 0 0 auto;
}
.rdsm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: auto;
    padding: 12px 20px;
    border-radius: var(--rdsm-button-radius, 999px);
    background: var(--rdsm-button-bg, #185cff) !important;
    color: var(--rdsm-button-text, #ffffff) !important;
    font-weight: 800;
    text-decoration: none !important;
    border: 1px solid var(--rdsm-button-bg, #185cff) !important;
    transition: transform .2s ease, opacity .2s ease, background .2s ease, color .2s ease;
}
.rdsm-button:hover {
    transform: translateY(-2px);
    opacity: .94;
    background: var(--rdsm-button-hover-bg, #0f47d7) !important;
    color: var(--rdsm-button-hover-text, #ffffff) !important;
    border-color: var(--rdsm-button-hover-bg, #0f47d7) !important;
}
.rdsm-pricing-card {
    padding-top: calc(var(--rdsm-card-padding, 28px) + 6px);
}
.rdsm-featured {
    border: 2px solid var(--rdsm-accent, #185cff) !important;
    transform: var(--rdsm-featured-transform, scale(1.02));
}
.rdsm-badge {
    position: absolute;
    right: 18px;
    top: 18px;
    padding: 6px 11px;
    border-radius: 999px;
    color: var(--rdsm-badge-text, #ffffff) !important;
    background: var(--rdsm-badge-bg, #185cff) !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}
.rdsm-plan-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin: 12px 0 6px;
}
.rdsm-plan-price span {
    color: var(--rdsm-price, #101828) !important;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
}
.rdsm-plan-price small {
    color: var(--rdsm-subtitle, #667085) !important;
    font-weight: 700;
}
.rdsm-process-card span {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 16px;
    color: var(--rdsm-process-text, #ffffff) !important;
    background: var(--rdsm-process-bg, #185cff) !important;
    font-weight: 900;
}
.rdsm-cta {
    max-width: var(--rdsm-max-width, 1180px);
    margin: var(--rdsm-section-margin, 75px) auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 42px;
    border-radius: var(--rdsm-card-radius, 24px);
    background: var(--rdsm-cta-bg, #101828) !important;
    color: var(--rdsm-cta-text, #ffffff) !important;
}
.rdsm-cta h2 {
    color: var(--rdsm-cta-title, #ffffff) !important;
}
.rdsm-cta p {
    margin: 0 !important;
    color: var(--rdsm-cta-text, #ffffff) !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
}
.rdsm-button-light,
.rdsm-cta .rdsm-button {
    background: var(--rdsm-cta-button-bg, #ffffff) !important;
    border-color: var(--rdsm-cta-button-bg, #ffffff) !important;
    color: var(--rdsm-cta-button-text, #101828) !important;
    flex: 0 0 auto;
}
@media (max-width: 980px) {
    .rdsm-cols-3,
    .rdsm-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .rdsm-featured {
        transform: none;
    }
}
@media (max-width: 640px) {
    .rdsm-hero {
        padding-top: 70px;
        padding-bottom: 70px;
        border-radius: 0 0 24px 24px;
    }
    .rdsm-hero h1 {
        font-size: 36px !important;
    }
    .rdsm-hero p {
        font-size: 16px !important;
    }
    .rdsm-cols-2,
    .rdsm-cols-3,
    .rdsm-cols-4 {
        grid-template-columns: 1fr;
    }
    .rdsm-card,
    .rdsm-process-card,
    .rdsm-cta {
        padding: 24px;
        border-radius: 18px;
    }
    .rdsm-cta {
        display: block;
        margin-left: var(--rdsm-section-padding-x, 20px);
        margin-right: var(--rdsm-section-padding-x, 20px);
    }
    .rdsm-cta .rdsm-button {
        width: 100%;
        margin-top: 16px;
    }
}
