/* ==========================================================================
   Renovation Landing Page 3
   Fully isolated stylesheet - every selector is namespaced under .dsf-rl3 so
   nothing here leaks into, or is affected by, the rest of the theme.
   Units are px throughout (the sitewide stylesheet sets html{font-size:62.5%},
   which would silently distort rem values on this page).
   ========================================================================== */

.dsf-rl3 {
    --rl3-orange: #e85f2e;
    --rl3-orange-tint: #fbe9e2;
    --rl3-orange-soft: #f7c4ad;
    --rl3-orange-muted: #f0a17f;
    --rl3-dark: #141414;
    --rl3-white: #ffffff;
    --rl3-page: #f7f6f2;
    --rl3-panel: #faf9f7;
    --rl3-text: #142229;
    --rl3-text-muted: #5a6a71;
    --rl3-text-body: #4a4a4a;
    --rl3-text-on-dark: #cbc9c4;
    --rl3-text-on-dark-soft: #b3b3ad;
    --rl3-border: #ece9e1;
    --rl3-input-border: #e4e2da;
    --rl3-whatsapp: #25d366;
    --rl3-container: 1200px;

    /* header#masthead is position:absolute over the page, so it reserves no space.
	   This page has no title banner to absorb it, so the hero must pad itself down
	   by the header's real height. Measured: 88px on mobile, up to 154px from the
	   md breakpoint up (the extra few px on some widths are not noticeable). */
    --rl3-header-h: 88px;

    font-family: "Poppins", system-ui, sans-serif;
    color: var(--rl3-text);
    background: var(--rl3-page);
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.dsf-rl3 *,
.dsf-rl3 *::before,
.dsf-rl3 *::after {
    box-sizing: border-box;
}

.dsf-rl3 a {
    text-decoration: none;
    color: inherit;
}

.dsf-rl3 input,
.dsf-rl3 select,
.dsf-rl3 textarea,
.dsf-rl3 button {
    font-family: inherit;
}

.dsf-rl3 h1,
.dsf-rl3 h2,
.dsf-rl3 h3 {
    font-family: "Poppins", system-ui, sans-serif;
}

.dsf-rl3 img {
    max-width: 100%;
}

/* The header grows past the md breakpoint (logo + contact row + nav stack). */
@media (min-width: 768px) {
    .dsf-rl3 {
        --rl3-header-h: 154px;
    }
}

@keyframes dsf-rl3-floatpulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Shared bits -------------------------------------------------------------- */

.dsf-rl3__container {
    max-width: var(--rl3-container);
    margin: 0 auto;
    padding-left: clamp(16px, 4vw, 40px);
    padding-right: clamp(16px, 4vw, 40px);
}

.dsf-rl3__eyebrow {
    color: var(--rl3-orange);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dsf-rl3__whatsapp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Hero --------------------------------------------------------------------- */

.dsf-rl3-hero {
    position: relative;
    background: var(--rl3-dark);
    color: var(--rl3-white);
    overflow: hidden;
}

.dsf-rl3-hero__bg,
.dsf-rl3-hero__scrim,
.dsf-rl3-hero__glow {
    position: absolute;
    inset: 0;
}

.dsf-rl3-hero__bg {
    background-size: cover;
    background-position: center;
    opacity: 0.28;
}

.dsf-rl3-hero__scrim {
    background: linear-gradient(90deg, #141414 30%, rgba(20, 20, 20, 0.72) 100%);
}

.dsf-rl3-hero__glow {
    background: radial-gradient(1000px 500px at 85% -10%, rgba(232, 95, 46, 0.32), transparent 60%);
}

.dsf-rl3-hero__grid {
    position: relative;
    padding-top: calc(var(--rl3-header-h) + clamp(24px, 4vw, 48px));
    padding-bottom: clamp(40px, 6vw, 72px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
}

.dsf-rl3-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(232, 95, 46, 0.14);
    border: 1px solid rgba(232, 95, 46, 0.4);
    color: var(--rl3-orange-soft);
    padding: 7px 14px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    margin-bottom: 22px;
}

.dsf-rl3-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rl3-orange);
    flex-shrink: 0;
}

.dsf-rl3-hero__title {
    font-weight: 800;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.06;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
    color: var(--rl3-white);
}

.dsf-rl3-hero__title mark {
    background: none;
    color: var(--rl3-orange);
    padding: 0;
}

.dsf-rl3-hero__subtext {
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.6;
    color: var(--rl3-text-on-dark);
    margin: 0 0 26px;
    max-width: 520px;
}

.dsf-rl3-hero__points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}

