:root {
    --rm-red: #e11d48;
    --rm-red-dark: #be123c;
    --rm-blue: #2563eb;
    --rm-dark: #111827;
    --rm-soft-dark: #1f2937;
    --rm-muted: #6b7280;
    --rm-bg: #f8fafc;
    --rm-card: #ffffff;
    --rm-border: rgba(17, 24, 39, .10);
    --rm-shadow: 0 24px 70px rgba(15, 23, 42, .11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--rm-dark);
    background:
        radial-gradient(circle at 8% 8%, rgba(225, 29, 72, .16), transparent 34rem),
        radial-gradient(circle at 92% 3%, rgba(37, 99, 235, .11), transparent 32rem),
        linear-gradient(180deg, #fff 0%, #f8fafc 45%, #fff 100%);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    transition: .2s ease;
}

.rm-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 82px;
    border-bottom: 1px solid var(--rm-border);
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(16px);
}

.rm-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--rm-dark);
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -.02em;
}

.rm-logo img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.rm-logo span {
    font-size: 1.18rem;
}

.rm-nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.rm-nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 750;
    font-size: .94rem;
}

.rm-nav-links a:hover {
    color: var(--rm-red);
}

.btn-rm-primary,
.btn-rm-outline,
.btn-rm-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 850;
    line-height: 1.1;
}

.btn-rm-primary {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--rm-red), #dc2626);
    box-shadow: 0 16px 30px rgba(220, 38, 38, .23);
}

.btn-rm-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 20px 36px rgba(220, 38, 38, .28);
}

.btn-rm-outline {
    color: var(--rm-dark);
    background: #fff;
    border: 1px solid var(--rm-border);
}

.btn-rm-outline:hover {
    color: var(--rm-red);
    border-color: rgba(225, 29, 72, .35);
    transform: translateY(-1px);
}

.btn-rm-dark {
    color: #fff;
    background: var(--rm-dark);
    border: 1px solid rgba(255, 255, 255, .12);
}

.btn-rm-dark:hover {
    color: #fff;
    background: #030712;
    transform: translateY(-1px);
}

.hero {
    padding: 84px 0 54px;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(225, 29, 72, .22);
    background: rgba(225, 29, 72, .07);
    color: #be123c;
    font-weight: 850;
    font-size: .9rem;
}

.hero h1 {
    margin-top: 22px;
    font-size: clamp(2.55rem, 5.35vw, 5.8rem);
    line-height: .98;
    font-weight: 950;
    letter-spacing: -.07em;
}

.hero h1 .accent {
    color: var(--rm-red);
}

.hero-lead {
    max-width: 790px;
    margin-top: 25px;
    color: #4b5563;
    font-size: clamp(1.08rem, 1.55vw, 1.36rem);
    line-height: 1.68;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    color: #4b5563;
    font-weight: 700;
    font-size: .94rem;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-proof span::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    background: #16a34a;
    font-size: .78rem;
    font-weight: 950;
}

.hero-card {
    position: relative;
    padding: 30px;
    border: 1px solid var(--rm-border);
    border-radius: 32px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--rm-shadow);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -35% -20% auto auto;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: rgba(225, 29, 72, .10);
}

.hero-card img {
    position: relative;
    z-index: 1;
    width: min(350px, 80%);
    display: block;
    margin: 0 auto 24px;
}

.mock-card {
    position: relative;
    z-index: 1;
    border: 1px solid var(--rm-border);
    border-radius: 24px;
    background: #fff;
    padding: 20px;
}

.mock-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(17, 24, 39, .08);
    margin-bottom: 12px;
}

.mock-title {
    font-weight: 900;
}

.mock-status {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(22, 163, 74, .10);
    color: #15803d;
    font-size: .78rem;
    font-weight: 850;
}

.mock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(17, 24, 39, .07);
}

.mock-row:last-child {
    border-bottom: 0;
}

.mock-label {
    color: var(--rm-muted);
    font-size: .92rem;
}

.mock-value {
    font-weight: 900;
}

