/* Reset within our wrapper only */
.rs-wrap * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.rs-wrap {
    font-family: 'Lato', sans-serif;
    /* max-width: 780px; */
    padding: 2rem 1rem 3rem;
    color: #1a1a1a;
}

/* ── Hero banner ── */
.rs-hero {
    background: #234137;
    border-radius: 12px;
    padding: 2rem 2.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}



.rs-hero-logo img {
    /* max-height: 100px; */
    /* Adjust based on your logo size */
    width: auto;
}

.rs-hero-card {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}
.rs-hero-icon {
    margin-right: 20px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-hero-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.rs-hero-body h1 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.rs-hero-body p {
    font-size: 14px;
    color: #CED4DA;
    line-height: 1.65;
}

/* ── Section label ── */
.rs-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

/* ── 3-step strip ── */
.rs-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 1.75rem;
}

.rs-step {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    position: relative;
}

.rs-step-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #234137;
    background: #e6ede9;
    border-radius: 20px;
    padding: 2px 10px;
    margin-bottom: 0.6rem;
}

.rs-step h3 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.35rem;
}

.rs-step p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.55;
}

.rs-step a {
    color: #234137;
    font-weight: 700;
    text-decoration: none;
}

.rs-step a:hover {
    text-decoration: underline;
}

/* Arrow connector between steps */
.rs-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #CED4DA;
    z-index: 1;
}

/* ── Shortcode groups ── */
.rs-shortcode-group {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.rs-sc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid #f3f4f6;
}

.rs-sc-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #234137;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-sc-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.rs-sc-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.rs-sc-subtitle {
    font-size: 12px;
    color: #6b7280;
}

/* Layout option cards */
.rs-layouts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.rs-layout-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    transition: border-color 0.15s;
}

.rs-layout-card:hover {
    border-color: #234137;
}

.rs-layout-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #234137;
    background: #e6ede9;
    border-radius: 20px;
    padding: 2px 8px;
    margin-bottom: 0.5rem;
}

.rs-layout-name {
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.45rem;
}

.rs-layout-desc {
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.rs-sc-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    color: #374151;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    padding: 5px 8px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    position: relative;
}

.rs-sc-code:hover {
    border-color: #234137;
    background: #f0f5f2;
}

.rs-sc-code .rs-copy-icon {
    flex-shrink: 0;
    opacity: 0.4;
}

.rs-sc-code .rs-copy-icon svg {
    width: 12px;
    height: 12px;
    fill: #374151;
    display: block;
}

.rs-copied-toast {
    display: none;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    background: #234137;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
}

/* ── Footer support bar ── */
.rs-footer {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.rs-footer-left {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.rs-footer-left a {
    color: #234137;
    font-weight: 700;
    text-decoration: none;
}

.rs-footer-left a:hover {
    text-decoration: underline;
}

.rs-footer-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.rs-btn {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 7px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.rs-btn:hover {
    border-color: #234137;
    background: #f0f5f2;
    color: #234137;
}

.rs-btn-primary {
    background: #234137;
    color: #fff !important;
    border-color: #234137;
}

.rs-btn-primary:hover {
    background: #1a2f27;
    border-color: #1a2f27;
}

.rs-up-wrap * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.rs-up-wrap {
    font-family: 'Lato', sans-serif;
    /* max-width: 780px; */
    padding: 2rem 1rem 3rem;
    color: #1a1a1a;
}

/* ── Hero ── */
.rs-up-hero {
    background: #234137;
    border-radius: 12px;
    padding: 2rem 2.25rem;
    margin-bottom: 1.5rem;
}

.rs-up-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 1rem;
}

.rs-up-eyebrow span {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.rs-up-eyebrow .rs-star-icon {
    color: #f5c842;
    font-size: 13px;
}

.rs-up-hero h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.rs-up-hero p {
    font-size: 14px;
    color: #CED4DA;
    line-height: 1.7;
    max-width: 580px;
}

/* ── Section label ── */
.rs-up-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

/* ── Feature cards ── */
.rs-up-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 1.5rem;
}

.rs-up-feat {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: border-color 0.15s;
}

.rs-up-feat:hover {
    border-color: #234137;
}

.rs-up-feat-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #e6ede9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-up-feat-icon svg {
    width: 18px;
    height: 18px;
    fill: #234137;
}

.rs-up-feat h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.rs-up-feat p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.55;
}

/* ── Platform pills ── */
.rs-up-platforms {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.1rem 1.4rem;
    margin-bottom: 1.5rem;
}

.rs-up-plat-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 0.6rem;
}

.rs-up-plat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
}

.rs-up-plat-pill svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── CTA banner ── */
.rs-up-cta {
    background: #234137;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.rs-up-cta-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.rs-up-cta-text p {
    font-size: 13px;
    color: #CED4DA;
}

.rs-up-btn {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    background: #f5c842;
    color: #1a1a1a;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

.rs-up-btn:hover {
    background: #e6b93a;
    color: #1a1a1a;
}

/* Responsive */
@media (max-width: 640px) {
    .rs-up-features {
        grid-template-columns: 1fr;
    }

    .rs-up-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .rs-steps {
        grid-template-columns: 1fr;
    }

    .rs-step:not(:last-child)::after {
        display: none;
    }

    .rs-layouts {
        grid-template-columns: 1fr;
    }

    .rs-hero {
        flex-direction: column;
        gap: 0.75rem;
    }

    .rs-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}