/* =================================================
   reseller.css — SkyServer Reseller Hosting Page
   Accent: Teal #0d9488 | Font: Outfit
   ================================================= */

/* ========================= VARIABLES ========================= */
:root {
    --rs-teal: #0d9488;
    --rs-teal-lt: rgba(13, 148, 136, 0.10);
    --rs-teal-bd: rgba(13, 148, 136, 0.25);
    --rs-blue: #4169E1;
    --rs-text: #0f172a;
    --rs-text-2: #6b7280;
    --rs-border: #e8edf4;
    --rs-bg: #f8fafc;
    --rs-white: #ffffff;
    --rs-radius: 16px;
    --rs-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --rs-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10);
    --rs-trans: all 0.25s ease;
}

/* ========================= HERO ========================= */
.rs-hero {
    position: relative;
    background: linear-gradient(135deg, #062622 0%, #0a3530 35%, #0d3d38 65%, #0a2e2a 100%);
    padding: 70px 0 0;
    overflow: hidden;
    color: #fff;
}

.rs-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.rs-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(13, 148, 136, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 148, 136, 0.07) 1px, transparent 1px);
    background-size: 50px 50px;
}

.rs-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.rs-glow-1 {
    width: 500px;
    height: 500px;
    background: #0d9488;
    opacity: 0.14;
    top: -150px;
    right: 80px;
}

.rs-glow-2 {
    width: 350px;
    height: 350px;
    background: #4169E1;
    opacity: 0.08;
    bottom: 0;
    left: -80px;
}

.rs-glow-3 {
    width: 220px;
    height: 220px;
    background: #0d9488;
    opacity: 0.08;
    bottom: 40px;
    right: 30%;
}

.rs-hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    padding-bottom: 0;
    min-height: 580px;
}

/* LEFT */
.rs-hero-left {
    flex: 1;
    min-width: 0;
    padding-bottom: 60px;
}

.rs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 148, 136, 0.15);
    color: #2dd4bf;
    border: 1px solid rgba(13, 148, 136, 0.35);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.rs-badge-dot {
    width: 7px;
    height: 7px;
    background: #0d9488;
    border-radius: 50%;
    animation: rs-blink 2s ease-in-out infinite;
}

@keyframes rs-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.rs-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-family: 'Outfit', sans-serif;
}

.rs-highlight {
    color: #2dd4bf;
}

.rs-hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 500px;
}

/* Hero feature list */
.rs-hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
    padding: 0;
}

.rs-hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.rs-feat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(13, 148, 136, 0.18);
    border: 1px solid rgba(13, 148, 136, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2dd4bf;
    flex-shrink: 0;
}

.rs-hero-price {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.rs-hero-price span {
    color: #fff;
    font-weight: 800;
    font-size: 26px;
}

.rs-hero-price span em {
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.rs-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
}

.rs-hero-trust {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.rs-trust-dot {
    opacity: 0.4;
    font-size: 18px;
}

/* RIGHT — WHM Card */
.rs-hero-right {
    flex: 0 0 460px;
    position: relative;
    padding-bottom: 40px;
}

.rs-whm-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rs-whm-header {
    background: #0f2219;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rs-whm-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rs-whm-logo {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(13, 148, 136, 0.2);
    border: 1px solid rgba(13, 148, 136, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2dd4bf;
}

.rs-whm-name {
    font-size: 13px;
    font-weight: 700;
    color: #f0fdfa;
    line-height: 1.2;
}

.rs-whm-sub {
    font-size: 11px;
    color: #94a3b8;
}

.rs-live-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.rs-live-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: rs-blink 1.5s ease-in-out infinite;
}

/* Metric tiles */
.rs-metric-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #f1f5f9;
}

.rs-metric-tile {
    background: #fff;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.rs-mt-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-mt-teal {
    background: rgba(13, 148, 136, 0.1);
    color: #0d9488;
}

.rs-mt-blue {
    background: rgba(65, 105, 225, 0.1);
    color: #4169E1;
}

.rs-mt-green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.rs-mt-amber {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.rs-mt-val {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.rs-mt-lbl {
    font-size: 10.5px;
    color: #94a3b8;
    font-weight: 500;
}

/* Uptime bar */
.rs-uptime-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f0fdf4;
    font-size: 12px;
    font-weight: 600;
    color: #15803d;
}

.rs-uptime-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: rs-blink 2s infinite;
}

.rs-uptime-bar-wrap {
    flex: 1;
    background: #dcfce7;
    border-radius: 50px;
    height: 5px;
    overflow: hidden;
}

.rs-uptime-bar {
    width: 99.9%;
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 50px;
}

/* Pills */
.rs-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 14px;
    border-top: 1px solid #f1f5f9;
}