.section {
    padding: 78px 0;
}

.section-title {
    max-width: 870px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-kicker {
    color: var(--rm-red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .8rem;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: clamp(2rem, 3.2vw, 3.45rem);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -.052em;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--rm-muted);
    line-height: 1.72;
    font-size: 1.08rem;
}

.pain-card,
.feature-card,
.step-card {
    height: 100%;
    padding: 27px;
    border: 1px solid var(--rm-border);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .055);
}

.pain-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .98)),
        radial-gradient(circle at top right, rgba(225, 29, 72, .12), transparent 16rem);
}

.pain-icon,
.feature-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    margin-bottom: 18px;
    font-size: 1.35rem;
    font-weight: 950;
}

.pain-icon {
    background: rgba(225, 29, 72, .10);
    color: var(--rm-red);
}

.feature-icon {
    background: rgba(37, 99, 235, .10);
    color: var(--rm-blue);
}

.pain-card h3,
.feature-card h3,
.step-card h3 {
    font-size: 1.15rem;
    font-weight: 950;
    margin-bottom: 10px;
}

.pain-card p,
.feature-card p,
.step-card p {
    color: var(--rm-muted);
    line-height: 1.66;
    margin: 0;
}

.dark-section {
    margin: 40px 0;
    padding: clamp(38px, 6vw, 70px);
    border-radius: 36px;
    background:
        radial-gradient(circle at 10% 5%, rgba(225, 29, 72, .24), transparent 28rem),
        linear-gradient(135deg, #111827, #030712);
    color: #fff;
    box-shadow: 0 30px 80px rgba(15, 23, 42, .22);
}

.dark-section h2 {
    font-size: clamp(2rem, 3vw, 3.35rem);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -.05em;
}

.dark-section p {
    color: rgba(255, 255, 255, .74);
    line-height: 1.72;
}

.module-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.module-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
}

.module-item strong {
    display: block;
    margin-bottom: 3px;
}

.module-item span {
    color: rgba(255, 255, 255, .68);
    font-size: .94rem;
}

.module-check {
    display: inline-grid;
    place-items: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #fff;
    background: #16a34a;
    font-size: .82rem;
    font-weight: 950;
    margin-top: 1px;
}

.showcase-link {
    display: block;
    height: 100%;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, .07);
}

.showcase-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    transform: translateY(-2px);
}

.showcase-link strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.16rem;
    font-weight: 950;
}

.showcase-link span {
    color: rgba(255, 255, 255, .70);
}

.step-number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--rm-dark);
    color: #fff;
    font-weight: 950;
}

.cta-box {
    position: relative;
    overflow: hidden;
    padding: clamp(36px, 6vw, 70px);
    border: 1px solid rgba(225, 29, 72, .18);
    border-radius: 36px;
    background:
        radial-gradient(circle at 12% 0%, rgba(225, 29, 72, .14), transparent 30rem),
        #fff;
    box-shadow: var(--rm-shadow);
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(2.1rem, 3.8vw, 4rem);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -.06em;
    margin-bottom: 18px;
}

.cta-box p {
    max-width: 790px;
    margin: 0 auto 28px;
    color: var(--rm-muted);
    line-height: 1.75;
    font-size: 1.08rem;
}

.rm-footer {
    padding: 30px 0;
    border-top: 1px solid var(--rm-border);
    color: var(--rm-muted);
    background: rgba(255, 255, 255, .72);
}

.fw-black {
    font-weight: 950;
}

body.rm-offer-open {
    overflow: hidden;
}

.rm-offer-modal[hidden] {
    display: none;
}

.rm-offer-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.rm-offer-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 23, 0.72);
    backdrop-filter: blur(6px);
}

.rm-offer-modal__box {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 24px));
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    margin: 16px auto;
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.rm-offer-modal__close {
    position: sticky;
    top: 0;
    float: right;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
}

.rm-offer-header {
    max-width: 780px;
    margin-bottom: 24px;
}

