/* =============================================
   ROYAL LANDING PAGE - SHARED CSS
   Gold Bronze Theme - Nhôm Đúc Tiến Thành
   ============================================= */
:root {
    --rl-gold: #b8860b;
    --rl-gold-light: #d4a843;
    --rl-gold-bright: #e8c44a;
    --rl-gold-pale: #f0dca0;
    --rl-bronze: #8b6914;
    --rl-bronze-dark: #6b4e0a;
    --rl-navy: #0c1b3a;
    --rl-navy-mid: #14284d;
    --rl-cream: #fdf8ef;
    --rl-cream-dark: #f5ead5;
    --rl-warm: #faf3e0;
    --rl-bg-gold: linear-gradient(135deg, #f5ead5 0%, #fdf8ef 30%, #f0e0c0 60%, #fdf8ef 100%);
    --rl-bg-navy: linear-gradient(160deg, #0c1b3a 0%, #162d5a 35%, #1a3568 65%, #0c1b3a 100%);
    --rl-bg-warm: linear-gradient(135deg, #faf3e0 0%, #fff 40%, #f5ead5 100%);
    --rl-bg-bronze: linear-gradient(160deg, #3d2b1f 0%, #5a3d20 35%, #4a3018 65%, #3d2b1f 100%);
    --rl-text-dark: #2c1810;
    --rl-text-mid: #5a4232;
    --rl-text-light: #8a7060;
    --rl-red: #c0392b;
    --rl-red-light: #e74c3c;
    --rl-blue-zalo: #0068ff;
}

.rl-page { overflow: hidden; font-family: inherit; line-height: 1.5; }
.rl-page *, .rl-page *::before, .rl-page *::after { box-sizing: border-box; }
.rl-page .container { max-width: 1170px; margin: 0 auto; padding: 0 15px; }
/* Header z-index fix: dropdown menu phải ở trên hero */
header { position: relative; z-index: 9999 !important; }
header .dropdown-menu { z-index: 10000 !important; }
.rl-hero { z-index: 1; }
/* Kill all spacing between sections */
.rl-page > section { margin: 0; }
.rl-page > section + section { margin-top: 0; }

/* ===== HERO ===== */
.rl-hero {
    position: relative; min-height: 78vh;
    display: flex; align-items: center; justify-content: center; text-align: center;
    background: var(--rl-bg-navy); padding: 45px 20px 35px; overflow: hidden;
}
.rl-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(184,134,11,0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 100%, rgba(184,134,11,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(212,168,67,0.05) 0%, transparent 40%);
}
/* Gold shimmer line top */
.rl-hero::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, transparent 10%, var(--rl-gold) 30%, var(--rl-gold-bright) 50%, var(--rl-gold) 70%, transparent 90%);
}
.rl-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.rl-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rl-gold), var(--rl-gold-bright), var(--rl-gold));
    color: var(--rl-navy); font-size: 12px; font-weight: 800;
    padding: 7px 22px; border-radius: 30px;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(184,134,11,0.3);
    animation: rlPulse 2.5s ease-in-out infinite;
}
@keyframes rlPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(184,134,11,0.3); }
    50% { box-shadow: 0 4px 20px rgba(184,134,11,0.05), 0 0 0 10px rgba(184,134,11,0); }
}
.rl-hero h1 {
    font-size: 42px; font-weight: 900; line-height: 1.15; margin: 0 0 10px; text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, var(--rl-gold-pale) 40%, var(--rl-gold-bright) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rl-hero h1 span {
    display: block; font-size: 28px; margin-top: 6px; letter-spacing: 3px;
    background: linear-gradient(135deg, var(--rl-gold-light), var(--rl-gold-bright));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rl-hero-sub { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 18px; }
.rl-hero-stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 18px; }
.rl-hero-stat { text-align: center; }
.rl-hero-stat strong {
    display: block; font-size: 32px; font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, var(--rl-gold-bright), var(--rl-gold-pale));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rl-hero-stat span { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

/* ===== PHONE NUMBER ===== */
.rl-phone {
    display: inline-block; font-size: 26px; font-weight: 900; letter-spacing: 2px;
    text-decoration: none; margin-bottom: 16px;
    background: linear-gradient(135deg, var(--rl-gold-bright), #fff, var(--rl-gold-bright));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    transition: all 0.3s;
}
.rl-phone:hover { filter: brightness(1.2); }
.rl-phone i { -webkit-text-fill-color: var(--rl-gold-bright); margin-right: 8px; }

/* ===== BUTTONS ===== */
.rl-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.rl-btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 15px; font-weight: 800; padding: 13px 28px;
    border-radius: 50px; text-decoration: none !important; text-transform: uppercase;
    transition: all 0.3s; position: relative; overflow: hidden; border: none; cursor: pointer;
    color: #fff !important; letter-spacing: 0.5px;
}
.rl-btn::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s;
}
.rl-btn:hover::after { left: 100%; }
.rl-btn:hover { transform: translateY(-2px); color: #fff !important; }
.rl-btn-call {
    background: linear-gradient(135deg, #c0392b, #e74c3c, #d63031);
    box-shadow: 0 6px 25px rgba(192,57,43,0.45);
}
.rl-btn-call:hover { box-shadow: 0 10px 35px rgba(192,57,43,0.6); }
.rl-btn-zalo {
    background: linear-gradient(135deg, #0068ff, #0091ff, #00b4ff);
    box-shadow: 0 6px 25px rgba(0,104,255,0.45);
}
.rl-btn-zalo:hover { box-shadow: 0 10px 35px rgba(0,104,255,0.6); }
.rl-btn-gold {
    background: linear-gradient(135deg, var(--rl-bronze), var(--rl-gold), var(--rl-gold-light));
    color: var(--rl-navy) !important; font-weight: 900;
    box-shadow: 0 6px 25px rgba(184,134,11,0.35);
}
.rl-btn-gold:hover { box-shadow: 0 10px 35px rgba(184,134,11,0.5); color: var(--rl-navy) !important; }
.rl-btn-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; background: rgba(255,255,255,0.25);
    border-radius: 50%; flex-shrink: 0;
}
.rl-btn-call .rl-btn-icon { animation: rlRing 1.2s ease-in-out infinite; }
.rl-btn-zalo .rl-btn-icon { animation: rlRing 1.2s ease-in-out infinite 0.6s; }
@keyframes rlRing {
    0% { transform: rotate(0); } 10% { transform: rotate(15deg); }
    20% { transform: rotate(-12deg); } 30% { transform: rotate(10deg); }
    40% { transform: rotate(-5deg); } 50%, 100% { transform: rotate(0); }
}

/* ===== TRUST BAR ===== */
.rl-trust {
    background: linear-gradient(135deg, var(--rl-gold), var(--rl-gold-bright), var(--rl-gold));
    padding: 18px 0;
}
.rl-trust-grid { display: flex; justify-content: center; align-items: center; gap: 35px; flex-wrap: wrap; }
.rl-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; color: var(--rl-navy); text-transform: uppercase; letter-spacing: 0.5px; }
.rl-trust-item i { font-size: 20px; color: var(--rl-bronze-dark); }

/* ===== SECTION TITLES ===== */
.rl-stitle { text-align: center; margin-bottom: 30px; }
.rl-stitle h2 { font-size: 30px; font-weight: 900; text-transform: uppercase; margin: 0 0 8px; line-height: 1.2; }
.rl-stitle p { font-size: 15px; margin: 0; max-width: 550px; margin-left: auto; margin-right: auto; }
.rl-stitle-dark h2 { color: var(--rl-text-dark); }
.rl-stitle-dark h2 span { color: var(--rl-gold); }
.rl-stitle-dark p { color: var(--rl-text-mid); }
.rl-stitle-light h2 { color: #fff; }
.rl-stitle-light h2 span { color: var(--rl-gold-bright); }
.rl-stitle-light p { color: rgba(255,255,255,0.65); }
/* Gold underline decorator */
.rl-stitle h2::after {
    content: ''; display: block; width: 80px; height: 3px; margin: 10px auto 0;
    background: linear-gradient(90deg, transparent, var(--rl-gold), transparent);
}

/* ===== GALLERY ===== */
.rl-gallery { padding: 35px 0; background: var(--rl-bg-warm); }
.rl-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rl-gallery-item {
    position: relative; cursor: pointer; text-decoration: none;
    padding: 12px; transition: all 0.4s;
    border-image: url('/images/bg_sp.png') 50 fill / 12px / 0 stretch;
    border-style: solid; border-width: 12px;
    background: #0c1b3a;
}
.rl-gallery-item:hover { transform: translateY(-5px) scale(1.02); filter: brightness(1.05); }
.rl-gallery-item .rl-gallery-img {
    width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 2px;
}
.rl-gallery-item .rl-gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.rl-gallery-item:hover .rl-gallery-img img { transform: scale(1.08); }
.rl-gallery-overlay {
    padding: 8px 4px 2px; text-align: center;
    color: var(--rl-gold-pale); font-size: 11px; font-weight: 700;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rl-gallery-featured { grid-column: span 2; grid-row: span 2; }
.rl-gallery-featured .rl-gallery-overlay { font-size: 13px; }

/* ===== PRICING ===== */
.rl-pricing { padding: 35px 0; background: var(--rl-bg-navy); }
.rl-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rl-price-card {
    background: linear-gradient(145deg, rgba(184,134,11,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(184,134,11,0.2); border-radius: 14px;
    padding: 28px 18px; text-align: center; transition: all 0.3s;
    position: relative; overflow: hidden;
}
.rl-price-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--rl-gold), transparent);
}
.rl-price-card:hover { transform: translateY(-5px); border-color: rgba(184,134,11,0.4); }
.rl-price-card.featured {
    border: 2px solid var(--rl-gold-light);
    background: linear-gradient(145deg, rgba(184,134,11,0.15), rgba(184,134,11,0.04));
}
.rl-price-card.featured::before { height: 4px; background: linear-gradient(90deg, var(--rl-gold), var(--rl-gold-bright), var(--rl-gold)); }
.rl-price-hot {
    position: absolute; top: 14px; right: -28px;
    background: linear-gradient(135deg, var(--rl-red), var(--rl-red-light));
    color: #fff; font-size: 11px; font-weight: 800; padding: 4px 35px;
    transform: rotate(45deg); text-transform: uppercase;
}
.rl-price-card h4 { font-size: 17px; font-weight: 800; color: var(--rl-gold-bright); margin: 0 0 5px; text-transform: uppercase; }
.rl-price-range { font-size: 24px; font-weight: 900; color: #fff; margin: 10px 0 3px; }
.rl-price-unit { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.rl-price-list { list-style: none; padding: 0; margin: 0 0 18px; text-align: left; }
.rl-price-list li { padding: 5px 0; font-size: 13px; color: rgba(255,255,255,0.75); display: flex; align-items: flex-start; gap: 7px; }
.rl-price-list li i { color: var(--rl-gold-bright); margin-top: 3px; flex-shrink: 0; }
.rl-price-note { font-size: 11px; color: rgba(255,255,255,0.4); font-style: italic; margin-top: 10px; }

/* Extra pricing grid */
.rl-extra-pricing {
    margin-top: 30px; background: rgba(184,134,11,0.06);
    border: 1px solid rgba(184,134,11,0.15); border-radius: 14px; padding: 25px;
}
.rl-extra-pricing h3 {
    text-align: center; font-size: 20px; font-weight: 800; margin: 0 0 18px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--rl-gold-bright), var(--rl-gold-pale));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rl-extra-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.rl-extra-item {
    background: rgba(255,255,255,0.04); border-radius: 10px; padding: 15px; text-align: center;
    border: 1px solid rgba(184,134,11,0.1); transition: border-color 0.3s;
}
.rl-extra-item:hover { border-color: rgba(184,134,11,0.3); }
.rl-extra-item .label { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.rl-extra-item .value { font-size: 18px; font-weight: 900; color: #fff; }
.rl-extra-item .value small { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 400; }

/* ===== PROMO ===== */
.rl-promo { padding: 35px 0; background: var(--rl-bg-gold); }
.rl-promo-box {
    max-width: 700px; margin: 0 auto;
    background: #fff; border: 3px solid var(--rl-gold);
    border-radius: 14px; padding: 30px 25px;
    box-shadow: 0 8px 35px rgba(184,134,11,0.15);
    text-align: center; position: relative; overflow: hidden;
}
.rl-promo-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--rl-bronze), var(--rl-gold), var(--rl-gold-bright), var(--rl-gold), var(--rl-bronze));
}
.rl-promo-label {
    display: inline-block; background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff; font-size: 12px; font-weight: 800;
    padding: 6px 18px; border-radius: 30px; margin-bottom: 12px;
    text-transform: uppercase; letter-spacing: 1px;
    animation: rlPulse2 2s ease-in-out infinite;
}
@keyframes rlPulse2 {
    0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(192,57,43,0); }
}
.rl-promo-price { font-size: 38px; font-weight: 900; color: var(--rl-red); margin-bottom: 5px; line-height: 1; }
.rl-promo-price small { font-size: 15px; color: var(--rl-text-mid); font-weight: 400; }
.rl-promo-desc { font-size: 14px; color: var(--rl-text-mid); margin-bottom: 12px; }
.rl-promo-cols {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px;
    max-width: 540px; margin: 0 auto 20px; text-align: left;
    list-style: none; padding: 0;
}
.rl-promo-cols li { padding: 4px 0; font-size: 13px; color: var(--rl-text-dark); display: flex; align-items: center; gap: 7px; }
.rl-promo-cols li i { color: #27ae60; font-size: 14px; flex-shrink: 0; }

/* ===== USP ===== */
.rl-usp { padding: 35px 0; background: linear-gradient(160deg, #2a1a0e 0%, #3d2b1f 20%, #4a3520 40%, #5a3d20 60%, #4a3018 80%, #2a1a0e 100%); }
.rl-usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rl-usp-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(184,134,11,0.15); border-radius: 12px;
    padding: 22px 16px; text-align: center; transition: all 0.3s;
}
.rl-usp-card:hover { transform: translateY(-5px); border-color: rgba(184,134,11,0.35); }
.rl-usp-icon {
    width: 55px; height: 55px;
    background: linear-gradient(135deg, rgba(184,134,11,0.25), rgba(184,134,11,0.08));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px; font-size: 22px; color: var(--rl-gold-bright);
}
.rl-usp-card h4 { font-size: 15px; font-weight: 700; margin: 0 0 5px; color: var(--rl-gold-pale); }
.rl-usp-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.4; margin: 0; }

/* ===== PROCESS ===== */
.rl-process { padding: 35px 0; background: var(--rl-bg-gold); }
.rl-process-grid { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.rl-process-step { flex: 1; min-width: 170px; max-width: 210px; text-align: center; padding: 18px 10px; }
.rl-process-num {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--rl-bronze), var(--rl-gold), var(--rl-gold-light));
    color: #fff; font-size: 20px; font-weight: 900; text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px; box-shadow: 0 4px 15px rgba(184,134,11,0.3);
}
.rl-process-step h4 { font-size: 14px; font-weight: 700; margin: 0 0 5px; color: var(--rl-text-dark); }
.rl-process-step p { font-size: 12px; color: var(--rl-text-mid); line-height: 1.4; margin: 0; }

/* ===== TESTIMONIALS ===== */
.rl-testimonials { padding: 35px 0; background: var(--rl-bg-warm); }
.rl-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rl-testi-card {
    background: #fff; border: 2px solid rgba(184,134,11,0.15);
    border-radius: 12px; padding: 22px; position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: all 0.3s;
}
.rl-testi-card:hover { border-color: var(--rl-gold-light); box-shadow: 0 8px 25px rgba(184,134,11,0.12); }
.rl-testi-card::before {
    content: '\f10d'; font-family: FontAwesome;
    position: absolute; top: 12px; right: 18px;
    font-size: 32px; color: rgba(184,134,11,0.1);
}
.rl-testi-stars { color: var(--rl-gold); font-size: 13px; margin-bottom: 8px; }
.rl-testi-text { font-size: 13px; color: var(--rl-text-mid); line-height: 1.6; font-style: italic; margin-bottom: 12px; }
.rl-testi-author { font-size: 14px; font-weight: 700; color: var(--rl-text-dark); }
.rl-testi-author span { display: block; font-size: 12px; font-weight: 400; color: var(--rl-text-light); margin-top: 2px; }

/* ===== CTA FINAL ===== */
.rl-cta-final {
    padding: 35px 0;
    background: var(--rl-bg-navy); text-align: center;
    position: relative; overflow: hidden;
}
.rl-cta-final::before {
    content: ''; position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.rl-cta-final::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, transparent 10%, var(--rl-gold) 30%, var(--rl-gold-bright) 50%, var(--rl-gold) 70%, transparent 90%);
}
.rl-cta-final .container { position: relative; z-index: 2; }
.rl-cta-final h2 { font-size: 30px; font-weight: 900; text-transform: uppercase; margin: 0 0 8px; color: #fff; }
.rl-cta-final h2 span { color: var(--rl-gold-bright); }
.rl-badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 18px 0; }
.rl-badge {
    background: rgba(184,134,11,0.12); border: 1px solid rgba(184,134,11,0.3);
    color: var(--rl-gold-bright); padding: 5px 14px; border-radius: 30px;
    font-size: 12px; font-weight: 700;
}
.rl-badge i { margin-right: 4px; }
.rl-guarantee { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.5); }
.rl-guarantee i { color: var(--rl-gold-bright); margin-right: 4px; }