.rs-pill {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.rs-pill-teal {
    background: rgba(13, 148, 136, 0.08);
    color: #0d9488;
    border: 1px solid rgba(13, 148, 136, 0.2);
}

.rs-pill-blue {
    background: rgba(65, 105, 225, 0.08);
    color: #4169E1;
    border: 1px solid rgba(65, 105, 225, 0.2);
}

.rs-pill-green {
    background: rgba(34, 197, 94, 0.08);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.rs-pill-amber {
    background: rgba(245, 158, 11, 0.08);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Card footer */
.rs-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.rs-cf-stat {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-align: center;
}

.rs-cf-stat span {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
}

.rs-cf-stat strong {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
}

.rs-cf-sep {
    width: 1px;
    height: 28px;
    background: #e2e8f0;
}

/* Float chips */
.rs-float-chip {
    position: absolute;
    background: #fff;
    border: 1px solid var(--rs-border);
    border-radius: 30px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--rs-text);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.rs-chip-1 {
    top: -14px;
    left: -18px;
    animation: rs-float 4s ease-in-out infinite;
}

.rs-chip-2 {
    bottom: 14px;
    right: -14px;
    animation: rs-float 4s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes rs-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ========================= STATS BAR ========================= */
.rs-stats-bar {
    background: var(--rs-white);
    border-top: 1px solid var(--rs-border);
    border-bottom: 1px solid var(--rs-border);
    padding: 20px 0;
}

.rs-stats-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.rs-stat-item {
    text-align: center;
}

.rs-stat-num {
    font-size: 30px;
    font-weight: 800;
    color: var(--rs-teal);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.rs-stat-lbl {
    font-size: 13px;
    color: var(--rs-text-2);
    margin-top: 4px;
}

.rs-stat-sep {
    width: 1px;
    height: 42px;
    background: var(--rs-border);
    flex-shrink: 0;
}

/* ========================= TEXT ACCENT ========================= */
.rs-text-accent {
    color: var(--rs-teal);
}

/* ========================= SECTION BADGE (teal) ========================= */
.rs-section-badge-teal {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--rs-teal-lt);
    color: var(--rs-teal);
    border: 1px solid var(--rs-teal-bd);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

/* ========================= PLANS ========================= */
.rs-plans {
    padding: 90px 0;
    background: var(--rs-bg);
}

.rs-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.rs-plan-card {
    background: var(--rs-white);
    border: 1.5px solid var(--rs-border);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: var(--rs-trans);
}

.rs-plan-card:hover {
    border-color: var(--rs-teal-bd);
    box-shadow: var(--rs-shadow-lg);
    transform: translateY(-4px);
}

.rs-plan-hot {
    border-color: var(--rs-teal);
    box-shadow: 0 8px 32px rgba(13, 148, 136, 0.15);
    transform: translateY(-6px);
}

.rs-plan-hot:hover {
    box-shadow: 0 16px 48px rgba(13, 148, 136, 0.22);
    transform: translateY(-10px);
}

.rs-hot-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rs-teal);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.rs-plan-type {
    font-size: 11px;
    font-weight: 700;
    color: var(--rs-teal);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.rs-plan-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--rs-text);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.rs-plan-orig {
    font-size: 13px;
    color: var(--rs-text-2);
    margin-bottom: 2px;
    min-height: 20px;
}

.rs-plan-was {
    text-decoration: line-through;
    color: #94a3b8;
}

.rs-plan-price-wrap {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 18px;
    line-height: 1;
}

.rs-price-sym {
    font-size: 20px;
    font-weight: 700;
    color: var(--rs-text);
    margin-bottom: 4px;
}

.rs-price-num {
    font-size: 38px;
    font-weight: 800;
    color: var(--rs-text);
    font-family: 'Outfit', sans-serif;
}

.rs-price-per {
    font-size: 14px;
    color: var(--rs-text-2);
    margin-bottom: 6px;
}

.rs-plan-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--rs-trans);
    margin-bottom: 20px;
}

.rs-btn-outline {
    border: 1.5px solid var(--rs-teal-bd);
    color: var(--rs-teal);
    background: var(--rs-teal-lt);
}

.rs-btn-outline:hover {
    background: var(--rs-teal);
    color: #fff;
    border-color: var(--rs-teal);
}

.rs-btn-primary {
    background: var(--rs-teal);
    color: #fff;
    border: 1.5px solid var(--rs-teal);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.rs-btn-primary:hover {
    background: #0b8076;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
    transform: translateY(-1px);
}

.rs-plan-divider {
    height: 1px;
    background: var(--rs-border);
    margin-bottom: 18px;
}

.rs-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.rs-plan-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: #374151;
}

.rs-chk {
    color: var(--rs-teal);
    font-weight: 700;
    flex-shrink: 0;
}

.rs-no {
    color: #ef4444;
    font-weight: 700;
    flex-shrink: 0;
}

.rs-teal-txt {
    color: var(--rs-teal);
}

.rs-plans-note {
    text-align: center;
    font-size: 13.5px;
    color: var(--rs-text-2);
    margin-top: 28px;
}

/* Billing toggle */
.wp-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.wp-toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--rs-text);
    transition: opacity 0.2s;
}