.dsf-rl3-hero__point {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 600;
    color: #e6eeed;
}

.dsf-rl3-hero__point::before {
    content: "\2713";
    color: var(--rl3-orange);
    font-size: 17px;
}

.dsf-rl3-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dsf-rl3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.dsf-rl3-btn:hover {
    transform: translateY(-2px);
}

.dsf-rl3-btn--call {
    padding: 15px 26px;
    border-radius: 12px;
    background: var(--rl3-orange);
    color: var(--rl3-dark);
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 22px rgba(232, 95, 46, 0.35);
}

.dsf-rl3-btn--call .dsf-rl3-btn__glyph {
    font-size: 19px;
}

.dsf-rl3-btn--whatsapp {
    padding: 15px 26px;
    border-radius: 12px;
    background: var(--rl3-whatsapp);
    color: var(--rl3-dark);
    font-weight: 700;
    font-size: 16px;
}

/* Hero quote card ---------------------------------------------------------- */

.dsf-rl3-quote-card {
    background: var(--rl3-white);
    color: var(--rl3-text);
    border-radius: 20px;
    padding: clamp(24px, 3vw, 34px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Clears the sticky header once it turns position:fixed on scroll. */
    scroll-margin-top: calc(var(--rl3-header-h) + 16px);
}

.dsf-rl3-quote-card__title {
    font-weight: 700;
    font-size: 23px;
    margin: 0 0 4px;
}

.dsf-rl3-quote-card__subtext {
    color: var(--rl3-text-muted);
    font-size: 14px;
    margin: 0 0 20px;
}

.dsf-rl3-quote-card__privacy {
    text-align: center;
    color: #8a969b;
    font-size: 12px;
    margin: 14px 0 0;
}

/* WPForms renders its own markup for the quote form (not ours), so it needs
   its own set of overrides rather than a generic input/select rule. */

.dsf-rl3-quote-card__form .wpforms-field-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dsf-rl3-quote-card__form .wpforms-field {
    margin: 0 !important;
    padding: 0 !important;
}

.dsf-rl3-quote-card__form .wpforms-field-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--rl3-text);
    margin: 0 0 6px;
}

.dsf-rl3-quote-card__form .wpforms-required-label {
    color: var(--rl3-orange);
}

.dsf-rl3-quote-card__form input.wpforms-field-medium,
.dsf-rl3-quote-card__form select.wpforms-field-medium,
.dsf-rl3-quote-card__form textarea.wpforms-field-medium {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 14px 16px !important;
    border-radius: 11px !important;
    border: 1.5px solid var(--rl3-input-border) !important;
    background-color: var(--rl3-white) !important;
    font-family: "Poppins", system-ui, sans-serif !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    color: var(--rl3-text) !important;
    box-shadow: none !important;
    outline: none;
}

.dsf-rl3-quote-card__form input.wpforms-field-medium::placeholder,
.dsf-rl3-quote-card__form textarea.wpforms-field-medium::placeholder {
    color: #93a3a6;
    opacity: 1;
}

.dsf-rl3-quote-card__form select.wpforms-field-medium {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6A71' stroke-width='1.6' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px !important;
}

.dsf-rl3-quote-card__form .wpforms-submit-container {
    margin: 4px 0 0 !important;
    padding: 0 !important;
}

.dsf-rl3-quote-card__form button.wpforms-submit {
    display: block !important;
    width: 100%;
    height: auto !important;
    padding: 16px !important;
    border-radius: 11px !important;
    border: none !important;
    background: var(--rl3-orange) !important;
    color: var(--rl3-dark) !important;
    font-family: "Poppins", system-ui, sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(232, 95, 46, 0.32);
    transition: transform 0.2s ease;
}

.dsf-rl3-quote-card__form button.wpforms-submit:hover {
    transform: translateY(-2px);
}

