* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.rfal-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: rgba(11, 7, 12, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(245, 198, 102, 0.14);
}

.rfal-age-strip {
    width: 100%;
    background: linear-gradient(90deg, rgba(122, 15, 42, 0.72), rgba(29, 11, 18, 0.94));
    border-bottom: 1px solid rgba(245, 198, 102, 0.12);
}

.rfal-age-strip-inner {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rfal-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 20px;
    padding: 0 7px;
    border: 1px solid rgba(245, 198, 102, 0.48);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.1);
    color: #f5c666;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
}

.rfal-age-strip p {
    margin: 0;
    color: rgba(255, 246, 230, 0.78);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
}

.rfal-header-shell {
    width: min(100% - 32px, 1180px);
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.rfal-header-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.rfal-header-logo img {
    display: block;
    width: 156px;
    height: auto;
}

.rfal-header-nav {
    display: none;
}

.rfal-nav-link {
    position: relative;
    color: rgba(255, 246, 230, 0.74);
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.rfal-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(90deg, #d8194c, #f5c666);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.rfal-nav-link:hover,
.rfal-nav-link-active {
    color: #fff6e6;
}

.rfal-nav-link:hover::after,
.rfal-nav-link-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.rfal-header-actions {
    display: none;
}

.rfal-header-btn {
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff6e6;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.rfal-header-btn:hover {
    transform: translateY(-1px);
}

.rfal-header-btn-ghost {
    border: 1px solid rgba(245, 198, 102, 0.32);
    background: rgba(255, 255, 255, 0.04);
}

.rfal-header-btn-ghost:hover {
    border-color: rgba(245, 198, 102, 0.65);
    background: rgba(245, 198, 102, 0.08);
}

.rfal-header-btn-primary {
    border: 1px solid rgba(245, 198, 102, 0.54);
    background: linear-gradient(135deg, #d8194c 0%, #8d1234 48%, #f5c666 100%);
    box-shadow: 0 10px 26px rgba(216, 25, 76, 0.28);
}

.rfal-header-btn-primary:hover {
    box-shadow: 0 14px 34px rgba(216, 25, 76, 0.36);
}

.rfal-menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(245, 198, 102, 0.26);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.rfal-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 10px;
    background: #fff6e6;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.rfal-menu-toggle.rfal-menu-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.rfal-menu-toggle.rfal-menu-open span:nth-child(2) {
    opacity: 0;
}

.rfal-menu-toggle.rfal-menu-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.rfal-mobile-panel {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.25s ease;
}

.rfal-mobile-panel.rfal-mobile-panel-active {
    max-height: 430px;
    opacity: 1;
    padding: 0 0 18px;
}

.rfal-mobile-nav {
    padding: 10px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rfal-mobile-nav a {
    padding: 14px 16px;
    border: 1px solid rgba(245, 198, 102, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 246, 230, 0.84);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.rfal-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rfal-mobile-actions .rfal-header-btn {
    width: 100%;
}

@media (min-width: 1024px) {
    .rfal-age-strip-inner {
        justify-content: flex-end;
    }

    .rfal-header-shell {
        min-height: 78px;
    }

    .rfal-header-logo img {
        width: 178px;
    }

    .rfal-header-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 28px;
        flex: 1;
    }

    .rfal-header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .rfal-menu-toggle,
    .rfal-mobile-panel {
        display: none;
    }
}

.rfal-hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(216, 25, 76, 0.24), transparent 34%),
        radial-gradient(circle at 82% 24%, rgba(245, 198, 102, 0.16), transparent 30%),
        linear-gradient(135deg, #070407 0%, #120811 44%, #080609 100%);
    color: #fff6e6;
}

.rfal-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 88%);
    pointer-events: none;
}

.rfal-hero-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
    min-height: calc(100vh - 110px);
    margin: 0 auto;
    padding: 64px 0 72px;
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.rfal-hero-content {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rfal-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 198, 102, 0.28);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rfal-hero-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d8194c;
    box-shadow: 0 0 18px rgba(216, 25, 76, 0.85);
}

.rfal-hero-title {
    margin: 0;
    max-width: 760px;
    color: #fff6e6;
    font-size: clamp(42px, 9vw, 74px);
    line-height: 0.94;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.rfal-hero-text {
    margin: 24px 0 0;
    max-width: 620px;
    color: rgba(255, 246, 230, 0.74);
    font-size: 17px;
    line-height: 1.72;
    font-weight: 500;
}

.rfal-hero-actions {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}

.rfal-hero-btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rfal-hero-btn:hover {
    transform: translateY(-2px);
}

.rfal-hero-btn-primary {
    border: 1px solid rgba(245, 198, 102, 0.58);
    background: linear-gradient(135deg, #d8194c 0%, #8d1234 48%, #f5c666 100%);
    color: #fff6e6;
    box-shadow: 0 16px 42px rgba(216, 25, 76, 0.32);
}

.rfal-hero-btn-primary:hover {
    box-shadow: 0 20px 54px rgba(216, 25, 76, 0.42);
}

.rfal-hero-btn-secondary {
    border: 1px solid rgba(245, 198, 102, 0.34);
    background: rgba(255, 255, 255, 0.045);
    color: #fff6e6;
}

.rfal-hero-btn-secondary:hover {
    border-color: rgba(245, 198, 102, 0.72);
    background: rgba(245, 198, 102, 0.08);
}

.rfal-hero-alerts {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rfal-hero-age,
.rfal-hero-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 246, 230, 0.72);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.rfal-hero-age strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(245, 198, 102, 0.5);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.1);
    color: #f5c666;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
}

.rfal-hero-location::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8bd18d;
    box-shadow: 0 0 14px rgba(139, 209, 141, 0.65);
    flex-shrink: 0;
}

.rfal-hero-chips {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rfal-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 13px;
    border: 1px solid rgba(255, 246, 230, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 246, 230, 0.78);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.rfal-chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(216, 25, 76, 0.18);
    color: #f5c666;
    font-size: 10px;
    font-weight: 900;
}

.rfal-hero-visual {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rfal-hero-card-glow {
    position: absolute;
    width: 72%;
    height: 72%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 25, 76, 0.35), transparent 68%);
    filter: blur(18px);
    opacity: 0.9;
}

.rfal-hero-image-placeholder {
    position: relative;
    width: 100%;
    min-height: 420px;
    border: 1px solid rgba(245, 198, 102, 0.22);
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 28%, rgba(216, 25, 76, 0.32), transparent 34%),
        radial-gradient(circle at 80% 70%, rgba(245, 198, 102, 0.22), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.rfal-hero-image-placeholder::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(245, 198, 102, 0.22);
    border-radius: 22px;
}

.rfal-placeholder-badge {
    position: absolute;
    left: 22px;
    top: 22px;
    z-index: 2;
    min-height: 32px;
    padding: 0 14px;
    border: 1px solid rgba(245, 198, 102, 0.3);
    border-radius: 999px;
    background: rgba(7, 4, 7, 0.54);
    color: #f5c666;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rfal-placeholder-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.86;
}

.rfal-hero-main-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.rfal-hero-image-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(135deg, rgba(7, 4, 7, 0.08), rgba(7, 4, 7, 0.48)),
        radial-gradient(circle at 72% 18%, rgba(245, 198, 102, 0.16), transparent 34%);
    pointer-events: none;
}

.rfal-placeholder-badge {
    z-index: 3;
}

.rfal-placeholder-frame span {
    display: block;
    color: #fff6e6;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
}

.rfal-placeholder-frame p {
    margin: 10px 0 0;
    color: rgba(255, 246, 230, 0.66);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.rfal-hero-floating-card {
    position: absolute;
    z-index: 4;
    width: 178px;
    padding: 16px;
    border: 1px solid rgba(245, 198, 102, 0.22);
    border-radius: 18px;
    background: rgba(13, 8, 13, 0.78);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.rfal-hero-floating-card strong {
    display: block;
    color: #f5c666;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 900;
}

.rfal-hero-floating-card span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 246, 230, 0.7);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
}

.rfal-hero-floating-card-top {
    right: 14px;
    top: 34px;
}

.rfal-hero-floating-card-bottom {
    left: 14px;
    bottom: 30px;
}

@media (min-width: 640px) {
    .rfal-hero-actions {
        flex-direction: row;
        width: auto;
    }

    .rfal-hero-btn {
        min-width: 170px;
    }

    .rfal-hero-alerts {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
}

@media (min-width: 1024px) {
    .rfal-hero-shell {
        min-height: calc(100vh - 110px);
        padding: 86px 0 92px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 58px;
    }

    .rfal-hero-content {
        width: 52%;
        max-width: none;
    }

    .rfal-hero-visual {
        width: 48%;
        min-height: 560px;
    }

    .rfal-hero-image-placeholder {
        min-height: 520px;
    }

    .rfal-hero-floating-card-top {
        right: -18px;
        top: 72px;
    }

    .rfal-hero-floating-card-bottom {
        left: -18px;
        bottom: 78px;
    }
}

@media (max-width: 420px) {
    .rfal-hero-title {
        font-size: 39px;
    }

    .rfal-hero-text {
        font-size: 15px;
    }

    .rfal-hero-image-placeholder {
        min-height: 360px;
        border-radius: 22px;
    }

    .rfal-placeholder-frame {
        width: calc(100% - 54px);
        padding: 22px;
    }

    .rfal-placeholder-frame span {
        font-size: 19px;
    }

    .rfal-hero-floating-card {
        width: 152px;
        padding: 13px;
    }
}

.rfal-access-overview {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(216, 25, 76, 0.14), transparent 30%),
        radial-gradient(circle at 88% 76%, rgba(245, 198, 102, 0.1), transparent 32%),
        #0b070c;
    color: #fff6e6;
}

.rfal-access-overview::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(245, 198, 102, 0.06), transparent 22%, transparent 78%, rgba(216, 25, 76, 0.06)),
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: auto, 72px 72px, 72px 72px;
    pointer-events: none;
}