.wp-toggle-btn {
    position: relative;
    width: 48px;
    height: 26px;
    background: #e2e8f0;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.25s;
    flex-shrink: 0;
}

.wp-toggle-btn.active {
    background: var(--rs-teal);
}

.wp-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.wp-toggle-btn.active .wp-toggle-thumb {
    transform: translateX(22px);
}

.wp-save-badge {
    background: rgba(13, 148, 136, 0.1);
    color: var(--rs-teal);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
}

/* ========================= HOW IT WORKS ========================= */
.rs-steps-section {
    padding: 90px 0;
    background: var(--rs-white);
}

.rs-steps-title {
    margin-top: 10px;
}

.rs-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.rs-step-card {
    background: var(--rs-bg);
    border: 1.5px solid var(--rs-border);
    border-radius: 18px;
    padding: 30px 24px;
    transition: var(--rs-trans);
}

.rs-step-card:hover {
    border-color: var(--rs-teal-bd);
    box-shadow: var(--rs-shadow-lg);
    transform: translateY(-3px);
}

.rs-step-num {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--rs-teal);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.rs-step-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--rs-text);
    margin: 0 0 10px;
}

.rs-step-card p {
    font-size: 14px;
    color: var(--rs-text-2);
    line-height: 1.65;
    margin: 0;
}

/* ========================= COMPARE TABLE ========================= */
.rs-compare {
    padding: 90px 0;
    background: var(--rs-bg);
}

.rs-table-wrap {
    overflow-x: auto;
    border-radius: var(--rs-radius);
    border: 1.5px solid var(--rs-border);
    margin-top: 36px;
}

.rs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: var(--rs-white);
}

.rs-table thead tr {
    background: #f0fdfa;
    border-bottom: 2px solid var(--rs-teal-bd);
}

.rs-table th {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--rs-text);
    text-align: left;
}

.rs-col-hl {
    background: rgba(13, 148, 136, 0.04);
}

.rs-table thead .rs-col-hl {
    background: var(--rs-teal-lt);
    color: var(--rs-teal);
}

.rs-best-tag {
    display: inline-block;
    background: var(--rs-teal);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
}

.rs-table tbody tr {
    border-bottom: 1px solid var(--rs-border);
    transition: background 0.15s;
}

.rs-table tbody tr:last-child {
    border-bottom: none;
}

.rs-table tbody tr:hover {
    background: #f8fafc;
}

.rs-table tbody tr:hover .rs-col-hl {
    background: rgba(13, 148, 136, 0.06);
}

.rs-table td {
    padding: 14px 20px;
    color: #374151;
    vertical-align: middle;
}

/* ========================= WHY SKYSERVER ========================= */
.rs-why {
    padding: 90px 0;
    background: var(--rs-white);
}

.rs-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.rs-why-card {
    background: var(--rs-bg);
    border: 1.5px solid var(--rs-border);
    border-radius: 18px;
    padding: 30px 26px;
    transition: var(--rs-trans);
}

.rs-why-card:hover {
    border-color: var(--rs-teal-bd);
    box-shadow: var(--rs-shadow-lg);
    transform: translateY(-3px);
}

.rs-why-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--rs-teal);
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
}

.rs-why-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--rs-text);
    margin: 0 0 10px;
}

