/* ================================================
   WINDOWS-RDP.CSS — Windows RDP Page
   Theme: Clean White / Light Gray + Royal Blue accent
   Fonts: Outfit (UI) + JetBrains Mono (terminal)
   Accent: #4169E1 (Royal Blue)
   Bento: 3+3+2 equal-height grid, fully responsive
   ================================================ */

:root {
    --rdp-blue: #4169E1;
    --rdp-blue-dark: #2d4fb8;
    --rdp-blue-light: #6b8ef5;
    --rdp-purple: #7c3aed;
    --rdp-text: #0f172a;
    --rdp-text-2: #475569;
    --rdp-text-3: #94a3b8;
    --rdp-white: #ffffff;
    --rdp-bg: #f8fafc;
    --rdp-bg-2: #f1f5f9;
    --rdp-border: #e2e8f0;
    --rdp-card-bg: #ffffff;
    --rdp-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
    --rdp-shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    --rdp-radius: 16px;
    --rdp-radius-sm: 10px;
    --transition: 0.25s ease;
}

.rdp-body {
    background: var(--rdp-bg);
    color: var(--rdp-text);
    font-family: 'Outfit', sans-serif;
}

/* ========================= SHARED ========================= */
.rdp-section-head {
    text-align: center;
    margin-bottom: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.rdp-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(65, 105, 225, 0.09);
    color: var(--rdp-blue-dark);
    border: 1px solid rgba(65, 105, 225, 0.22);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rdp-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--rdp-text);
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin: 0;
}

.rdp-accent {
    color: var(--rdp-blue);
}

.rdp-section-sub {
    font-size: 16px;
    color: var(--rdp-text-2);
    line-height: 1.7;
    max-width: 580px;
    margin: 0;
}

/* ========================= HERO ========================= */
.rdp-hero {
    position: relative;
    background: #f0f4ff;
    background-image:
        radial-gradient(ellipse 80% 70% at 70% 0%, rgba(65, 105, 225, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(124, 58, 237, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 90% 80%, rgba(14, 165, 233, 0.06) 0%, transparent 50%);
    padding: 110px 0 0;
    overflow: hidden;
    min-height: 680px;
}

.rdp-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.rdp-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(65, 105, 225, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(65, 105, 225, 0.07) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 80% at 80% 20%, rgba(0, 0, 0, 0.4), transparent 70%);
}

.rdp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.rdp-orb-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.18), transparent 70%);
    top: -60px;
    right: 5%;
}

.rdp-orb-2 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 70%);
    bottom: 20px;
    right: 35%;
}

.rdp-orb-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.10), transparent 70%);
    top: 30%;
    left: 5%;
}

.rdp-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(65, 105, 225, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.6;
    mask-image: radial-gradient(ellipse 60% 60% at 75% 25%, black, transparent);
}

.rdp-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
}

/* Hero left */
.rdp-label-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(65, 105, 225, 0.09);
    border: 1px solid rgba(65, 105, 225, 0.22);
    border-radius: 50px;
    padding: 6px 14px 6px 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--rdp-blue-dark);
    margin-bottom: 22px;
}

.rdp-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--rdp-blue);
    border-radius: 50%;
    animation: rdp-pulse 1.8s infinite;
}

@keyframes rdp-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

.rdp-badge-sep {
    color: var(--rdp-text-3);
}

.rdp-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 5.5vw, 66px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--rdp-text);
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
}

.rdp-title-line2 em {
    font-style: italic;
    color: var(--rdp-blue);
    font-weight: 900;
}

.rdp-subtitle {
    font-size: 16px;
    color: var(--rdp-text-2);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 28px;
}

.rdp-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rdp-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--rdp-text);
}

.rdp-check-icon {
    width: 30px;
    height: 30px;
    background: var(--rdp-bg-2);
    border: 1px solid var(--rdp-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rdp-hero-cta {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 36px;
}

.rdp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rdp-blue);
    color: white;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(65, 105, 225, 0.3);
}

.rdp-btn-primary:hover {
    background: var(--rdp-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(65, 105, 225, 0.4);
}

.rdp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--rdp-border);
    color: var(--rdp-text);
    font-weight: 600;
    font-size: 15px;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.rdp-btn-outline:hover {
    border-color: var(--rdp-blue);
    color: var(--rdp-blue);
}