.rfal-access-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.rfal-access-heading {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rfal-access-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(245, 198, 102, 0.28);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rfal-access-title {
    margin: 0;
    color: #fff6e6;
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.rfal-access-text {
    margin: 18px 0 0;
    max-width: 720px;
    color: rgba(255, 246, 230, 0.72);
    font-size: 16px;
    line-height: 1.72;
    font-weight: 500;
}

.rfal-access-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rfal-access-card {
    position: relative;
    overflow: hidden;
    min-height: 164px;
    padding: 22px;
    border: 1px solid rgba(245, 198, 102, 0.16);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        rgba(16, 10, 16, 0.84);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}


.rfal-access-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 198, 102, 0.36);
    background:
        linear-gradient(135deg, rgba(216, 25, 76, 0.12), rgba(245, 198, 102, 0.045)),
        rgba(16, 10, 16, 0.94);
}

.rfal-access-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rfal-access-card-icon span {
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
}

.rfal-access-card-icon-red {
    background: rgba(216, 25, 76, 0.14);
    color: #ff5b83;
    border: 1px solid rgba(216, 25, 76, 0.26);
}

.rfal-access-card-icon-gold {
    background: rgba(245, 198, 102, 0.12);
    color: #f5c666;
    border: 1px solid rgba(245, 198, 102, 0.26);
}

.rfal-access-card-icon-green {
    background: rgba(139, 209, 141, 0.12);
    color: #8bd18d;
    border: 1px solid rgba(139, 209, 141, 0.24);
}

.rfal-access-card-content {
    position: relative;
    z-index: 1;
}

.rfal-access-card-content h3 {
    margin: 0;
    color: #fff6e6;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.rfal-access-card-content p {
    margin: 10px 0 0;
    color: rgba(255, 246, 230, 0.66);
    font-size: 14px;
    line-height: 1.62;
    font-weight: 500;
}

@media (min-width: 768px) {
    .rfal-access-overview {
        padding: 92px 0;
    }

    .rfal-access-cards {
        flex-direction: row;
    }

    .rfal-access-card {
        width: 100%;
        flex-direction: column;
        min-height: 230px;
    }
}

@media (min-width: 1024px) {
    .rfal-access-overview {
        padding: 108px 0;
    }

    .rfal-access-shell {
        gap: 46px;
    }

    .rfal-access-heading {
        max-width: 820px;
    }

    .rfal-access-card {
        padding: 28px;
        min-height: 248px;
    }

    .rfal-access-card-content h3 {
        font-size: 22px;
    }

    .rfal-access-card-content p {
        font-size: 15px;
    }
}

.rfal-services-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    background:
        radial-gradient(circle at 82% 10%, rgba(216, 25, 76, 0.14), transparent 30%),
        radial-gradient(circle at 12% 86%, rgba(245, 198, 102, 0.1), transparent 32%),
        linear-gradient(180deg, #0b070c 0%, #120911 100%);
    color: #fff6e6;
}

.rfal-services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    opacity: 0.7;
}

.rfal-services-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.rfal-services-head {
    max-width: 780px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rfal-services-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(245, 198, 102, 0.28);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rfal-services-title {
    margin: 0;
    color: #fff6e6;
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.rfal-services-text {
    margin: 18px 0 0;
    max-width: 720px;
    color: rgba(255, 246, 230, 0.72);
    font-size: 16px;
    line-height: 1.72;
    font-weight: 500;
}

.rfal-services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rfal-service-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: 24px;
    border: 1px solid rgba(245, 198, 102, 0.16);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        rgba(16, 10, 16, 0.86);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.rfal-service-card::before {
    content: "";
    position: absolute;
    right: -76px;
    top: -76px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 198, 102, 0.14), transparent 68%);
    pointer-events: none;
}

.rfal-service-card::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -90px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 25, 76, 0.12), transparent 68%);
    pointer-events: none;
}

.rfal-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 198, 102, 0.4);
    background:
        linear-gradient(135deg, rgba(216, 25, 76, 0.13), rgba(245, 198, 102, 0.05)),
        rgba(18, 10, 17, 0.96);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.rfal-service-badge {
    position: relative;
    z-index: 1;
    min-height: 28px;
    padding: 0 11px;
    margin-bottom: 18px;
    border: 1px solid rgba(245, 198, 102, 0.26);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rfal-service-icon {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rfal-service-icon span {
    font-size: 13px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.02em;
}

.rfal-service-icon-ruby {
    background: rgba(216, 25, 76, 0.15);
    border: 1px solid rgba(216, 25, 76, 0.32);
    color: #ff5b83;
}

.rfal-service-icon-gold {
    background: rgba(245, 198, 102, 0.13);
    border: 1px solid rgba(245, 198, 102, 0.32);
    color: #f5c666;
}

.rfal-service-icon-bronze {
    background: rgba(188, 116, 55, 0.16);
    border: 1px solid rgba(188, 116, 55, 0.34);
    color: #e0a16c;
}

.rfal-service-icon-violet {
    background: rgba(155, 91, 255, 0.14);
    border: 1px solid rgba(155, 91, 255, 0.3);
    color: #c2a1ff;
}

.rfal-service-icon-blue {
    background: rgba(93, 166, 255, 0.13);
    border: 1px solid rgba(93, 166, 255, 0.3);
    color: #9ccaff;
}

.rfal-service-icon-green {
    background: rgba(139, 209, 141, 0.13);
    border: 1px solid rgba(139, 209, 141, 0.28);
    color: #8bd18d;
}

.rfal-service-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff6e6;
    font-size: 22px;
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.rfal-service-card p {
    position: relative;
    z-index: 1;
    margin: 12px 0 22px;
    color: rgba(255, 246, 230, 0.66);
    font-size: 14px;
    line-height: 1.62;
    font-weight: 500;
}

.rfal-service-link {
    position: relative;
    z-index: 1;
    margin-top: auto;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(245, 198, 102, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: #fff6e6;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.rfal-service-link span {
    color: #f5c666;
    font-size: 16px;
    line-height: 1;
    transform: translateY(-1px);
}

.rfal-service-link:hover {
    transform: translateY(-1px);
    border-color: rgba(245, 198, 102, 0.56);
    background: rgba(245, 198, 102, 0.09);
}

@media (min-width: 680px) {
    .rfal-services-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .rfal-service-card {
        width: calc(50% - 8px);
    }
}

@media (min-width: 1024px) {
    .rfal-services-section {
        padding: 108px 0;
    }

    .rfal-services-shell {
        gap: 46px;
    }

    .rfal-services-list {
        gap: 20px;
    }

    .rfal-service-card {
        width: calc(33.333% - 14px);
        min-height: 308px;
        padding: 28px;
    }

    .rfal-service-card h3 {
        font-size: 24px;
    }

    .rfal-service-card p {
        font-size: 15px;
    }
}

.rfal-promos-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 198, 102, 0.12), transparent 30%),
        radial-gradient(circle at 82% 82%, rgba(216, 25, 76, 0.14), transparent 32%),
        linear-gradient(180deg, #120911 0%, #070407 100%);
    color: #fff6e6;
}

.rfal-promos-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(245, 198, 102, 0.055), transparent 26%, transparent 76%, rgba(216, 25, 76, 0.055)),
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: auto, 68px 68px, 68px 68px;
    pointer-events: none;
}

.rfal-promos-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.rfal-promos-head {
    max-width: 790px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rfal-promos-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(245, 198, 102, 0.28);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rfal-promos-title {
    margin: 0;
    color: #fff6e6;
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.rfal-promos-text {
    margin: 18px 0 0;
    max-width: 720px;
    color: rgba(255, 246, 230, 0.72);
    font-size: 16px;
    line-height: 1.72;
    font-weight: 500;
}

.rfal-promos-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rfal-promo-card {
    position: relative;
    overflow: hidden;
    min-height: 410px;
    border: 1px solid rgba(245, 198, 102, 0.16);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        rgba(16, 10, 16, 0.9);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.rfal-promo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 198, 102, 0.4);
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.36);
}

.rfal-promo-media {
    position: relative;
    min-height: 170px;
    overflow: hidden;
    border-bottom: 1px solid rgba(245, 198, 102, 0.13);
    background:
        radial-gradient(circle at 28% 36%, rgba(216, 25, 76, 0.38), transparent 34%),
        radial-gradient(circle at 80% 18%, rgba(245, 198, 102, 0.24), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018));
    display: flex;
    align-items: center;
    justify-content: center;
}

.rfal-promo-media::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(245, 198, 102, 0.22);
    border-radius: 18px;
}

.rfal-promo-media::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 198, 102, 0.18), transparent 68%);
}