.rs-why-card p {
    font-size: 14px;
    color: var(--rs-text-2);
    line-height: 1.65;
    margin: 0;
}

/* ========================= REVIEWS ========================= */
.rs-reviews {
    padding: 90px 0;
    background: var(--rs-bg);
}

.rs-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.rs-review-card {
    background: var(--rs-white);
    border: 1.5px solid var(--rs-border);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--rs-trans);
}

.rs-review-card:hover {
    border-color: var(--rs-teal-bd);
    box-shadow: var(--rs-shadow-lg);
    transform: translateY(-3px);
}

.rs-review-feat {
    border-color: var(--rs-teal);
    box-shadow: 0 8px 28px rgba(13, 148, 136, 0.12);
}

.rs-review-stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 2px;
}

.rs-review-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.rs-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.rs-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--rs-teal), #2dd4bf);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rs-reviewer strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--rs-text);
}

.rs-reviewer span {
    display: block;
    font-size: 12px;
    color: var(--rs-text-2);
    margin-top: 2px;
}

/* ========================= PILLS BAR ========================= */
.rs-pills-bar {
    background: var(--rs-white);
    border-top: 1px solid var(--rs-border);
    border-bottom: 1px solid var(--rs-border);
    padding: 18px 0;
    overflow: hidden;
}

.rs-pills-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.rs-feat-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--rs-teal-lt);
    color: var(--rs-teal);
    border: 1px solid var(--rs-teal-bd);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

/* ========================= LEARN SECTION ========================= */
.rs-learn {
    padding: 90px 0;
    background: var(--rs-bg);
}

.rs-learn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.rs-learn-card {
    background: var(--rs-white);
    border: 1.5px solid var(--rs-border);
    border-radius: 18px;
    padding: 30px 28px;
    transition: var(--rs-trans);
}

.rs-learn-card:hover {
    border-color: var(--rs-teal-bd);
    box-shadow: var(--rs-shadow-lg);
}

.rs-learn-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--rs-text);
    margin: 0 0 14px;
}

.rs-learn-card p {
    font-size: 14.5px;
    color: var(--rs-text-2);
    line-height: 1.75;
    margin: 0;
}

/* ========================= FAQ ========================= */
.faq-section {
    padding: 90px 0;
    background: var(--rs-white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 52px;
    align-items: start;
    margin-top: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--rs-border);
    background: var(--rs-white);
}

.faq-item:first-of-type {
    border-top: 1px solid var(--rs-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 15px;
    font-weight: 600;
    color: var(--rs-text);
    line-height: 1.45;
    font-family: 'Outfit', sans-serif;
}

.faq-plus-icon {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--rs-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--rs-text-2);
    transition: var(--rs-trans);
    background: var(--rs-white);
}

.faq-item.active .faq-plus-icon {
    background: var(--rs-teal);
    border-color: var(--rs-teal);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 240px;
}

.faq-answer-content {
    padding: 0 24px 20px;
    font-size: 14.5px;
    color: var(--rs-text-2);
    line-height: 1.72;
}

/* FAQ contact card */
.faq-contact-card {
    background: var(--rs-white);
    border: 1.5px solid var(--rs-border);
    border-radius: var(--rs-radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: sticky;
    top: 100px;
    text-align: center;
    box-shadow: var(--rs-shadow);
}

.faq-contact-icon {
    width: 70px;
    height: 70px;
    background: var(--rs-teal-lt);
    border: 2px solid var(--rs-teal-bd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rs-teal);
    margin-bottom: 4px;
}

.faq-contact-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--rs-text);
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.faq-contact-card p {
    font-size: 13.5px;
    color: var(--rs-text-2);
    line-height: 1.65;
    margin: 0;
}

.faq-contact-btn {
    display: block;
    width: 100%;
    background: var(--rs-teal);
    color: #fff;
    padding: 13px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: var(--rs-trans);
    margin-top: 4px;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.faq-contact-btn:hover {
    background: #0b8076;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

/* ========================= CTA ========================= */
.rs-cta {
    position: relative;
    background: linear-gradient(135deg, #3b4fd8 0%, #4c6ef5 40%, #5b7fff 70%, #6c8aff 100%);
    padding: 90px 0;
    overflow: hidden;
}

.rs-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rs-cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.rs-cta-shape-1 {
    width: 500px;
    height: 400px;
    background: rgba(255, 255, 255, 0.10);
    top: -100px;
    right: -60px;
}

.rs-cta-shape-2 {
    width: 350px;
    height: 350px;
    background: rgba(80, 40, 220, 0.25);
    bottom: -60px;
    left: 0;
}

.rs-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.rs-cta-title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.rs-cta-title span {
    color: #fff;
}

.rs-cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    line-height: 1.7;
    margin: 0;
}

.rs-cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
}

.rs-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #3b4fd8;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 15.5px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--rs-trans);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.15);
}