.rdp-trust-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rdp-trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rdp-trust-item strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--rdp-text);
}

.rdp-trust-item span {
    font-size: 12px;
    color: var(--rdp-text-3);
    font-weight: 500;
}

.rdp-trust-sep {
    width: 1px;
    height: 32px;
    background: var(--rdp-border);
}

/* Hero right — connection card */
.rdp-hero-right {
    position: relative;
}

.rdp-conn-card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--rdp-border);
    box-shadow: 0 8px 40px rgba(65, 105, 225, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.rdp-conn-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #f8fafc;
    border-bottom: 1px solid var(--rdp-border);
}

.rdp-conn-dots {
    display: flex;
    gap: 5px;
}

.pd-r {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f57;
}

.pd-y {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #febc2e;
}

.pd-g {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #28c840;
}

.rdp-conn-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--rdp-text-2);
    margin-left: 4px;
}

.rdp-conn-status {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: 0.03em;
}

.rdp-conn-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rdp-conn-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    background: var(--rdp-bg);
    border-radius: 8px;
    border: 1px solid var(--rdp-border);
}

.rdp-field-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--rdp-text-3);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rdp-field-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--rdp-text);
}

.rdp-mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
}

.rdp-green {
    color: #10b981 !important;
}

.rdp-divider-line {
    height: 1px;
    background: var(--rdp-border);
    margin: 4px 0;
}

.rdp-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.rdp-spec-box {
    background: var(--rdp-bg);
    border: 1px solid var(--rdp-border);
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rdp-spec-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--rdp-blue);
    font-family: 'Outfit', sans-serif;
}

.rdp-spec-lbl {
    font-size: 10px;
    color: var(--rdp-text-3);
    font-weight: 500;
}

.rdp-card-footer {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--rdp-text-3);
    margin-top: 4px;
}

.rdp-status-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
}

/* Floating chips */
.rdp-float {
    position: absolute;
    background: white;
    border: 1px solid var(--rdp-border);
    border-radius: 50px;
    padding: 7px 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--rdp-text);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    animation: rdp-float-drift 4s ease-in-out infinite;
    z-index: 3;
}

.rdp-float-1 {
    top: -14px;
    left: -24px;
    animation-delay: 0s;
}

.rdp-float-2 {
    bottom: 60px;
    left: -30px;
    animation-delay: 1.3s;
}

.rdp-float-3 {
    bottom: -14px;
    right: -8px;
    animation-delay: 2.6s;
}

@keyframes rdp-float-drift {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ========================= STAT BAR ========================= */
.rdp-statbar {
    background: #0f172a;
    padding: 18px 0;
}

.rdp-statbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.rdp-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    padding: 0 20px;
}

.rdp-stat-item strong {
    color: white;
    font-weight: 700;
}

.rdp-stat-item svg {
    color: var(--rdp-blue-light);
}

.rdp-stat-sep {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.12);
}

/* ========================= PRICING PLANS ========================= */
.rdp-plans {
    padding: 96px 0;
    background: var(--rdp-bg);
}

.rdp-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
}