/* ===== COMPANY ===== */
.rl-company {
    padding: 25px 0;
    background: linear-gradient(135deg, var(--rl-gold), var(--rl-gold-bright), var(--rl-gold));
    text-align: center;
}
.rl-company h3 { font-size: 18px; font-weight: 800; color: var(--rl-navy); margin: 0 0 10px; text-transform: uppercase; }
.rl-company-info { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; font-size: 13px; color: var(--rl-bronze-dark); }
.rl-company-info i { color: var(--rl-navy); margin-right: 5px; }
.rl-company-info a { color: var(--rl-navy); font-weight: 700; text-decoration: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .rl-hero h1 { font-size: 32px; }
    .rl-hero h1 span { font-size: 22px; }
    .rl-usp-grid, .rl-price-grid { grid-template-columns: repeat(2, 1fr); }
    .rl-gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .rl-gallery-featured { grid-column: span 1; grid-row: span 1; }
    .rl-testi-grid { grid-template-columns: 1fr; }
    .rl-stitle h2 { font-size: 24px; }
}
@media (max-width: 767px) {
    .rl-hero { min-height: 60vh; padding: 30px 15px 25px; }
    .rl-hero h1 { font-size: 24px; }
    .rl-hero h1 span { font-size: 17px; }
    .rl-hero-sub { font-size: 14px; }
    .rl-hero-stats { gap: 18px; }
    .rl-hero-stat strong { font-size: 24px; }
    .rl-phone { font-size: 20px; }
    .rl-btn { font-size: 13px; padding: 12px 22px; width: 100%; justify-content: center; }
    .rl-cta-row { flex-direction: column; align-items: center; }
    .rl-trust-grid { gap: 12px; }
    .rl-trust-item { font-size: 11px; }
    .rl-gallery, .rl-pricing, .rl-promo, .rl-usp, .rl-process, .rl-testimonials, .rl-cta-final { padding: 25px 0; }
    .rl-usp-grid, .rl-price-grid { grid-template-columns: 1fr; }
    .rl-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .rl-gallery-overlay { transform: translateY(0); font-size: 10px; padding: 18px 6px 6px; }
    .rl-process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .rl-process-step { min-width: unset; max-width: unset; padding: 15px 8px; }
    .rl-promo-box { padding: 22px 15px; }
    .rl-promo-price { font-size: 28px; }
    .rl-promo-cols { grid-template-columns: 1fr; }
    .rl-stitle h2 { font-size: 20px; }
    .rl-cta-final h2 { font-size: 20px; }
    .rl-company-info { flex-direction: column; gap: 6px; }
    .rl-price-range { font-size: 20px; }
    .rl-extra-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .rl-hero h1 { font-size: 20px; }
    .rl-hero h1 span { font-size: 15px; }
    .rl-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .rl-promo-price { font-size: 24px; }
}