.rm-offer-header h2 {
    margin: 6px 0 8px;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
}

.rm-offer-header p,
.rm-muted {
    color: #64748b;
}

.rm-offer-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: #f1f5f9;
}

.rm-offer-step-tab {
    flex: 1 1 auto;
    border: 0;
    border-radius: 14px;
    padding: 10px 12px;
    background: transparent;
    color: #475569;
    font-weight: 700;
    font-size: 0.92rem;
}

.rm-offer-step-tab.is-active {
    background: #0d6efd;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(13, 110, 253, 0.25);
}

.rm-offer-step {
    display: none;
}

.rm-offer-step.is-active {
    display: block;
}

.rm-offer-step h3 {
    margin-bottom: 18px;
    color: #0f172a;
    font-weight: 800;
}

.rm-offer-step h4 {
    margin: 0 0 14px;
    color: #0f172a;
    font-weight: 800;
    font-size: 1.05rem;
}

.rm-radio-list {
    display: grid;
    gap: 12px;
}

.rm-radio-card,
.rm-check-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 18px;
    background: #ffffff;
    cursor: pointer;
    transition: 0.18s ease;
}

.rm-radio-card:hover,
.rm-check-card:hover {
    transform: translateY(-1px);
    border-color: rgba(13, 110, 253, 0.35);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.rm-radio-card input,
.rm-check-card input {
    margin-top: 4px;
}

.rm-radio-card strong,
.rm-check-card strong {
    display: block;
    color: #0f172a;
}

.rm-radio-card small,
.rm-check-card small {
    display: block;
    margin-top: 3px;
    color: #64748b;
}

.rm-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.rm-check-card--wide {
    width: 100%;
}

.rm-feature-group {
    padding: 18px;
    margin-bottom: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.rm-conditional-box {
    padding: 18px;
    border-radius: 20px;
    background: #eff6ff;
    border: 1px solid rgba(13, 110, 253, 0.18);
}

.rm-info-box {
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid rgba(249, 115, 22, 0.22);
    font-size: 0.95rem;
}

.rm-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    background: #f8fafc;
    color: #475569;
}

.rm-consent input {
    margin-top: 4px;
}

.rm-offer-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.rm-module-card {
    display: block !important;
    cursor: default;
}

.rm-module-card__header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.rm-module-card__header input {
    margin-top: 4px;
    flex: 0 0 auto;
}

.rm-module-card__header span {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rm-module-card__header strong {
    font-size: 1.05rem;
    font-weight: 800;
}

.rm-module-card__header small {
    color: #52627a;
}

.rm-module-card__options {
    margin-top: 18px;
    padding-left: 30px;
}

.rm-module-card__options h5 {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 800;
}

.rm-module-channel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.rm-channel-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.82);
    cursor: pointer;
}

.rm-channel-card input {
    margin-top: 4px;
    flex: 0 0 auto;
}

.rm-channel-card span {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rm-channel-card strong {
    font-size: .95rem;
    font-weight: 800;
}

.rm-channel-card small {
    color: #52627a;
}

@media (max-width: 768px) {
    .rm-module-channel-grid {
        grid-template-columns: 1fr;
    }

    .rm-module-card__options {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .rm-offer-modal__box {
        padding: 20px;
        border-radius: 18px;
    }

    .rm-check-grid {
        grid-template-columns: 1fr;
    }

    .rm-offer-progress {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rm-offer-actions {
        flex-direction: column;
    }

    .rm-offer-actions .btn-rm-primary,
    .rm-offer-actions .btn-rm-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .rm-nav-links {
        display: none;
    }

    .hero {
        padding-top: 54px;
    }

    .hero-card {
        margin-top: 32px;
    }
}

@media (max-width: 575px) {
    .rm-logo img {
        width: 46px;
        height: 46px;
    }

    .rm-logo span {
        font-size: 1rem;
    }

    .hero-actions .btn-rm-primary,
    .hero-actions .btn-rm-outline,
    .hero-actions .btn-rm-dark {
        width: 100%;
    }
}