/* WPForms missing: a plain call/WhatsApp pair keeps the card useful. */
.dsf-rl3-quote-card__fallback {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Stats -------------------------------------------------------------------- */

.dsf-rl3-stats {
    background: var(--rl3-orange);
    color: var(--rl3-white);
}

.dsf-rl3-stats__grid {
    padding-top: 26px;
    padding-bottom: 26px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.dsf-rl3-stats__value {
    font-weight: 800;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1;
}

.dsf-rl3-stats__label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 6px;
    letter-spacing: 0.3px;
}

/* Services ----------------------------------------------------------------- */

.dsf-rl3-services {
    padding-top: clamp(56px, 7vw, 90px);
    padding-bottom: clamp(56px, 7vw, 90px);
}

.dsf-rl3-services__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.dsf-rl3-services__title {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 40px);
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.dsf-rl3-services__subtext {
    color: var(--rl3-text-muted);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

.dsf-rl3-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.dsf-rl3-service {
    background: var(--rl3-white);
    border: 1px solid var(--rl3-border);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dsf-rl3-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(12, 39, 51, 0.1);
}

.dsf-rl3-service__number {
    font-weight: 800;
    font-size: 15px;
    color: var(--rl3-orange);
    margin-bottom: 14px;
}

.dsf-rl3-service__title {
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 10px;
}

.dsf-rl3-service__text {
    color: var(--rl3-text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Before / after compare --------------------------------------------------- */

.dsf-rl3-compare {
    background: var(--rl3-white);
    border-top: 1px solid var(--rl3-border);
    border-bottom: 1px solid var(--rl3-border);
}

.dsf-rl3-compare__grid {
    padding-top: clamp(56px, 7vw, 90px);
    padding-bottom: clamp(56px, 7vw, 90px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
}

.dsf-rl3-compare__title {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 40px);
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.dsf-rl3-compare__subtext {
    color: var(--rl3-text-muted);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 24px;
}

.dsf-rl3-compare__points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.dsf-rl3-compare__point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
}

.dsf-rl3-compare__point::before {
    content: "\2713";
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--rl3-orange-tint);
    color: var(--rl3-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.dsf-rl3-btn--dark {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 12px;
    background: var(--rl3-dark);
    color: var(--rl3-white) !important;
    font-weight: 700;
    font-size: 15px;
}

.dsf-rl3-compare__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    cursor: ew-resize;
    -webkit-user-select: none;
    user-select: none;
    box-shadow: 0 26px 60px rgba(12, 39, 51, 0.18);
    touch-action: none;
}

.dsf-rl3-compare__layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.dsf-rl3-compare__layer--before {
    overflow: hidden;
    clip-path: inset(0 50% 0 0);
}

.dsf-rl3-compare__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dsf-rl3-compare__tag {
    position: relative;
    margin: 16px;
    color: var(--rl3-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
}

.dsf-rl3-compare__tag--after {
    background: var(--rl3-orange);
}

.dsf-rl3-compare__tag--before {
    background: rgba(20, 20, 20, 0.85);
}

.dsf-rl3-compare__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--rl3-white);
    transform: translateX(-2px);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.dsf-rl3-compare__knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rl3-white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rl3-dark);
    font-size: 18px;
    font-weight: 700;
}

/* Work in action (video) --------------------------------------------------- */

.dsf-rl3-video {
    padding-top: clamp(56px, 7vw, 90px);
    padding-bottom: clamp(56px, 7vw, 90px);
}

.dsf-rl3-video__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
}

@media (max-width: 900px) {
    .dsf-rl3-video__grid {
        grid-template-columns: 1fr;
    }
}

.dsf-rl3-video__frame {
    position: relative;
    aspect-ratio: 9 / 16;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    background: var(--rl3-dark);
    box-shadow: 0 26px 60px rgba(12, 39, 51, 0.18);
}

.dsf-rl3-video__el {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dsf-rl3-video__sound {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 0;
    border-radius: 100px;
    background: rgba(20, 20, 20, 0.7);
    color: var(--rl3-white);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: background-color 0.2s ease;
}

.dsf-rl3-video__sound:hover {
    background: var(--rl3-orange);
}

.dsf-rl3-video__title {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 40px);
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.dsf-rl3-video__text {
    color: var(--rl3-text-muted);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 24px;
}

.dsf-rl3-video__points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.dsf-rl3-video__point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
}

.dsf-rl3-video__point::before {
    content: "\2713";
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--rl3-orange-tint);
    color: var(--rl3-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.dsf-rl3-video__cta {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 12px;
    background: var(--rl3-orange);
    color: var(--rl3-dark) !important;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 22px rgba(232, 95, 46, 0.35);
    transition: transform 0.2s ease;
}

.dsf-rl3-video__cta:hover {
    transform: translateY(-2px);
}

/* Gallery ------------------------------------------------------------------ */

.dsf-rl3-gallery {
    padding-top: clamp(48px, 6vw, 80px);
    padding-bottom: clamp(48px, 6vw, 80px);
}

.dsf-rl3-gallery__head {
    text-align: center;
    margin-bottom: 40px;
}

.dsf-rl3-gallery__title {
    font-weight: 700;
    font-size: clamp(26px, 3.2vw, 36px);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.dsf-rl3-gallery__subtext {
    color: var(--rl3-text-muted);
    font-size: 16px;
    margin: 0;
}

.dsf-rl3-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 900px) {
    .dsf-rl3-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .dsf-rl3-gallery__grid {
        grid-template-columns: 1fr;
    }
}

.dsf-rl3-gallery__item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.dsf-rl3-gallery__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dsf-rl3-gallery__item:hover .dsf-rl3-gallery__img {
    transform: scale(1.06);
}

.dsf-rl3-gallery__caption {
    position: relative;
    width: 100%;
    padding: 16px 14px 14px;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.72));
    color: var(--rl3-white);
    font-weight: 700;
    font-size: 15px;
}