.rdp-bill-lbl {
    font-size: 15px;
    font-weight: 600;
    color: var(--rdp-text);
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rdp-save-pill {
    background: rgba(65, 105, 225, 0.1);
    color: var(--rdp-blue-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    border: 1px solid rgba(65, 105, 225, 0.2);
}

.rdp-toggle-btn {
    width: 48px;
    height: 26px;
    background: var(--rdp-border);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.25s;
}

.rdp-toggle-btn.active {
    background: var(--rdp-blue);
}

.rdp-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.25s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.rdp-toggle-btn.active .rdp-toggle-thumb {
    transform: translateX(22px);
}

.rdp-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.rdp-plan-card {
    background: var(--rdp-card-bg);
    border: 1.5px solid var(--rdp-border);
    border-radius: var(--rdp-radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
}

.rdp-plan-card:hover {
    box-shadow: var(--rdp-shadow-lg);
    transform: translateY(-2px);
}

.rdp-plan-tier-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--rdp-text-3);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.rdp-plan-name {
    font-size: 28px;
    font-weight: 900;
    color: var(--rdp-text);
    margin-bottom: 4px;
}

.rdp-plan-old-price {
    font-size: 14px;
    color: var(--rdp-text-3);
    margin-bottom: 2px;
}

.rdp-plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.rdp-cur {
    font-size: 20px;
    font-weight: 700;
    color: var(--rdp-text);
}

.rdp-amount {
    font-size: 40px;
    font-weight: 900;
    color: var(--rdp-text);
    line-height: 1;
}

.rdp-per {
    font-size: 14px;
    color: var(--rdp-text-3);
    font-weight: 500;
}

.rdp-plan-was {
    font-size: 12px;
    color: var(--rdp-text-3);
    min-height: 18px;
    margin-bottom: 16px;
}

.rdp-plan-btn {
    display: block;
    text-align: center;
    padding: 12px 0;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 0;
}

.rdp-btn-ghost {
    background: var(--rdp-text);
    color: white;
}

.rdp-btn-ghost:hover {
    background: #1e293b;
}

.rdp-btn-primary-plan {
    background: var(--rdp-blue);
    color: white;
    box-shadow: 0 4px 16px rgba(65, 105, 225, 0.28);
}

.rdp-btn-primary-plan:hover {
    background: var(--rdp-blue-dark);
    box-shadow: 0 6px 24px rgba(65, 105, 225, 0.4);
    transform: translateY(-1px);
}

.rdp-plan-divider {
    height: 1px;
    background: var(--rdp-border);
    margin: 20px 0;
}

.rdp-plan-specs {
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.rdp-spec {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: var(--rdp-text-2);
}

.rdp-chk {
    color: var(--rdp-blue);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.rdp-plan-featured {
    border-color: var(--rdp-blue);
    box-shadow: 0 0 0 1px var(--rdp-blue), 0 8px 32px rgba(65, 105, 225, 0.14);
}

.rdp-featured-ribbon {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--rdp-blue);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px 6px;
    border-radius: 0 0 10px 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rdp-plans-note {
    text-align: center;
    font-size: 14px;
    color: var(--rdp-text-3);
    margin-top: 28px;
}

/* =============================================================
   FEATURES — BENTO GRID  (3 + 3 + 2 — ALL EQUAL HEIGHT)
   ============================================================= */
.rdp-features {
    padding: 96px 0;
    background: white;
}

/* Outer grid: 3 columns for first 6 cards + last-row wrapper */
.rdp-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Every card — equal height via flex column + align-self stretch */
.rdp-bento-card {
    background: var(--rdp-bg);
    border: 1px solid var(--rdp-border);
    border-radius: var(--rdp-radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
    /* ensures all cards in same row stretch to tallest */
    align-self: stretch;
}

.rdp-bento-card:hover {
    box-shadow: var(--rdp-shadow-lg);
    transform: translateY(-2px);
}

/* ── Last row: wrapper spans full 3 cols, inner 2 cards centered ── */
.rdp-bento-last-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 66.66%;
    /* same width as 2 of the 3 columns */
    margin: 0 auto;
    /* center karo */
}

/* Cards inside last-row wrapper also stretch to each other */
.rdp-bento-last-row .rdp-bento-card {
    align-self: stretch;
}

/* Icon */
.rdp-bento-icon {
    margin-bottom: 16px;
    flex-shrink: 0;
}

/* Title */
.rdp-bento-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--rdp-text);
    margin: 0 0 10px;
    flex-shrink: 0;
}

/* Body text — grows to fill available space */
.rdp-bento-card p {
    font-size: 14px;
    color: var(--rdp-text-2);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* Tag — always pinned to bottom */
.rdp-bento-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--rdp-blue-dark);
    background: rgba(65, 105, 225, 0.08);
    border: 1px solid rgba(65, 105, 225, 0.18);
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.04em;
    margin-top: 14px;
    flex-shrink: 0;
    align-self: flex-start;
}

/* ========================= HOW TO CONNECT STEPS ========================= */
.rdp-steps {
    padding: 96px 0;
    background: var(--rdp-bg);
}

.rdp-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.rdp-steps-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--rdp-blue), var(--rdp-blue-light));
    pointer-events: none;
    z-index: 0;
}

.rdp-step-card {
    padding: 28px 16px 28px;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
    z-index: 1;
    margin: 0 8px;
    background: transparent;
    border: none;
}

.rdp-step-num {
    width: 48px;
    height: 48px;
    background: var(--rdp-blue);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 14px rgba(65, 105, 225, 0.35);
    position: relative;
    z-index: 2;
    border: 3px solid var(--rdp-bg);
    outline: 2px solid var(--rdp-blue);
}