.rs-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
}

.rs-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 15.5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--rs-trans);
    backdrop-filter: blur(4px);
}

.rs-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.rs-cta-features {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.72);
    flex-wrap: wrap;
    justify-content: center;
}

.rs-cta-dot {
    opacity: 0.4;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1200px) {
    .rs-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rs-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rs-hero-right {
        flex: 0 0 400px;
    }
}

@media (max-width: 960px) {
    .rs-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rs-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rs-stats-inner {
        gap: 8px;
    }

    .rs-stat-sep {
        display: none;
    }

    .rs-stat-item {
        flex: 1 1 40%;
    }
}

@media (max-width: 900px) {
    .rs-hero {
        padding: 70px 0 0;
    }

    .rs-hero-container {
        flex-direction: column;
        gap: 36px;
        padding-top: 30px;
        min-height: auto;
    }

    .rs-hero-left {
        padding-bottom: 0;
        width: 100%;
        text-align: center;
    }

    .rs-hero-right {
        flex: unset;
        width: 100%;
        max-width: 460px;
        padding-bottom: 40px;
    }

    .rs-hero-sub {
        max-width: 100%;
    }

    .rs-hero-features {
        align-items: flex-start;
        display: inline-flex;
    }

    .rs-hero-actions {
        justify-content: center;
    }

    .rs-hero-badge {
        display: inline-flex;
    }

    .rs-hero-price {
        justify-content: center;
        display: flex;
    }

    .rs-hero-trust {
        justify-content: center;
    }

    .rs-hero-title {
        font-size: 40px;
    }

    .rs-learn-grid {
        grid-template-columns: 1fr;
    }

    .rs-faq-inner,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-contact-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .rs-hero-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .rs-hero-sub {
        font-size: 15px;
    }

    .rs-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .sh-btn-primary,
    .sh-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .rs-plans-grid {
        grid-template-columns: 1fr;
    }

    .rs-plan-hot {
        transform: none;
    }

    .rs-steps-grid {
        grid-template-columns: 1fr;
    }

    .rs-why-grid {
        grid-template-columns: 1fr;
    }

    .rs-reviews-grid {
        grid-template-columns: 1fr;
    }

    .rs-metric-tiles {
        grid-template-columns: repeat(2, 1fr);
    }

    .rs-card-footer {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .rs-cta {
        padding: 64px 0;
    }

    .rs-cta-title {
        font-size: 28px;
    }

    .rs-cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .rs-cta-primary,
    .rs-cta-secondary {
        text-align: center;
        justify-content: center;
    }

    .rs-stats-inner {
        flex-direction: column;
        gap: 0;
    }

    .rs-stat-item {
        width: 100%;
        padding: 12px 20px;
        border-bottom: 1px solid var(--rs-border);
    }

    .rs-stat-item:last-child {
        border-bottom: none;
    }

    .rs-stat-sep {
        display: none;
    }

    .rs-table th,
    .rs-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .rs-float-chip {
        display: none;
    }

    .rs-learn {
        padding: 60px 0;
    }

    .rs-why,
    .rs-reviews,
    .rs-steps-section,
    .rs-compare,
    .rs-plans {
        padding: 60px 0;
    }

    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 380px) {
    .rs-hero-title {
        font-size: 27px;
    }

    .rs-cta-title {
        font-size: 23px;
    }

    .rs-plans-grid,
    .rs-steps-grid,
    .rs-why-grid {
        gap: 12px;
    }
}

/* ========================= HERO BUTTONS ========================= */
.sh-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0d9488;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #0d9488;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(13, 148, 136, 0.35);
    font-family: 'Outfit', sans-serif;
}

.sh-btn-primary:hover {
    background: #0b8076;
    border-color: #0b8076;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13, 148, 136, 0.45);
}

.sh-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.28);
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
    font-family: 'Outfit', sans-serif;
}

.sh-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}