/* SEO content -------------------------------------------------------------- */

.dsf-rl3-seo {
    background: var(--rl3-panel);
    border-top: 1px solid var(--rl3-border);
}

.dsf-rl3-seo__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: clamp(56px, 7vw, 90px) clamp(16px, 4vw, 40px);
}

.dsf-rl3-seo__intro {
    max-width: 760px;
    margin: 0 auto 44px;
}

.dsf-rl3-seo__title {
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 38px);
    margin: 0 0 20px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.dsf-rl3-seo__text {
    color: var(--rl3-text-body);
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 16px;
}

.dsf-rl3-seo__text:last-child {
    margin-bottom: 0;
}

.dsf-rl3-seo__points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin: 0 0 56px;
    padding: 0;
    list-style: none;
}

.dsf-rl3-seo__point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--rl3-white);
    border: 1px solid var(--rl3-border);
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 14.5px;
    line-height: 1.55;
    color: #2c2c2c;
    font-weight: 500;
}

.dsf-rl3-seo__point::before {
    content: "\2713";
    color: var(--rl3-orange);
    font-size: 18px;
    line-height: 1.4;
    flex-shrink: 0;
}

.dsf-rl3-seo__mid {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.dsf-rl3-seo__mid-title {
    font-weight: 700;
    font-size: clamp(24px, 3vw, 34px);
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.dsf-rl3-seo__mid-text {
    color: var(--rl3-text-body);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.dsf-rl3-seo__blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.dsf-rl3-seo__block {
    background: var(--rl3-white);
    border: 1px solid var(--rl3-border);
    border-radius: 16px;
    padding: 28px;
}

.dsf-rl3-seo__block-bar {
    width: 40px;
    height: 4px;
    background: var(--rl3-orange);
    border-radius: 3px;
    margin-bottom: 18px;
}

.dsf-rl3-seo__block-title {
    font-weight: 700;
    font-size: 19px;
    margin: 0 0 12px;
}

.dsf-rl3-seo__block-text {
    color: #5a5a5a;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Process ------------------------------------------------------------------ */

.dsf-rl3-process {
    background: var(--rl3-dark);
    color: var(--rl3-white);
}

.dsf-rl3-process__inner {
    padding-top: clamp(56px, 7vw, 88px);
    padding-bottom: clamp(56px, 7vw, 88px);
}

.dsf-rl3-process__head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.dsf-rl3-process__head .dsf-rl3__eyebrow {
    color: var(--rl3-orange-muted);
}

.dsf-rl3-process__title {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 40px);
    margin: 0;
    letter-spacing: -0.5px;
}

.dsf-rl3-process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
}

.dsf-rl3-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 26px;
}

.dsf-rl3-step__number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--rl3-orange);
    color: var(--rl3-dark);
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.dsf-rl3-step__title {
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 8px;
}

.dsf-rl3-step__text {
    color: var(--rl3-white);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials ------------------------------------------------------------- */

.dsf-rl3-testimonials {
    padding-top: clamp(56px, 7vw, 88px);
    padding-bottom: clamp(56px, 7vw, 88px);
}

.dsf-rl3-testimonials__head {
    text-align: center;
    margin-bottom: 44px;
}

.dsf-rl3-testimonials__title {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 40px);
    margin: 0 0 10px;
    letter-spacing: -0.5px;
}

.dsf-rl3-testimonials__stars {
    color: var(--rl3-orange);
    font-size: 22px;
    letter-spacing: 3px;
}

.dsf-rl3-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
}

.dsf-rl3-testimonial {
    background: var(--rl3-white);
    border: 1px solid var(--rl3-border);
    border-radius: 16px;
    padding: 28px;
}