.rdp-step-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--rdp-text);
    margin: 0 0 10px;
}

.rdp-step-card p {
    font-size: 14px;
    color: var(--rdp-text-2);
    line-height: 1.6;
    margin: 0;
}

/* ========================= USE CASES ========================= */
.rdp-usecases {
    padding: 96px 0;
    background: white;
}

.rdp-usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rdp-usecase-card {
    background: var(--rdp-bg);
    border: 1px solid var(--rdp-border);
    border-radius: var(--rdp-radius);
    padding: 28px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.rdp-usecase-card:hover {
    box-shadow: var(--rdp-shadow-lg);
    transform: translateY(-2px);
}

.rdp-usecase-icon {
    width: 52px;
    height: 52px;
    background: var(--rdp-bg-2);
    border: 1px solid var(--rdp-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.rdp-usecase-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--rdp-text);
    margin: 0 0 10px;
}

.rdp-usecase-card p {
    font-size: 14px;
    color: var(--rdp-text-2);
    line-height: 1.65;
    margin: 0;
}

/* ========================= COMPARISON TABLE ========================= */
.rdp-compare {
    padding: 96px 0;
    background: var(--rdp-bg);
}

.rdp-table-wrap {
    overflow-x: auto;
    border-radius: var(--rdp-radius);
    border: 1px solid var(--rdp-border);
    box-shadow: var(--rdp-shadow);
}

.rdp-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.rdp-table th {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    background: var(--rdp-bg);
    border-bottom: 2px solid var(--rdp-border);
    color: var(--rdp-text);
}

.rdp-table td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--rdp-text-2);
    border-bottom: 1px solid var(--rdp-border);
}

.rdp-table tr:last-child td {
    border-bottom: none;
}

.rdp-table tr:hover td {
    background: var(--rdp-bg);
}

.rdp-col-hl {
    background: rgba(65, 105, 225, 0.05) !important;
    font-weight: 600 !important;
    color: var(--rdp-text) !important;
}

.rdp-table th.rdp-col-hl {
    background: rgba(65, 105, 225, 0.09) !important;
    color: var(--rdp-blue-dark) !important;
    border-bottom-color: var(--rdp-blue) !important;
}

.rdp-best-tag {
    display: inline-block;
    background: var(--rdp-blue);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 6px;
    letter-spacing: 0.04em;
    vertical-align: middle;
}

.rdp-chk-t {
    color: #22c55e;
    font-weight: 700;
}

.rdp-crs-t {
    color: #ef4444;
    font-weight: 700;
}

/* ========================= REVIEWS ========================= */
.rdp-reviews {
    padding: 96px 0;
    background: white;
}

.rdp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rdp-review {
    background: var(--rdp-bg);
    border: 1px solid var(--rdp-border);
    border-radius: var(--rdp-radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow var(--transition);
}

.rdp-review:hover {
    box-shadow: var(--rdp-shadow-lg);
}

.rdp-review-featured {
    background: white;
    border-color: var(--rdp-blue);
    box-shadow: 0 0 0 1px rgba(65, 105, 225, 0.15), 0 6px 24px rgba(65, 105, 225, 0.10);
}

.rdp-review-stars {
    font-size: 18px;
    letter-spacing: 2px;
    color: #f59e0b;
}

.rdp-review p {
    font-size: 15px;
    color: var(--rdp-text-2);
    line-height: 1.65;
    margin: 0;
    flex: 1;
    font-style: italic;
}

.rdp-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rdp-avatar {
    width: 40px;
    height: 40px;
    background: var(--rdp-blue);
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rdp-reviewer strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--rdp-text);
}

.rdp-reviewer span {
    font-size: 12px;
    color: var(--rdp-text-3);
}

/* ========================= FAQ ========================= */
.rdp-faq {
    padding: 96px 0;
    background: var(--rdp-bg);
}

.rdp-faq-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.rdp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rdp-faq-item {
    background: white;
    border: 1px solid var(--rdp-border);
    border-radius: var(--rdp-radius-sm);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.rdp-faq-item:hover {
    box-shadow: var(--rdp-shadow);
}

.rdp-faq-item.open {
    border-color: var(--rdp-blue);
}

.rdp-faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--rdp-text);
    text-align: left;
}