.rfal-promo-media span {
    position: relative;
    z-index: 1;
    padding: 10px 14px;
    border: 1px solid rgba(245, 198, 102, 0.22);
    border-radius: 999px;
    background: rgba(7, 4, 7, 0.52);
    color: rgba(255, 246, 230, 0.72);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.rfal-promo-body {
    position: relative;
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rfal-promo-badge {
    min-height: 28px;
    padding: 0 11px;
    margin-bottom: 18px;
    border: 1px solid rgba(245, 198, 102, 0.28);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rfal-promo-body h3 {
    margin: 0;
    color: #fff6e6;
    font-size: 24px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.rfal-promo-body p {
    margin: 14px 0 22px;
    color: rgba(255, 246, 230, 0.66);
    font-size: 14px;
    line-height: 1.62;
    font-weight: 500;
}

.rfal-promo-link {
    margin-top: auto;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(245, 198, 102, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: #fff6e6;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.rfal-promo-link span {
    color: #f5c666;
    font-size: 16px;
    line-height: 1;
    transform: translateY(-1px);
}

.rfal-promo-link:hover {
    transform: translateY(-1px);
    border-color: rgba(245, 198, 102, 0.56);
    background: rgba(245, 198, 102, 0.09);
}

.rfal-promos-note {
    padding: 18px;
    border: 1px solid rgba(245, 198, 102, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rfal-promos-note-age {
    min-width: 42px;
    height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(245, 198, 102, 0.5);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.1);
    color: #f5c666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    flex-shrink: 0;
}

.rfal-promos-note p {
    margin: 0;
    color: rgba(255, 246, 230, 0.68);
    font-size: 13px;
    line-height: 1.56;
    font-weight: 500;
}

@media (min-width: 720px) {
    .rfal-promos-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .rfal-promo-card {
        width: calc(50% - 8px);
    }

    .rfal-promo-card-large {
        width: 100%;
        min-height: 360px;
        flex-direction: row;
    }

    .rfal-promo-card-large .rfal-promo-media {
        width: 46%;
        min-height: 100%;
        border-bottom: none;
        border-right: 1px solid rgba(245, 198, 102, 0.13);
    }

    .rfal-promo-card-large .rfal-promo-body {
        width: 54%;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .rfal-promos-section {
        padding: 108px 0;
    }

    .rfal-promos-shell {
        gap: 46px;
    }

    .rfal-promos-list {
        gap: 20px;
    }

    .rfal-promo-card {
        width: calc(33.333% - 14px);
        min-height: 430px;
    }

    .rfal-promo-card-large {
        width: calc(50% - 10px);
        min-height: 430px;
        flex-direction: column;
    }

    .rfal-promo-card-large .rfal-promo-media {
        width: 100%;
        min-height: 190px;
        border-right: none;
        border-bottom: 1px solid rgba(245, 198, 102, 0.13);
    }

    .rfal-promo-card-large .rfal-promo-body {
        width: 100%;
        justify-content: flex-start;
    }

    .rfal-promo-body {
        padding: 28px;
    }

    .rfal-promo-body h3 {
        font-size: 26px;
    }

    .rfal-promo-body p {
        font-size: 15px;
    }

    .rfal-promos-note {
        align-items: center;
        justify-content: center;
    }
}

.rfal-access-banner-section {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(216, 25, 76, 0.16), transparent 32%),
        radial-gradient(circle at 88% 45%, rgba(245, 198, 102, 0.12), transparent 30%),
        linear-gradient(180deg, #070407 0%, #100710 100%);
    color: #fff6e6;
}

.rfal-access-banner-shell {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
}

.rfal-access-banner-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(245, 198, 102, 0.22);
    border-radius: 28px;
    background:
        radial-gradient(circle at 18% 18%, rgba(216, 25, 76, 0.2), transparent 34%),
        radial-gradient(circle at 90% 28%, rgba(245, 198, 102, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.026)),
        rgba(16, 10, 16, 0.94);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.rfal-access-banner-card::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 198, 102, 0.2), transparent 70%);
    pointer-events: none;
}

.rfal-access-banner-card::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 25, 76, 0.22), transparent 72%);
    pointer-events: none;
}

.rfal-access-banner-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.rfal-access-banner-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(245, 198, 102, 0.3);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rfal-access-banner-title {
    margin: 0;
    color: #fff6e6;
    font-size: clamp(30px, 5.4vw, 52px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.rfal-access-banner-text {
    margin: 18px 0 0;
    max-width: 680px;
    color: rgba(255, 246, 230, 0.72);
    font-size: 16px;
    line-height: 1.72;
    font-weight: 500;
}

.rfal-access-banner-notice {
    margin-top: 22px;
    padding: 14px 16px;
    border: 1px solid rgba(245, 198, 102, 0.17);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rfal-access-banner-notice span {
    min-width: 42px;
    height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(245, 198, 102, 0.5);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.1);
    color: #f5c666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    flex-shrink: 0;
}

.rfal-access-banner-notice p {
    margin: 0;
    color: rgba(255, 246, 230, 0.68);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

.rfal-access-banner-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rfal-access-banner-btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff6e6;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rfal-access-banner-btn:hover {
    transform: translateY(-2px);
}

.rfal-access-banner-btn-primary {
    border: 1px solid rgba(245, 198, 102, 0.58);
    background: linear-gradient(135deg, #d8194c 0%, #8d1234 48%, #f5c666 100%);
    box-shadow: 0 16px 42px rgba(216, 25, 76, 0.32);
}

.rfal-access-banner-btn-primary:hover {
    box-shadow: 0 20px 54px rgba(216, 25, 76, 0.42);
}

.rfal-access-banner-btn-secondary {
    border: 1px solid rgba(245, 198, 102, 0.34);
    background: rgba(255, 255, 255, 0.045);
}

.rfal-access-banner-btn-secondary:hover {
    border-color: rgba(245, 198, 102, 0.72);
    background: rgba(245, 198, 102, 0.08);
}

@media (min-width: 640px) {
    .rfal-access-banner-actions {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .rfal-access-banner-btn {
        min-width: 178px;
    }
}

@media (min-width: 1024px) {
    .rfal-access-banner-section {
        padding: 86px 0;
    }

    .rfal-access-banner-card {
        min-height: 360px;
        padding: 46px 52px;
        border-radius: 34px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 44px;
    }

    .rfal-access-banner-copy {
        width: 68%;
    }

    .rfal-access-banner-actions {
        width: 260px;
        flex-direction: column;
        align-items: stretch;
        flex-shrink: 0;
    }

    .rfal-access-banner-btn {
        width: 100%;
    }
}

.rfal-mobile-access-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(216, 25, 76, 0.13), transparent 30%),
        radial-gradient(circle at 86% 78%, rgba(245, 198, 102, 0.12), transparent 34%),
        linear-gradient(180deg, #100710 0%, #0b070c 100%);
    color: #fff6e6;
}

.rfal-mobile-access-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 68px 68px;
    pointer-events: none;
    opacity: 0.7;
}

.rfal-mobile-access-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.rfal-mobile-access-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 760px;
}

.rfal-mobile-access-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(245, 198, 102, 0.28);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rfal-mobile-access-title {
    margin: 0;
    color: #fff6e6;
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.rfal-mobile-access-text {
    margin: 18px 0 0;
    max-width: 700px;
    color: rgba(255, 246, 230, 0.72);
    font-size: 16px;
    line-height: 1.72;
    font-weight: 500;
}

.rfal-mobile-access-points {
    width: 100%;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rfal-mobile-access-point {
    padding: 16px;
    border: 1px solid rgba(245, 198, 102, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rfal-mobile-access-point span {
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid rgba(245, 198, 102, 0.24);
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    flex-shrink: 0;
}

.rfal-mobile-access-point p {
    margin: 0;
    color: rgba(255, 246, 230, 0.68);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}

.rfal-mobile-access-actions {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rfal-mobile-access-btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff6e6;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rfal-mobile-access-btn:hover {
    transform: translateY(-2px);
}

.rfal-mobile-access-btn-primary {
    border: 1px solid rgba(245, 198, 102, 0.58);
    background: linear-gradient(135deg, #d8194c 0%, #8d1234 48%, #f5c666 100%);
    box-shadow: 0 16px 42px rgba(216, 25, 76, 0.32);
}

.rfal-mobile-access-btn-primary:hover {
    box-shadow: 0 20px 54px rgba(216, 25, 76, 0.42);
}

.rfal-mobile-access-btn-secondary {
    border: 1px solid rgba(245, 198, 102, 0.34);
    background: rgba(255, 255, 255, 0.045);
}

.rfal-mobile-access-btn-secondary:hover {
    border-color: rgba(245, 198, 102, 0.72);
    background: rgba(245, 198, 102, 0.08);
}

.rfal-mobile-access-media {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rfal-mobile-access-glow {
    position: absolute;
    width: 78%;
    height: 78%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(216, 25, 76, 0.28), transparent 64%),
        radial-gradient(circle at 70% 34%, rgba(245, 198, 102, 0.16), transparent 42%);
    filter: blur(20px);
    opacity: 0.95;
}

.rfal-device-placeholder {
    position: relative;
    z-index: 3;
    width: min(72vw, 300px);
    min-height: 520px;
    padding: 12px;
    border: 1px solid rgba(245, 198, 102, 0.24);
    border-radius: 38px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
        #130b13;
    box-shadow:
        0 30px 82px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.rfal-device-topbar {
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.rfal-device-topbar span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 246, 230, 0.34);
}

.rfal-device-screen {
    position: relative;
    min-height: 468px;
    padding: 24px 18px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 18%, rgba(216, 25, 76, 0.34), transparent 34%),
        radial-gradient(circle at 80% 78%, rgba(245, 198, 102, 0.2), transparent 32%),
        linear-gradient(180deg, #1b0c18, #070407);
    border: 1px solid rgba(245, 198, 102, 0.13);
}

.rfal-device-badge {
    width: max-content;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(245, 198, 102, 0.44);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.1);
    color: #f5c666;
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
}

.rfal-device-logo-line {
    margin-top: 34px;
    padding: 16px;
    border: 1px solid rgba(245, 198, 102, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
}

.rfal-device-logo-line span {
    color: #fff6e6;
    font-size: 19px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.rfal-device-hero-line {
    width: 78%;
    height: 16px;
    margin-top: 24px;
    border-radius: 999px;
    background: rgba(255, 246, 230, 0.22);
}

.rfal-device-short-line {
    width: 54%;
    height: 10px;
    margin-top: 10px;
    border-radius: 999px;
    background: rgba(255, 246, 230, 0.14);
}

.rfal-device-card-row {
    margin-top: 32px;
    display: flex;
    gap: 10px;
}

.rfal-device-card-row div {
    width: 100%;
    height: 92px;
    border-radius: 18px;
    border: 1px solid rgba(245, 198, 102, 0.14);
    background:
        radial-gradient(circle at 30% 30%, rgba(245, 198, 102, 0.16), transparent 38%),
        rgba(255, 255, 255, 0.045);
}

.rfal-device-placeholder-label {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 22px;
    min-height: 44px;
    border: 1px dashed rgba(245, 198, 102, 0.24);
    border-radius: 16px;
    color: rgba(255, 246, 230, 0.62);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.rfal-tablet-placeholder {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 34px;
    width: min(52vw, 280px);
    height: 190px;
    padding: 10px;
    border: 1px solid rgba(245, 198, 102, 0.2);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02)),
        #130b13;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
    transform: rotate(3deg);
}

.rfal-tablet-screen {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    border: 1px solid rgba(245, 198, 102, 0.12);
    background:
        radial-gradient(circle at 24% 30%, rgba(216, 25, 76, 0.28), transparent 34%),
        linear-gradient(135deg, #1b0c18, #070407);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rfal-tablet-screen span {
    color: rgba(255, 246, 230, 0.58);
    font-size: 12px;
    font-weight: 800;
}

@media (min-width: 640px) {
    .rfal-mobile-access-actions {
        width: auto;
        flex-direction: row;
    }

    .rfal-mobile-access-btn {
        min-width: 170px;
    }
}

@media (min-width: 1024px) {
    .rfal-mobile-access-section {
        padding: 108px 0;
    }

    .rfal-mobile-access-shell {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 68px;
    }

    .rfal-mobile-access-copy {
        width: 48%;
        max-width: none;
    }

    .rfal-mobile-access-media {
        width: 52%;
        min-height: 620px;
    }

    .rfal-mobile-access-points {
        max-width: 620px;
    }

    .rfal-device-placeholder {
        width: 320px;
        min-height: 560px;
    }

    .rfal-device-screen {
        min-height: 508px;
    }

    .rfal-tablet-placeholder {
        right: 4px;
        bottom: 82px;
        width: 310px;
        height: 210px;
    }
}

@media (max-width: 420px) {
    .rfal-mobile-access-media {
        min-height: 470px;
    }

    .rfal-device-placeholder {
        min-height: 470px;
    }

    .rfal-device-screen {
        min-height: 418px;
    }

    .rfal-tablet-placeholder {
        width: 220px;
        height: 150px;
        right: -12px;
        bottom: 26px;
    }
}

.rfal-secure-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    background:
        radial-gradient(circle at 18% 78%, rgba(245, 198, 102, 0.11), transparent 32%),
        radial-gradient(circle at 84% 22%, rgba(216, 25, 76, 0.14), transparent 34%),
        linear-gradient(180deg, #0b070c 0%, #130913 100%);
    color: #fff6e6;
}

.rfal-secure-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 68px 68px;
    opacity: 0.7;
    pointer-events: none;
}

.rfal-secure-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.rfal-secure-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rfal-secure-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(245, 198, 102, 0.28);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rfal-secure-title {
    margin: 0;
    max-width: 720px;
    color: #fff6e6;
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.rfal-secure-text {
    margin: 18px 0 0;
    max-width: 700px;
    color: rgba(255, 246, 230, 0.72);
    font-size: 16px;
    line-height: 1.72;
    font-weight: 500;
}

.rfal-secure-flow {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rfal-secure-flow-item {
    padding: 16px;
    border: 1px solid rgba(245, 198, 102, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.rfal-secure-flow-number {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    border: 1px solid rgba(245, 198, 102, 0.28);
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    flex-shrink: 0;
}

.rfal-secure-flow-item h3 {
    margin: 0;
    color: #fff6e6;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.rfal-secure-flow-item p {
    margin: 7px 0 0;
    color: rgba(255, 246, 230, 0.66);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}

.rfal-secure-notice {
    margin-top: 22px;
    padding: 16px;
    border: 1px solid rgba(245, 198, 102, 0.17);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rfal-secure-notice span {
    min-width: 42px;
    height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(245, 198, 102, 0.5);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.1);
    color: #f5c666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    flex-shrink: 0;
}

.rfal-secure-notice p {
    margin: 0;
    color: rgba(255, 246, 230, 0.68);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

.rfal-secure-actions {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rfal-secure-btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff6e6;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rfal-secure-btn:hover {
    transform: translateY(-2px);
}

.rfal-secure-btn-primary {
    border: 1px solid rgba(245, 198, 102, 0.58);
    background: linear-gradient(135deg, #d8194c 0%, #8d1234 48%, #f5c666 100%);
    box-shadow: 0 16px 42px rgba(216, 25, 76, 0.32);
}

.rfal-secure-btn-primary:hover {
    box-shadow: 0 20px 54px rgba(216, 25, 76, 0.42);
}

.rfal-secure-btn-secondary {
    border: 1px solid rgba(245, 198, 102, 0.34);
    background: rgba(255, 255, 255, 0.045);
}

.rfal-secure-btn-secondary:hover {
    border-color: rgba(245, 198, 102, 0.72);
    background: rgba(245, 198, 102, 0.08);
}

.rfal-secure-media {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rfal-secure-media-glow {
    position: absolute;
    width: 82%;
    height: 82%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(216, 25, 76, 0.26), transparent 64%),
        radial-gradient(circle at 76% 28%, rgba(245, 198, 102, 0.16), transparent 42%);
    filter: blur(22px);
    opacity: 0.95;
}

.rfal-secure-placeholder {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    min-height: 430px;
    padding: 14px;
    border: 1px solid rgba(245, 198, 102, 0.22);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
        #130b13;
    box-shadow:
        0 30px 82px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.rfal-secure-placeholder-top {
    height: 34px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.rfal-secure-placeholder-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 246, 230, 0.34);
}

.rfal-secure-placeholder-body {
    position: relative;
    min-height: 366px;
    padding: 22px;
    border: 1px solid rgba(245, 198, 102, 0.12);
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 24% 22%, rgba(216, 25, 76, 0.34), transparent 34%),
        radial-gradient(circle at 78% 74%, rgba(245, 198, 102, 0.2), transparent 32%),
        linear-gradient(180deg, #1b0c18, #070407);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rfal-secure-lock-card {
    padding: 20px;
    border: 1px solid rgba(245, 198, 102, 0.18);
    border-radius: 22px;
    background: rgba(7, 4, 7, 0.48);
    backdrop-filter: blur(12px);
}

.rfal-secure-lock-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 16px;
    background: rgba(139, 209, 141, 0.12);
    border: 1px solid rgba(139, 209, 141, 0.24);
    color: #8bd18d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 950;
}

.rfal-secure-lock-card strong {
    display: block;
    color: #fff6e6;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.rfal-secure-lock-card p {
    margin: 8px 0 0;
    color: rgba(255, 246, 230, 0.66);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
}

.rfal-secure-progress-card {
    padding: 16px;
    border: 1px solid rgba(245, 198, 102, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
}

.rfal-secure-progress-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.rfal-secure-progress-row span {
    color: rgba(255, 246, 230, 0.7);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
}

.rfal-secure-progress-row strong {
    color: #f5c666;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
}

.rfal-secure-progress-line {
    width: 100%;
    height: 7px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
}

.rfal-secure-progress-line span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #d8194c, #f5c666);
}

.rfal-secure-visual-label {
    margin-top: auto;
    min-height: 44px;
    border: 1px dashed rgba(245, 198, 102, 0.24);
    border-radius: 16px;
    color: rgba(255, 246, 230, 0.62);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

@media (min-width: 640px) {
    .rfal-secure-actions {
        width: auto;
        flex-direction: row;
    }

    .rfal-secure-btn {
        min-width: 170px;
    }
}

@media (min-width: 1024px) {
    .rfal-secure-section {
        padding: 108px 0;
    }

    .rfal-secure-shell {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 68px;
    }

    .rfal-secure-media {
        width: 48%;
        order: 1;
        min-height: 600px;
    }

    .rfal-secure-copy {
        width: 52%;
        order: 2;
    }

    .rfal-secure-flow {
        max-width: 680px;
    }

    .rfal-secure-placeholder {
        min-height: 500px;
    }

    .rfal-secure-placeholder-body {
        min-height: 436px;
    }

    .rfal-secure-lock-card strong {
        font-size: 26px;
    }
}

@media (max-width: 420px) {
    .rfal-secure-media {
        min-height: 420px;
    }

    .rfal-secure-placeholder {
        min-height: 390px;
        border-radius: 24px;
    }

    .rfal-secure-placeholder-body {
        min-height: 326px;
        padding: 18px;
    }

    .rfal-secure-lock-card {
        padding: 18px;
    }

    .rfal-secure-lock-card strong {
        font-size: 20px;
    }
}

.rfal-help-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    background:
        radial-gradient(circle at 14% 22%, rgba(216, 25, 76, 0.13), transparent 32%),
        radial-gradient(circle at 88% 72%, rgba(245, 198, 102, 0.12), transparent 34%),
        linear-gradient(180deg, #130913 0%, #070407 100%);
    color: #fff6e6;
}

.rfal-help-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 68px 68px;
    opacity: 0.7;
    pointer-events: none;
}

.rfal-help-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
}

.rfal-help-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(245, 198, 102, 0.2);
    border-radius: 30px;
    background:
        radial-gradient(circle at 18% 18%, rgba(216, 25, 76, 0.16), transparent 34%),
        radial-gradient(circle at 88% 20%, rgba(245, 198, 102, 0.14), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(16, 10, 16, 0.94);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.rfal-help-card::before {
    content: "";
    position: absolute;
    right: -110px;
    top: -110px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 198, 102, 0.18), transparent 70%);
    pointer-events: none;
}

.rfal-help-card::after {
    content: "";
    position: absolute;
    left: -130px;
    bottom: -130px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 25, 76, 0.18), transparent 72%);
    pointer-events: none;
}

.rfal-help-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rfal-help-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(245, 198, 102, 0.28);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rfal-help-title {
    margin: 0;
    color: #fff6e6;
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.rfal-help-text {
    margin: 18px 0 0;
    max-width: 690px;
    color: rgba(255, 246, 230, 0.72);
    font-size: 16px;
    line-height: 1.72;
    font-weight: 500;
}

.rfal-help-options {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rfal-help-option {
    padding: 20px;
    border: 1px solid rgba(245, 198, 102, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rfal-help-option:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 198, 102, 0.34);
    background: rgba(255, 255, 255, 0.065);
}

.rfal-help-option-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(216, 25, 76, 0.14);
    border: 1px solid rgba(216, 25, 76, 0.28);
    color: #ff5b83;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rfal-help-option-icon span {
    font-size: 22px;
    line-height: 1;
    font-weight: 950;
}

.rfal-help-option-icon-gold {
    background: rgba(245, 198, 102, 0.12);
    border-color: rgba(245, 198, 102, 0.3);
    color: #f5c666;
}

.rfal-help-option-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rfal-help-option-label {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    margin-bottom: 12px;
    border: 1px solid rgba(245, 198, 102, 0.22);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.07);
    color: #f5c666;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rfal-help-option-content h3 {
    margin: 0;
    color: #fff6e6;
    font-size: 22px;
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.rfal-help-option-content p {
    margin: 10px 0 18px;
    color: rgba(255, 246, 230, 0.66);
    font-size: 14px;
    line-height: 1.62;
    font-weight: 500;
}

.rfal-help-email {
    color: #f5c666;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 900;
    text-decoration: none;
    word-break: break-word;
    transition: color 0.25s ease;
}

.rfal-help-email:hover {
    color: #fff6e6;
}

.rfal-help-faq-btn {
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(245, 198, 102, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: #fff6e6;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.rfal-help-faq-btn span {
    color: #f5c666;
    font-size: 16px;
    line-height: 1;
    transform: translateY(-1px);
}

.rfal-help-faq-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(245, 198, 102, 0.56);
    background: rgba(245, 198, 102, 0.09);
}

.rfal-help-bottom {
    position: relative;
    z-index: 1;
    padding-top: 22px;
    border-top: 1px solid rgba(245, 198, 102, 0.14);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rfal-help-age {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rfal-help-age strong {
    min-width: 42px;
    height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(245, 198, 102, 0.5);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.1);
    color: #f5c666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    flex-shrink: 0;
}

.rfal-help-age span {
    color: rgba(255, 246, 230, 0.68);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

.rfal-help-safe-link {
    width: max-content;
    color: #f5c666;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 198, 102, 0.36);
    padding-bottom: 4px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.rfal-help-safe-link:hover {
    color: #fff6e6;
    border-color: rgba(255, 246, 230, 0.54);
}

@media (min-width: 720px) {
    .rfal-help-options {
        flex-direction: row;
    }

    .rfal-help-option {
        width: 100%;
    }

    .rfal-help-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .rfal-help-age {
        max-width: 620px;
    }
}

@media (min-width: 1024px) {
    .rfal-help-section {
        padding: 108px 0;
    }

    .rfal-help-card {
        padding: 46px 52px;
        border-radius: 34px;
        gap: 36px;
    }

    .rfal-help-options {
        gap: 20px;
    }

    .rfal-help-option {
        padding: 28px;
        flex-direction: row;
        gap: 20px;
    }

    .rfal-help-option-content h3 {
        font-size: 24px;
    }

    .rfal-help-option-content p {
        font-size: 15px;
    }
}

.rfal-responsible-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(216, 25, 76, 0.14), transparent 32%),
        radial-gradient(circle at 86% 78%, rgba(139, 209, 141, 0.12), transparent 34%),
        linear-gradient(180deg, #070407 0%, #100710 100%);
    color: #fff6e6;
}

.rfal-responsible-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 68px 68px;
    opacity: 0.7;
    pointer-events: none;
}

.rfal-responsible-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rfal-responsible-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(245, 198, 102, 0.2);
    border-radius: 30px;
    background:
        radial-gradient(circle at 18% 18%, rgba(216, 25, 76, 0.14), transparent 34%),
        radial-gradient(circle at 90% 24%, rgba(139, 209, 141, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(16, 10, 16, 0.94);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rfal-responsible-card::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 209, 141, 0.16), transparent 70%);
    pointer-events: none;
}

.rfal-responsible-card::after {
    content: "";
    position: absolute;
    left: -130px;
    bottom: -130px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 25, 76, 0.18), transparent 72%);
    pointer-events: none;
}

.rfal-responsible-left,
.rfal-responsible-tools {
    position: relative;
    z-index: 1;
}

.rfal-responsible-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rfal-responsible-age-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 14px 0 8px;
    margin-bottom: 18px;
    border: 1px solid rgba(245, 198, 102, 0.34);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.08);
}

.rfal-responsible-age-badge strong {
    min-width: 38px;
    height: 28px;
    border-radius: 999px;
    background: rgba(216, 25, 76, 0.18);
    color: #f5c666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 950;
}

.rfal-responsible-age-badge span {
    color: rgba(255, 246, 230, 0.78);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.rfal-responsible-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(139, 209, 141, 0.26);
    border-radius: 999px;
    background: rgba(139, 209, 141, 0.08);
    color: #8bd18d;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rfal-responsible-title {
    margin: 0;
    max-width: 720px;
    color: #fff6e6;
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.rfal-responsible-text {
    margin: 18px 0 0;
    max-width: 700px;
    color: rgba(255, 246, 230, 0.72);
    font-size: 16px;
    line-height: 1.72;
    font-weight: 500;
}

.rfal-responsible-actions {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rfal-responsible-btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff6e6;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rfal-responsible-btn:hover {
    transform: translateY(-2px);
}

.rfal-responsible-btn-primary {
    border: 1px solid rgba(245, 198, 102, 0.58);
    background: linear-gradient(135deg, #d8194c 0%, #8d1234 48%, #f5c666 100%);
    box-shadow: 0 16px 42px rgba(216, 25, 76, 0.32);
}

.rfal-responsible-btn-primary:hover {
    box-shadow: 0 20px 54px rgba(216, 25, 76, 0.42);
}

.rfal-responsible-btn-secondary {
    border: 1px solid rgba(245, 198, 102, 0.34);
    background: rgba(255, 255, 255, 0.045);
}

.rfal-responsible-btn-secondary:hover {
    border-color: rgba(245, 198, 102, 0.72);
    background: rgba(245, 198, 102, 0.08);
}

.rfal-responsible-tools {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rfal-responsible-tool {
    padding: 18px;
    border: 1px solid rgba(245, 198, 102, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rfal-responsible-tool:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 198, 102, 0.34);
    background: rgba(255, 255, 255, 0.065);
}

.rfal-responsible-tool-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(216, 25, 76, 0.14);
    border: 1px solid rgba(216, 25, 76, 0.28);
    color: #ff5b83;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rfal-responsible-tool-icon span {
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
}

.rfal-responsible-tool-icon-gold {
    background: rgba(245, 198, 102, 0.12);
    border-color: rgba(245, 198, 102, 0.3);
    color: #f5c666;
}

.rfal-responsible-tool-icon-green {
    background: rgba(139, 209, 141, 0.12);
    border-color: rgba(139, 209, 141, 0.26);
    color: #8bd18d;
}

.rfal-responsible-tool-icon-blue {
    background: rgba(93, 166, 255, 0.13);
    border-color: rgba(93, 166, 255, 0.28);
    color: #9ccaff;
}

.rfal-responsible-tool h3 {
    margin: 0;
    color: #fff6e6;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.rfal-responsible-tool p {
    margin: 7px 0 0;
    color: rgba(255, 246, 230, 0.66);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}

.rfal-responsible-note {
    padding: 18px;
    border: 1px solid rgba(245, 198, 102, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rfal-responsible-note span {
    color: #f5c666;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rfal-responsible-note p {
    margin: 0;
    color: rgba(255, 246, 230, 0.68);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
}

@media (min-width: 640px) {
    .rfal-responsible-actions {
        width: auto;
        flex-direction: row;
    }

    .rfal-responsible-btn {
        min-width: 190px;
    }
}

@media (min-width: 768px) {
    .rfal-responsible-tools {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .rfal-responsible-tool {
        width: calc(50% - 7px);
    }
}

@media (min-width: 1024px) {
    .rfal-responsible-section {
        padding: 108px 0;
    }

    .rfal-responsible-card {
        padding: 46px 52px;
        border-radius: 34px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 58px;
    }

    .rfal-responsible-left {
        width: 48%;
    }

    .rfal-responsible-tools {
        width: 52%;
        gap: 16px;
    }

    .rfal-responsible-tool {
        width: calc(50% - 8px);
        min-height: 184px;
        flex-direction: column;
        padding: 22px;
    }

    .rfal-responsible-tool h3 {
        font-size: 20px;
    }

    .rfal-responsible-note {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 14px;
        text-align: center;
    }

    .rfal-responsible-note p {
        max-width: 900px;
    }
}

.rfal-info-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    background:
        radial-gradient(circle at 16% 16%, rgba(245, 198, 102, 0.1), transparent 30%),
        radial-gradient(circle at 88% 82%, rgba(216, 25, 76, 0.13), transparent 34%),
        linear-gradient(180deg, #100710 0%, #0b070c 100%);
    color: #fff6e6;
}

.rfal-info-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 68px 68px;
    opacity: 0.7;
    pointer-events: none;
}

.rfal-info-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.rfal-info-head {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rfal-info-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(245, 198, 102, 0.28);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rfal-info-title {
    margin: 0;
    color: #fff6e6;
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.rfal-info-text {
    margin: 18px 0 0;
    max-width: 730px;
    color: rgba(255, 246, 230, 0.72);
    font-size: 16px;
    line-height: 1.72;
    font-weight: 500;
}

.rfal-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rfal-info-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 24px;
    border: 1px solid rgba(245, 198, 102, 0.16);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        rgba(16, 10, 16, 0.88);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.rfal-info-card::before {
    content: "";
    position: absolute;
    right: -76px;
    top: -76px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 198, 102, 0.12), transparent 68%);
    pointer-events: none;
}

.rfal-info-card::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -90px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 25, 76, 0.1), transparent 68%);
    pointer-events: none;
}

.rfal-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 198, 102, 0.4);
    background:
        linear-gradient(135deg, rgba(216, 25, 76, 0.12), rgba(245, 198, 102, 0.045)),
        rgba(18, 10, 17, 0.96);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.rfal-info-card-top {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.rfal-info-card-number {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(245, 198, 102, 0.28);
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    font-weight: 950;
}

.rfal-info-card-badge {
    min-height: 28px;
    padding: 0 11px;
    border: 1px solid rgba(245, 198, 102, 0.24);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.07);
    color: #f5c666;
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rfal-info-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff6e6;
    font-size: 22px;
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.rfal-info-card p {
    position: relative;
    z-index: 1;
    margin: 12px 0 0;
    color: rgba(255, 246, 230, 0.66);
    font-size: 14px;
    line-height: 1.62;
    font-weight: 500;
}

.rfal-info-footer-note {
    padding: 18px;
    border: 1px solid rgba(245, 198, 102, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rfal-info-footer-note span {
    min-width: 42px;
    height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(245, 198, 102, 0.5);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.1);
    color: #f5c666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    flex-shrink: 0;
}

.rfal-info-footer-note p {
    margin: 0;
    color: rgba(255, 246, 230, 0.68);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

@media (min-width: 680px) {
    .rfal-info-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .rfal-info-card {
        width: calc(50% - 8px);
    }
}

@media (min-width: 1024px) {
    .rfal-info-section {
        padding: 108px 0;
    }

    .rfal-info-shell {
        gap: 46px;
    }

    .rfal-info-list {
        gap: 20px;
    }

    .rfal-info-card {
        width: calc(33.333% - 14px);
        min-height: 260px;
        padding: 28px;
    }

    .rfal-info-card h3 {
        font-size: 24px;
    }

    .rfal-info-card p {
        font-size: 15px;
    }

    .rfal-info-footer-note {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .rfal-info-footer-note p {
        max-width: 820px;
    }
}

.rfal-final-cta-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background:
        radial-gradient(circle at 14% 20%, rgba(216, 25, 76, 0.18), transparent 34%),
        radial-gradient(circle at 86% 70%, rgba(245, 198, 102, 0.14), transparent 34%),
        linear-gradient(180deg, #0b070c 0%, #070407 100%);
    color: #fff6e6;
}

.rfal-final-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 68px 68px;
    opacity: 0.7;
    pointer-events: none;
}

.rfal-final-cta-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
}

.rfal-final-cta-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(245, 198, 102, 0.22);
    border-radius: 30px;
    background:
        radial-gradient(circle at 16% 20%, rgba(216, 25, 76, 0.2), transparent 34%),
        radial-gradient(circle at 88% 28%, rgba(245, 198, 102, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.028)),
        rgba(16, 10, 16, 0.96);
    box-shadow:
        0 30px 88px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.rfal-final-cta-card::before {
    content: "";
    position: absolute;
    right: -130px;
    top: -130px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 198, 102, 0.2), transparent 70%);
    pointer-events: none;
}

.rfal-final-cta-card::after {
    content: "";
    position: absolute;
    left: -140px;
    bottom: -140px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 25, 76, 0.22), transparent 72%);
    pointer-events: none;
}

.rfal-final-cta-copy,
.rfal-final-cta-actions,
.rfal-final-cta-age {
    position: relative;
    z-index: 1;
}

.rfal-final-cta-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rfal-final-cta-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(245, 198, 102, 0.28);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rfal-final-cta-title {
    margin: 0;
    max-width: 760px;
    color: #fff6e6;
    font-size: clamp(32px, 6vw, 56px);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.rfal-final-cta-text {
    margin: 18px 0 0;
    max-width: 700px;
    color: rgba(255, 246, 230, 0.72);
    font-size: 16px;
    line-height: 1.72;
    font-weight: 500;
}

.rfal-final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rfal-final-cta-btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff6e6;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rfal-final-cta-btn:hover {
    transform: translateY(-2px);
}

.rfal-final-cta-btn-primary {
    border: 1px solid rgba(245, 198, 102, 0.58);
    background: linear-gradient(135deg, #d8194c 0%, #8d1234 48%, #f5c666 100%);
    box-shadow: 0 16px 42px rgba(216, 25, 76, 0.32);
}

.rfal-final-cta-btn-primary:hover {
    box-shadow: 0 20px 54px rgba(216, 25, 76, 0.42);
}

.rfal-final-cta-btn-secondary {
    border: 1px solid rgba(245, 198, 102, 0.34);
    background: rgba(255, 255, 255, 0.045);
}

.rfal-final-cta-btn-secondary:hover {
    border-color: rgba(245, 198, 102, 0.72);
    background: rgba(245, 198, 102, 0.08);
}

.rfal-final-cta-age {
    padding: 14px 16px;
    border: 1px solid rgba(245, 198, 102, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rfal-final-cta-age strong {
    min-width: 42px;
    height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(245, 198, 102, 0.5);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.1);
    color: #f5c666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    flex-shrink: 0;
}

.rfal-final-cta-age span {
    color: rgba(255, 246, 230, 0.68);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

@media (min-width: 640px) {
    .rfal-final-cta-actions {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .rfal-final-cta-btn {
        min-width: 170px;
    }
}

@media (min-width: 1024px) {
    .rfal-final-cta-section {
        padding: 96px 0;
    }

    .rfal-final-cta-card {
        min-height: 330px;
        padding: 48px 52px;
        border-radius: 36px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 46px;
    }

    .rfal-final-cta-copy {
        width: 64%;
    }

    .rfal-final-cta-actions {
        width: 230px;
        flex-direction: column;
        align-items: stretch;
        flex-shrink: 0;
    }

    .rfal-final-cta-btn {
        width: 100%;
    }

    .rfal-final-cta-age {
        position: absolute;
        left: 52px;
        bottom: 34px;
        max-width: 520px;
    }
}

.rfal-footer-section {
    position: relative;
    overflow: hidden;
    padding: 68px 0 28px;
    background:
        radial-gradient(circle at 12% 16%, rgba(216, 25, 76, 0.12), transparent 32%),
        radial-gradient(circle at 90% 72%, rgba(245, 198, 102, 0.1), transparent 34%),
        linear-gradient(180deg, #070407 0%, #040204 100%);
    color: #fff6e6;
    border-top: 1px solid rgba(245, 198, 102, 0.14);
}

.rfal-footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
    background-size: 68px 68px;
    opacity: 0.65;
    pointer-events: none;
}

.rfal-footer-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.rfal-footer-main {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.rfal-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rfal-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.rfal-footer-logo img {
    display: block;
    width: 166px;
    height: auto;
}

.rfal-footer-brand-text {
    margin: 20px 0 0;
    max-width: 520px;
    color: rgba(255, 246, 230, 0.68);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}

.rfal-footer-age-box {
    margin-top: 22px;
    padding: 14px 16px;
    border: 1px solid rgba(245, 198, 102, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    display: flex;
    align-items: center;
    gap: 12px;
}

.rfal-footer-age-box strong {
    min-width: 42px;
    height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(245, 198, 102, 0.5);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.1);
    color: #f5c666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    flex-shrink: 0;
}

.rfal-footer-age-box span {
    color: rgba(255, 246, 230, 0.72);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
}

.rfal-footer-columns {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.rfal-footer-column {
    padding: 20px;
    border: 1px solid rgba(245, 198, 102, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rfal-footer-column h3 {
    margin: 0 0 16px;
    color: #f5c666;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rfal-footer-column a {
    color: rgba(255, 246, 230, 0.7);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 650;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.rfal-footer-column a+a {
    margin-top: 12px;
}

.rfal-footer-column a:hover {
    color: #fff6e6;
    transform: translateX(3px);
}

.rfal-footer-geo-note {
    padding: 18px;
    border: 1px solid rgba(245, 198, 102, 0.16);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(245, 198, 102, 0.07), rgba(216, 25, 76, 0.055)),
        rgba(255, 255, 255, 0.035);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rfal-footer-geo-note span {
    color: #f5c666;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rfal-footer-geo-note p {
    margin: 0;
    color: rgba(255, 246, 230, 0.68);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
}

.rfal-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(245, 198, 102, 0.12);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rfal-footer-bottom p {
    margin: 0;
    color: rgba(255, 246, 230, 0.52);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
}

.rfal-footer-bottom-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rfal-footer-bottom-links a {
    color: rgba(255, 246, 230, 0.62);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 650;
    text-decoration: none;
    transition: color 0.25s ease;
}

.rfal-footer-bottom-links a:hover {
    color: #f5c666;
}

@media (min-width: 680px) {
    .rfal-footer-columns {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .rfal-footer-column {
        width: calc(33.333% - 15px);
    }

    .rfal-footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .rfal-footer-bottom-links {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 18px;
    }
}

@media (min-width: 1024px) {
    .rfal-footer-section {
        padding: 82px 0 32px;
    }

    .rfal-footer-main {
        flex-direction: row;
        justify-content: space-between;
        gap: 64px;
    }

    .rfal-footer-brand {
        width: 38%;
        flex-shrink: 0;
    }

    .rfal-footer-logo img {
        width: 184px;
    }

    .rfal-footer-columns {
        width: 62%;
        gap: 20px;
    }

    .rfal-footer-column {
        width: calc(33.333% - 14px);
        padding: 24px;
    }

    .rfal-footer-geo-note {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .rfal-footer-geo-note span {
        flex-shrink: 0;
    }

    .rfal-footer-geo-note p {
        max-width: 820px;
    }
}

.rfal-secure-placeholder-image {
    padding: 0;
    min-height: 430px;
    overflow: hidden;
}

.rfal-secure-main-img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 1024px) {
    .rfal-secure-placeholder-image {
        min-height: 500px;
    }

    .rfal-secure-main-img {
        min-height: 500px;
    }
}

.rfal-promo-media {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-bottom: 1px solid rgba(245, 198, 102, 0.13);
    background: #120911;
}

.rfal-promo-media::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px dashed rgba(245, 198, 102, 0.16);
    border-radius: 18px;
    z-index: 2;
    pointer-events: none;
}

.rfal-promo-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(7, 4, 7, 0.02) 0%, rgba(7, 4, 7, 0.42) 100%),
        radial-gradient(circle at 70% 20%, rgba(245, 198, 102, 0.12), transparent 34%);
    pointer-events: none;
}

.rfal-promo-img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 1024px) {

    .rfal-promo-card,
    .rfal-promo-card-large {
        width: calc(50% - 10px);
    }

    .rfal-promo-media {
        min-height: 260px;
    }

    .rfal-promo-img {
        min-height: 260px;
    }
}

section[id] {
    scroll-margin-top: 130px;
}

@media (min-width: 1024px) {
    .rfal-final-cta-card {
        padding-bottom: 110px;
    }

    .rfal-final-cta-age {
        position: absolute;
        left: 52px;
        bottom: 34px;
        max-width: 620px;
    }
}

.rfal-access-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.rfal-access-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 240px;
    padding: 28px 24px 24px;
    border-radius: 28px;
    border: 1px solid rgba(245, 198, 102, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        linear-gradient(180deg, rgba(26, 12, 20, 0.96), rgba(12, 8, 16, 0.96));
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
    isolation: isolate;
}

.rfal-access-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 70, 120, 0.16), transparent 28%),
        radial-gradient(circle at 82% 14%, rgba(245, 198, 102, 0.12), transparent 24%),
        radial-gradient(circle at 76% 84%, rgba(255, 130, 80, 0.08), transparent 28%);
}

.rfal-access-card::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 198, 102, 0.14), transparent 70%);
    filter: blur(4px);
    z-index: -1;
}

.rfal-access-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 198, 102, 0.3);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.34),
        0 0 30px rgba(216, 25, 76, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rfal-access-card>* {
    position: relative;
    z-index: 2;
}

.rfal-access-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 8px 18px rgba(0, 0, 0, 0.22);
}

.rfal-access-card-icon span {
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
}

.rfal-access-card-icon-red {
    color: #ff5a89;
    border-color: rgba(255, 90, 137, 0.26);
    background: linear-gradient(180deg, rgba(255, 90, 137, 0.18), rgba(255, 90, 137, 0.06));
    box-shadow:
        0 0 18px rgba(255, 90, 137, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rfal-access-card-icon-gold {
    color: #f4c361;
    border-color: rgba(244, 195, 97, 0.28);
    background: linear-gradient(180deg, rgba(244, 195, 97, 0.18), rgba(244, 195, 97, 0.06));
    box-shadow:
        0 0 18px rgba(244, 195, 97, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rfal-access-card-icon-green {
    color: #7de39c;
    border-color: rgba(125, 227, 156, 0.24);
    background: linear-gradient(180deg, rgba(125, 227, 156, 0.16), rgba(125, 227, 156, 0.05));
    box-shadow:
        0 0 18px rgba(125, 227, 156, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rfal-access-card-content h3 {
    margin: 0 0 14px;
    color: #fff4e8;
    font-size: 22px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -0.02em;
    max-width: 260px;
}

.rfal-access-card-content p {
    margin: 0;
    color: rgba(255, 244, 232, 0.78);
    font-size: 15px;
    line-height: 1.7;
    max-width: 290px;
}



@media (min-width: 768px) {
    .rfal-access-card {
        width: calc(50% - 9px);
    }
}

@media (min-width: 1024px) {
    .rfal-access-cards {
        gap: 20px;
    }

    .rfal-access-card {
        width: calc(33.333% - 14px);
        min-height: 260px;
        padding: 30px 26px 26px;
    }

    .rfal-access-card-content h3 {
        font-size: 24px;
    }
}

.rfal-access-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(135deg, rgba(216, 25, 76, 0.12) 0%, transparent 34%),
        linear-gradient(315deg, rgba(245, 198, 102, 0.08) 0%, transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
    pointer-events: none;
}

.rfal-access-card::after {
    content: "";
    position: absolute;
    top: -80%;
    left: -40%;
    width: 80%;
    height: 220%;
    z-index: -1;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.035) 45%,
            rgba(245, 198, 102, 0.055) 50%,
            rgba(255, 255, 255, 0.035) 55%,
            transparent 100%);
    transform: rotate(18deg);
    pointer-events: none;
}

.rfal-policy-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 70px;
    background:
        radial-gradient(circle at 18% 22%, rgba(216, 25, 76, 0.18), transparent 34%),
        radial-gradient(circle at 86% 74%, rgba(245, 198, 102, 0.12), transparent 34%),
        linear-gradient(180deg, #100710 0%, #070407 100%);
    color: #fff6e6;
}

.rfal-policy-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 68px 68px;
    opacity: 0.75;
    pointer-events: none;
}

.rfal-policy-hero-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
}

.rfal-policy-hero-content {
    max-width: 860px;
}

.rfal-policy-kicker,
.rfal-policy-block-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(245, 198, 102, 0.28);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rfal-policy-title {
    margin: 18px 0 0;
    color: #fff6e6;
    font-size: clamp(44px, 8vw, 82px);
    line-height: 0.95;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.rfal-policy-lead {
    margin: 24px 0 0;
    max-width: 780px;
    color: rgba(255, 246, 230, 0.76);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 500;
}

.rfal-policy-hero-note {
    margin-top: 28px;
    padding: 16px 18px;
    border: 1px solid rgba(245, 198, 102, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rfal-policy-hero-note span {
    min-width: 42px;
    height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(245, 198, 102, 0.5);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.1);
    color: #f5c666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    flex-shrink: 0;
}

.rfal-policy-hero-note p {
    margin: 0;
    color: rgba(255, 246, 230, 0.68);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
}

.rfal-policy-content-section {
    position: relative;
    padding: 76px 0 100px;
    background:
        radial-gradient(circle at 14% 20%, rgba(216, 25, 76, 0.1), transparent 34%),
        radial-gradient(circle at 88% 72%, rgba(245, 198, 102, 0.08), transparent 34%),
        linear-gradient(180deg, #070407 0%, #0b070c 100%);
    color: #fff6e6;
}

.rfal-policy-content-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
    background-size: 68px 68px;
    opacity: 0.7;
    pointer-events: none;
}

.rfal-policy-content-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.rfal-policy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rfal-policy-sidebar-card,
.rfal-policy-sidebar-notice,
.rfal-policy-block,
.rfal-policy-contact-card,
.rfal-policy-final-note {
    border: 1px solid rgba(245, 198, 102, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        rgba(16, 10, 16, 0.9);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.rfal-policy-sidebar-card {
    padding: 22px;
    border-radius: 24px;
}

.rfal-policy-sidebar-card h2 {
    margin: 0 0 18px;
    color: #fff6e6;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.rfal-policy-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rfal-policy-nav a {
    padding: 13px 14px;
    border: 1px solid rgba(245, 198, 102, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 246, 230, 0.72);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rfal-policy-nav a:hover {
    color: #f5c666;
    border-color: rgba(245, 198, 102, 0.34);
    background: rgba(245, 198, 102, 0.07);
}

.rfal-policy-sidebar-notice {
    padding: 18px;
    border-radius: 20px;
}

.rfal-policy-sidebar-notice strong {
    display: block;
    color: #f5c666;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rfal-policy-sidebar-notice p {
    margin: 10px 0 0;
    color: rgba(255, 246, 230, 0.66);
    font-size: 13px;
    line-height: 1.65;
    font-weight: 500;
}

.rfal-policy-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rfal-policy-block {
    scroll-margin-top: 130px;
    padding: 26px;
    border-radius: 28px;
}

.rfal-policy-block h2 {
    margin: 18px 0 18px;
    color: #fff6e6;
    font-size: clamp(28px, 5vw, 46px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.rfal-policy-block p {
    margin: 0;
    color: rgba(255, 246, 230, 0.72);
    font-size: 15px;
    line-height: 1.78;
    font-weight: 500;
}

.rfal-policy-block p+p {
    margin-top: 16px;
}

.rfal-policy-subblock {
    margin-top: 24px;
    padding: 20px;
    border: 1px solid rgba(245, 198, 102, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
}

.rfal-policy-subblock h3 {
    margin: 0 0 12px;
    color: #fff6e6;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.rfal-policy-contact-card {
    margin-top: 24px;
    padding: 22px;
    border-radius: 22px;
}

.rfal-policy-contact-card h3 {
    margin: 0 0 12px;
    color: #fff6e6;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
}

.rfal-policy-contact-card a {
    display: inline-flex;
    margin-top: 14px;
    color: #f5c666;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 900;
    text-decoration: none;
    word-break: break-word;
}

.rfal-policy-final-note {
    margin-top: 24px;
    padding: 18px;
    border-radius: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rfal-policy-final-note strong {
    color: #f5c666;
}

.rfal-policy-final-note span {
    color: rgba(255, 246, 230, 0.72);
}

@media (min-width: 1024px) {
    .rfal-policy-hero {
        padding: 118px 0 92px;
    }

    .rfal-policy-content-section {
        padding: 100px 0 120px;
    }

    .rfal-policy-content-shell {
        flex-direction: row;
        align-items: flex-start;
        gap: 34px;
    }

    .rfal-policy-sidebar {
        width: 310px;
        position: sticky;
        top: 130px;
        flex-shrink: 0;
    }

    .rfal-policy-content {
        flex: 1;
    }

    .rfal-policy-block {
        padding: 38px;
        border-radius: 32px;
    }

    .rfal-policy-subblock {
        padding: 24px;
    }
}

.rfal-access-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(245, 198, 102, 0.26);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(18, 8, 15, 0.96), rgba(8, 5, 9, 0.96));
    box-shadow:
        0 20px 54px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* декоративна “картинна” рамка */
.rfal-access-card::before {
    content: "";
    position: absolute;
    inset: 8px;
    z-index: 0;
    border-radius: 22px;
    border: 1px solid rgba(245, 198, 102, 0.28);
    background:
        linear-gradient(135deg, rgba(245, 198, 102, 0.12), transparent 24%),
        linear-gradient(315deg, rgba(216, 25, 76, 0.12), transparent 28%);
    pointer-events: none;
}

/* внутрішній затемнений шар, щоб текст добре читався */
.rfal-access-card::after {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 0;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(8, 5, 9, 0.42), rgba(8, 5, 9, 0.82));
    pointer-events: none;
}

/* декоративні кути рамки */
.rfal-access-card-corner,
.rfal-access-card .rfal-access-card-icon::before,
.rfal-access-card .rfal-access-card-icon::after {
    pointer-events: none;
}

.rfal-access-card .rfal-access-card-icon::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    border-top: 2px solid rgba(245, 198, 102, 0.65);
    border-left: 2px solid rgba(245, 198, 102, 0.65);
    border-radius: 12px 0 0 0;
    opacity: 0.9;
}

.rfal-access-card .rfal-access-card-icon::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    border-right: 2px solid rgba(245, 198, 102, 0.5);
    border-bottom: 2px solid rgba(245, 198, 102, 0.5);
    border-radius: 0 0 12px 0;
    opacity: 0.85;
}

.rfal-access-card>* {
    position: relative;
    z-index: 2;
}

/* маленький shine зверху */
.rfal-access-card-content::before {
    content: "";
    position: absolute;
    left: -90px;
    top: -72px;
    width: 220px;
    height: 90px;
    background: linear-gradient(90deg,
            transparent,
            rgba(245, 198, 102, 0.12),
            transparent);
    transform: rotate(-18deg);
    pointer-events: none;
}

/* різний “ігровий” настрій для кожної картки */
.rfal-access-card:nth-child(1) {
    background:
        linear-gradient(180deg, rgba(24, 8, 17, 0.97), rgba(9, 5, 10, 0.98)),
        radial-gradient(circle at 20% 12%, rgba(216, 25, 76, 0.22), transparent 34%);
}

.rfal-access-card:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(24, 14, 8, 0.97), rgba(9, 5, 10, 0.98)),
        radial-gradient(circle at 20% 12%, rgba(245, 198, 102, 0.2), transparent 34%);
}

.rfal-access-card:nth-child(3) {
    background:
        linear-gradient(180deg, rgba(8, 20, 14, 0.96), rgba(9, 5, 10, 0.98)),
        radial-gradient(circle at 20% 12%, rgba(139, 209, 141, 0.16), transparent 34%);
}

/* іконка-номер як casino token */
.rfal-access-card-icon {
    position: relative;
    z-index: 3;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    margin-bottom: 22px;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.32),
        inset 0 2px 0 rgba(255, 255, 255, 0.16),
        inset 0 -8px 18px rgba(0, 0, 0, 0.26);
}

.rfal-access-card-icon span {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: 950;
}

.rfal-access-card-icon-red {
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.16), transparent 24%),
        linear-gradient(135deg, #d8194c, #6d0b25);
    color: #fff6e6;
    border: 1px solid rgba(255, 100, 140, 0.48);
}

.rfal-access-card-icon-gold {
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.2), transparent 24%),
        linear-gradient(135deg, #f5c666, #9d6425);
    color: #1b0c12;
    border: 1px solid rgba(245, 198, 102, 0.6);
}

.rfal-access-card-icon-green {
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.16), transparent 24%),
        linear-gradient(135deg, #8bd18d, #1e6b45);
    color: #04140d;
    border: 1px solid rgba(139, 209, 141, 0.46);
}

/* текст трохи вище по візуальній ієрархії */
.rfal-access-card-content h3 {
    color: #fff6e6;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.rfal-access-card-content p {
    color: rgba(255, 246, 230, 0.74);
}

/* hover */
.rfal-access-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 198, 102, 0.5);
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.4),
        0 0 32px rgba(216, 25, 76, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rfal-access-card:hover::before {
    border-color: rgba(245, 198, 102, 0.48);
}

@media (min-width: 768px) {
    .rfal-access-card {
        padding: 30px;
    }

    .rfal-access-card-icon {
        margin-bottom: 20px;
    }
}

.rfal-service-icon i {
    position: relative;
    z-index: 2;
    font-size: 25px;
    line-height: 1;
}

.rfal-service-icon {
    overflow: hidden;
}

.rfal-service-icon::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.rfal-service-card:hover .rfal-service-icon::before {
    opacity: 1;
    transform: scale(1.08);
}

.rfal-auth-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 110px);
    padding: 64px 0 86px;
    background:
        radial-gradient(circle at 18% 16%, rgba(216, 25, 76, 0.18), transparent 34%),
        radial-gradient(circle at 84% 76%, rgba(245, 198, 102, 0.12), transparent 34%),
        linear-gradient(180deg, #070407 0%, #120811 100%);
    color: #fff6e6;
}

.rfal-auth-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 68px 68px;
    pointer-events: none;
}

.rfal-auth-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.rfal-auth-card,
.rfal-auth-side-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 198, 102, 0.2);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        rgba(16, 10, 16, 0.92);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rfal-auth-card {
    padding: 26px;
}

.rfal-auth-head {
    margin-bottom: 28px;
}

.rfal-auth-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 13px;
    border: 1px solid rgba(245, 198, 102, 0.32);
    border-radius: 999px;
    background: rgba(245, 198, 102, 0.08);
    color: #f5c666;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rfal-auth-title {
    margin: 18px 0 0;
    max-width: 760px;
    color: #fff6e6;
    font-size: clamp(34px, 6vw, 56px);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.rfal-auth-text {
    margin: 16px 0 0;
    max-width: 700px;
    color: rgba(255, 246, 230, 0.72);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.rfal-register-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rfal-form-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rfal-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rfal-form-field label {
    color: #f5ddb0;
    font-size: 14px;
    line-height: 1;
    font-weight: 850;
}

.rfal-form-field input,
.rfal-form-field select {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(255, 246, 230, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
    color: #fff6e6;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.rfal-form-field select option {
    color: #111;
}

.rfal-form-field input:focus,
.rfal-form-field select:focus {
    border-color: rgba(245, 198, 102, 0.58);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 0 0 4px rgba(245, 198, 102, 0.08);
}

.rfal-form-field.rfal-field-error input,
.rfal-form-field.rfal-field-error select {
    border-color: rgba(255, 91, 131, 0.75);
    box-shadow: 0 0 0 4px rgba(216, 25, 76, 0.12);
}

.rfal-form-error {
    display: none;
    color: #ff7d9e;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
}

.rfal-form-field.rfal-field-error .rfal-form-error {
    display: block;
}

.rfal-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rfal-check-item {
    position: relative;
    min-height: 58px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 246, 230, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.rfal-check-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rfal-check-item>span {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    border: 1px solid rgba(255, 246, 230, 0.32);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.rfal-check-item input:checked+span {
    border-color: rgba(245, 198, 102, 0.8);
    background:
        linear-gradient(135deg, #d8194c, #f5c666);
}

.rfal-check-item input:checked+span::before {
    content: "✓";
    color: #fff6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 950;
}

.rfal-check-item p {
    margin: 0;
    color: rgba(255, 246, 230, 0.76);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}

.rfal-check-item a {
    color: #f5c666;
    font-weight: 850;
    text-decoration: none;
}

.rfal-check-item.rfal-check-error {
    border-color: rgba(255, 91, 131, 0.7);
    box-shadow: 0 0 0 4px rgba(216, 25, 76, 0.1);
}

.rfal-auth-submit {
    width: 100%;
    min-height: 56px;
    border: 1px solid rgba(245, 198, 102, 0.58);
    border-radius: 12px;
    background: linear-gradient(135deg, #d8194c 0%, #8d1234 48%, #f5c666 100%);
    color: #fff6e6;
    font-size: 14px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 16px 42px rgba(216, 25, 76, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rfal-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 54px rgba(216, 25, 76, 0.42);
}

.rfal-auth-switch {
    margin: 0;
    color: rgba(255, 246, 230, 0.66);
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

.rfal-auth-switch a {
    color: #f5c666;
    font-weight: 900;
    text-decoration: none;
}

.rfal-auth-side-card {
    padding: 26px;
}

.rfal-auth-side-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    border-radius: 20px;
    border: 1px solid rgba(245, 198, 102, 0.34);
    background: rgba(245, 198, 102, 0.09);
    color: #f5c666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rfal-auth-side-icon i {
    font-size: 28px;
}

.rfal-auth-side-card h2 {
    margin: 0;
    color: #fff6e6;
    font-size: 28px;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.rfal-auth-side-card p {
    margin: 14px 0 0;
    color: rgba(255, 246, 230, 0.7);
    font-size: 15px;
    line-height: 1.68;
    font-weight: 500;
}

.rfal-auth-benefits {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rfal-auth-benefits div {
    padding: 14px;
    border: 1px solid rgba(245, 198, 102, 0.13);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 12px;
}

.rfal-auth-benefits i {
    color: #f5c666;
    font-size: 19px;
    flex-shrink: 0;
}

.rfal-auth-benefits span {
    color: rgba(255, 246, 230, 0.76);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 750;
}

.rfal-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    padding: 20px;
    background: rgba(7, 4, 7, 0.78);
    backdrop-filter: blur(14px);
    display: none;
    align-items: center;
    justify-content: center;
}

.rfal-auth-modal.rfal-auth-modal-active {
    display: flex;
}

.rfal-auth-modal-card {
    width: min(100%, 480px);
    padding: 30px;
    border: 1px solid rgba(245, 198, 102, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(circle at 20% 20%, rgba(216, 25, 76, 0.18), transparent 34%),
        linear-gradient(180deg, #160b13, #080508);
    color: #fff6e6;
    text-align: center;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.rfal-auth-modal-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: 22px;
    border: 1px solid rgba(139, 209, 141, 0.32);
    background: rgba(139, 209, 141, 0.1);
    color: #8bd18d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rfal-auth-modal-icon i {
    font-size: 32px;
}

.rfal-auth-modal-card h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.rfal-auth-modal-card p {
    margin: 14px 0 0;
    color: rgba(255, 246, 230, 0.74);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
}

.rfal-auth-modal-btn {
    min-height: 50px;
    margin-top: 24px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid rgba(245, 198, 102, 0.5);
    background: linear-gradient(135deg, #d8194c, #f5c666);
    color: #fff6e6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
}

@media (min-width: 768px) {
    .rfal-form-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .rfal-form-field {
        width: calc(50% - 9px);
    }

    .rfal-form-field-full {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .rfal-auth-section {
        padding: 84px 0 110px;
    }

    .rfal-auth-shell {
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
    }

    .rfal-auth-card {
        width: 66%;
        padding: 34px;
    }

    .rfal-auth-side {
        width: 34%;
        position: sticky;
        top: 134px;
    }

    .rfal-auth-side-card {
        padding: 30px;
    }
}

.rfal-login-shell {
    justify-content: center;
}

.rfal-login-card {
    max-width: 720px;
}

.rfal-login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rfal-login-form-grid {
    flex-direction: column;
}

.rfal-login-form-grid .rfal-form-field {
    width: 100%;
}

.rfal-login-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rfal-login-check {
    min-height: 54px;
}

.rfal-login-small-link {
    width: max-content;
    color: #f5c666;
    font-size: 14px;
    line-height: 1;
    font-weight: 850;
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 198, 102, 0.34);
    padding-bottom: 4px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.rfal-login-small-link:hover {
    color: #fff6e6;
    border-color: rgba(255, 246, 230, 0.54);
}

@media (min-width: 640px) {
    .rfal-login-options {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .rfal-login-check {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .rfal-login-card {
        width: 58%;
    }

    .rfal-login-shell .rfal-auth-side {
        width: 34%;
    }
}