.dsf-rl3-testimonial__stars {
    color: var(--rl3-orange);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.dsf-rl3-testimonial__quote {
    font-size: 15px;
    line-height: 1.7;
    color: #262626;
    margin: 0 0 20px;
}

.dsf-rl3-testimonial__person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dsf-rl3-testimonial__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--rl3-orange);
    color: var(--rl3-white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dsf-rl3-testimonial__name {
    font-weight: 700;
    font-size: 15px;
}

.dsf-rl3-testimonial__area {
    color: #8a969b;
    font-size: 13px;
}

/* Offer banner ------------------------------------------------------------- */

.dsf-rl3-offer {
    padding: 0 clamp(16px, 4vw, 40px) clamp(44px, 6vw, 70px);
}

.dsf-rl3-offer__inner {
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 24px;
    background: var(--rl3-orange);
    color: var(--rl3-white);
    padding: clamp(32px, 4.5vw, 52px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(232, 95, 46, 0.35);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.dsf-rl3-offer__lead {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.dsf-rl3-offer__figure {
    line-height: 0.82;
}

.dsf-rl3-offer__percent {
    font-weight: 800;
    font-size: clamp(72px, 11vw, 128px);
    letter-spacing: -3px;
}

.dsf-rl3-offer__off {
    font-weight: 800;
    font-size: clamp(26px, 3.5vw, 40px);
    letter-spacing: 6px;
}

.dsf-rl3-offer__copy {
    max-width: 300px;
}

.dsf-rl3-offer__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rl3-dark);
    color: var(--rl3-white);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 8px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
    animation: dsf-rl3-floatpulse 1.8s ease-in-out infinite;
}

.dsf-rl3-offer__pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rl3-orange);
    flex-shrink: 0;
}

.dsf-rl3-offer__title {
    font-weight: 700;
    font-size: clamp(20px, 2.5vw, 26px);
    line-height: 1.15;
}

.dsf-rl3-offer__note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
}

.dsf-rl3-offer__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
    flex: 1;
}

.dsf-rl3-offer__cta {
    text-align: center;
    padding: 18px 28px;
    border-radius: 14px;
    background: var(--rl3-dark);
    color: var(--rl3-white);
    font-weight: 800;
    font-size: 17px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.dsf-rl3-offer__cta-alt {
    text-align: center;
    padding: 16px 28px;
    border-radius: 14px;
    background: var(--rl3-white);
    color: var(--rl3-dark) !important;
    font-weight: 800;
    font-size: 16px;
}

/* FAQ ---------------------------------------------------------------------- */

.dsf-rl3-faq {
    max-width: 840px;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 60px) clamp(16px, 4vw, 40px) clamp(56px, 7vw, 90px);
}

.dsf-rl3-faq__head {
    text-align: center;
    margin-bottom: 40px;
}

.dsf-rl3-faq__title {
    font-weight: 700;
    font-size: clamp(26px, 3.2vw, 36px);
    margin: 0;
    letter-spacing: -0.5px;
}

.dsf-rl3-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dsf-rl3-faq__item {
    background: var(--rl3-white);
    border: 1px solid var(--rl3-border);
    border-radius: 14px;
    overflow: hidden;
}

.dsf-rl3-faq__trigger {
    width: 100%;
    text-align: left;
    padding: 20px 22px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: "Poppins", system-ui, sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--rl3-text);
}

.dsf-rl3-faq__sign {
    color: var(--rl3-orange);
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1;
}

.dsf-rl3-faq__item.is-open .dsf-rl3-faq__sign::before {
    content: "\2212";
}

.dsf-rl3-faq__item:not(.is-open) .dsf-rl3-faq__sign::before {
    content: "+";
}

.dsf-rl3-faq__panel {
    padding: 0 22px 22px;
    color: var(--rl3-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Final CTA ---------------------------------------------------------------- */

.dsf-rl3-cta {
    background: var(--rl3-dark);
    color: var(--rl3-white);
}

.dsf-rl3-cta__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 40px);
    text-align: center;
}

.dsf-rl3-cta__title {
    font-weight: 800;
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 16px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.dsf-rl3-cta__text {
    font-size: 18px;
    color: var(--rl3-text-on-dark);
    max-width: 520px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.dsf-rl3-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.dsf-rl3-cta__primary {
    padding: 16px 32px;
    border-radius: 12px;
    background: var(--rl3-orange);
    color: var(--rl3-dark);
    font-weight: 800;
    font-size: 16px;
}

.dsf-rl3-cta__whatsapp {
    padding: 16px 32px;
    border-radius: 12px;
    background: var(--rl3-whatsapp);
    color: var(--rl3-dark);
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Motion preferences ------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .dsf-rl3 * {
        animation: none !important;
        transition: none !important;
    }
}