.rdp-faq-icon {
    width: 26px;
    height: 26px;
    background: var(--rdp-bg);
    border: 1px solid var(--rdp-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.rdp-faq-item.open .rdp-faq-icon {
    background: var(--rdp-blue);
    border-color: var(--rdp-blue);
    color: white;
    transform: rotate(45deg);
}

.rdp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.rdp-faq-item.open .rdp-faq-a {
    max-height: 300px;
}

.rdp-faq-ac {
    padding: 0 20px 18px;
    font-size: 14.5px;
    color: var(--rdp-text-2);
    line-height: 1.7;
}

.rdp-faq-contact {
    background: white;
    border: 1.5px solid var(--rdp-border);
    border-radius: var(--rdp-radius);
    padding: 28px;
    text-align: center;
    position: sticky;
    top: 90px;
}

.rdp-faq-contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(65, 105, 225, 0.08);
    border: 1px solid rgba(65, 105, 225, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--rdp-blue);
}

.rdp-faq-contact h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--rdp-text);
    margin: 0 0 10px;
}

.rdp-faq-contact p {
    font-size: 14px;
    color: var(--rdp-text-2);
    line-height: 1.6;
    margin: 0 0 20px;
}

.rdp-faq-contact-btn {
    display: block;
    background: var(--rdp-blue);
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.rdp-faq-contact-btn:hover {
    background: var(--rdp-blue-dark);
    transform: translateY(-1px);
}

/* ========================= CTA ========================= */
.rdp-cta {
    padding: 96px 0;
    background: var(--rdp-blue);
    position: relative;
    overflow: hidden;
}

.rdp-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rdp-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.rdp-cta-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
    top: -150px;
    left: -100px;
}

.rdp-cta-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(30, 30, 120, 0.25), transparent 70%);
    bottom: -100px;
    right: -50px;
}

.rdp-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.rdp-cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.rdp-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 0 18px;
}

.rdp-cta-title span {
    color: rgba(255, 255, 255, 0.75);
}

.rdp-cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.rdp-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.rdp-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--rdp-blue);
    font-weight: 700;
    font-size: 16px;
    padding: 15px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.rdp-cta-primary:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.rdp-cta-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 13px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.rdp-cta-secondary:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.rdp-cta-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.rdp-cta-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.rdp-cta-features span svg {
    color: #86efac;
}

/* =============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================= */

/* Tablet: 1024px — plans 2 col, bento 2 col, steps 2 col */
@media (max-width: 1100px) {
    .rdp-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rdp-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rdp-steps-grid::before {
        display: none;
    }

    /* Bento: 2 cols for first 6, last row stays 2 */
    .rdp-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Last row wrapper still spans all 2 cols, full width on tablet */
    .rdp-bento-last-row {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
        margin: 0;
    }
}

/* Smaller tablet / large mobile */
@media (max-width: 900px) {
    .rdp-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rdp-hero-right {
        display: none;
    }

    .rdp-usecase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rdp-reviews-grid {
        grid-template-columns: 1fr;
    }

    .rdp-faq-inner {
        grid-template-columns: 1fr;
    }

    .rdp-faq-contact {
        position: static;
    }
}

/* Mobile: 640px — everything single column */
@media (max-width: 640px) {
    .rdp-plans-grid {
        grid-template-columns: 1fr;
    }

    /* Bento: 1 col */
    .rdp-bento {
        grid-template-columns: 1fr;
    }

    /* Last row: also 1 col on mobile */
    .rdp-bento-last-row {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }

    .rdp-usecase-grid {
        grid-template-columns: 1fr;
    }

    .rdp-steps-grid {
        grid-template-columns: 1fr;
    }

    .rdp-steps-grid::before {
        display: none;
    }

    .rdp-step-card {
        margin: 0;
    }

    .rdp-statbar-inner {
        flex-wrap: wrap;
    }

    .rdp-stat-sep {
        display: none;
    }

    .rdp-stat-item {
        width: 50%;
        justify-content: center;
        padding: 6px 10px;
    }

    .rdp-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .rdp-trust-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .rdp-section-title {
        font-size: 26px;
    }

    .rdp-hero {
        padding: 80px 0 0;
    }

    .rdp-faq-inner {
        grid-template-columns: 1fr;
    }

    .rdp-reviews-grid {
        grid-template-columns: 1fr;
    }

    .rdp-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .rdp-plans-note {
        font-size: 13px;
        padding: 0 8px;
    }
}