/* ============================================================
   Roddent Cleanup — Elementor Widget Styles
   All rules are scoped to .roddent-widget so the theme is unaffected.
   ============================================================ */

.roddent-widget {
    --rd-bg: #0a0a0a;
    --rd-panel: #141414;
    --rd-panel-2: #1c1c1c;
    --rd-ink: #ffffff;
    --rd-ink-dim: #c9c9c9;
    --rd-muted: #8a8a8a;
    --rd-red: #d12b2b;
    --rd-red-2: #a51e1e;
    --rd-yellow: #f5c518;
    --rd-green: #2fa84a;
    --rd-green-2: #1f7a36;
    --rd-radius: 6px;
    --rd-shadow: 0 10px 30px rgba(0,0,0,.5);
    --rd-grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    font-family: 'Barlow', system-ui, sans-serif;
    color: var(--rd-ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.roddent-widget *,
.roddent-widget *::before,
.roddent-widget *::after {
    box-sizing: border-box;
}

.roddent-widget img { max-width: 100%; display: block; }

/* ============================================================
   FULL-BLEED — break out of any parent container/section padding
   so the dark backgrounds reach the edge of the viewport.
   Toggled via the widget "Stretch to Full Width" control which
   adds the class `.roddent-fullbleed-yes`.
   ============================================================ */

/* 1) Make the widget element itself span the full viewport width. */
.elementor-widget.roddent-fullbleed-yes {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow-x: clip;
}
.elementor-widget.roddent-fullbleed-yes > .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

@supports not (overflow: clip) {
    .elementor-widget.roddent-fullbleed-yes { overflow-x: hidden; }
}

/* 2) Neutralize parent container/section padding & max-width so
      vertical (top/bottom) gaps disappear too. Uses :has() — modern
      browsers (~95%+). For older browsers, set the section's padding
      to 0 manually in Elementor. */
@supports selector(:has(*)) {

    /* Legacy section/column structure */
    .elementor-section:has(.elementor-widget.roddent-fullbleed-yes),
    .elementor-section-stretched:has(.elementor-widget.roddent-fullbleed-yes) {
        padding: 0 !important;
    }
    .elementor-container:has(.elementor-widget.roddent-fullbleed-yes) {
        max-width: 100% !important;
        padding: 0 !important;
    }
    .elementor-row:has(.elementor-widget.roddent-fullbleed-yes),
    .elementor-column:has(.elementor-widget.roddent-fullbleed-yes),
    .elementor-column-wrap:has(.elementor-widget.roddent-fullbleed-yes),
    .elementor-widget-wrap:has(.elementor-widget.roddent-fullbleed-yes) {
        padding: 0 !important;
    }

    /* New flex-container structure */
    .e-con:has(> .e-con-inner > .elementor-widget.roddent-fullbleed-yes),
    .e-con:has(> .elementor-widget.roddent-fullbleed-yes),
    .e-con-full:has(.elementor-widget.roddent-fullbleed-yes) {
        padding: 0 !important;
        max-width: 100% !important;
        --padding-top: 0px;
        --padding-right: 0px;
        --padding-bottom: 0px;
        --padding-left: 0px;
    }
    .e-con-inner:has(> .elementor-widget.roddent-fullbleed-yes) {
        padding: 0 !important;
        max-width: 100% !important;
        --padding-top: 0px;
        --padding-right: 0px;
        --padding-bottom: 0px;
        --padding-left: 0px;
    }
}

.roddent-widget .rd-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- HERO HEADING ---------- */
.roddent-widget .rd-cleanup {
    position: relative;
    padding: clamp(40px, 7vw, 80px) 0 clamp(40px, 6vw, 70px);
    background:
        radial-gradient(1200px 500px at 50% -10%, rgba(209,43,43,.18), transparent 60%),
        var(--rd-bg);
}
.roddent-widget .rd-cleanup::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--rd-grain);
    opacity: .5;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.roddent-widget .rd-cleanup__head {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 48px);
    position: relative;
}
.roddent-widget .rd-cleanup__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
}
.roddent-widget .rd-cleanup__logo a { display: inline-flex; }
.roddent-widget .rd-cleanup__logo img {
    display: block;
    max-width: 220px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35));
}
.roddent-widget .rd-cleanup__title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 7vw, 5.5rem);
    letter-spacing: 0.015em;
    line-height: 0.95;
    text-transform: uppercase;
    color: #f4f4f4;
    margin: 0;
    text-shadow:
        0 2px 0 rgba(0,0,0,.5),
        0 4px 24px rgba(0,0,0,.7);
}
.roddent-widget .rd-cleanup__subtitle {
    display: inline-block;
    margin: 14px 0 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 2.2vw, 1.65rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rd-yellow);
    padding: 6px 0;
    border-top: 2px solid rgba(245,197,24,.35);
    border-bottom: 2px solid rgba(245,197,24,.35);
}

/* ---------- 3-STAGE GRID ---------- */
.roddent-widget .rd-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.roddent-widget .rd-stage {
    background: var(--rd-panel);
    border-radius: var(--rd-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--rd-shadow);
    border: 1px solid rgba(255,255,255,.05);
    transition: transform .35s ease, box-shadow .35s ease;
}
.roddent-widget .rd-stage:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,.7);
}

.roddent-widget .rd-stage__label {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    padding: 14px 12px 12px;
    font-size: clamp(1rem, 1.7vw, 1.35rem);
    letter-spacing: 0.04em;
}
.roddent-widget .rd-stage--before .rd-stage__label { background: var(--rd-red); }
.roddent-widget .rd-stage--during .rd-stage__label { background: var(--rd-yellow); color: #1a1a1a; }
.roddent-widget .rd-stage--after  .rd-stage__label { background: var(--rd-green); }

.roddent-widget .rd-stage__sub {
    background: #f4f4f4;
    color: #1a1a1a;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: clamp(.78rem, 1.1vw, .95rem);
    letter-spacing: 0.08em;
    padding: 10px 12px;
    border-bottom: 1px solid #d8d8d8;
}

.roddent-widget .rd-stage__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #000;
}
.roddent-widget .rd-stage__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.roddent-widget .rd-stage:hover .rd-stage__media img { transform: scale(1.04); }

.roddent-widget .rd-stage__overlay {
    position: absolute;
    left: 14px; right: 14px; bottom: 14px;
    background: rgba(10,10,10,.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 4px;
    padding: 14px 16px;
}
.roddent-widget .rd-stage__list {
    list-style: none;
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
}
.roddent-widget .rd-stage__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(.85rem, 1.05vw, 1rem);
    font-weight: 500;
    color: var(--rd-ink);
    line-height: 1.25;
    margin: 0;
}
.roddent-widget .rd-stage__list .rd-ico {
    flex: 0 0 20px;
    width: 20px; height: 20px;
    display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.roddent-widget .rd-stage__list .rd-ico svg {
    width: 12px; height: 12px;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.roddent-widget .rd-stage--before .rd-ico { background: var(--rd-red); }
.roddent-widget .rd-stage--before .rd-ico svg { stroke: #fff; }
.roddent-widget .rd-stage--during .rd-ico { background: var(--rd-yellow); }
.roddent-widget .rd-stage--during .rd-ico svg { stroke: #1a1a1a; }
.roddent-widget .rd-stage--after  .rd-ico { background: var(--rd-green); }
.roddent-widget .rd-stage--after  .rd-ico svg { stroke: #fff; }

/* Rebate callout */
.roddent-widget .rd-rebate {
    position: absolute;
    right: -8px; bottom: -8px;
    background: #0a0a0a;
    border: 2px solid var(--rd-yellow);
    color: #fff;
    padding: 14px 16px;
    text-align: center;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.05;
    box-shadow: 0 8px 20px rgba(0,0,0,.6);
    transform: rotate(-3deg);
    max-width: 140px;
}
.roddent-widget .rd-rebate small { display:block; font-size: .7rem; letter-spacing: .12em; color: var(--rd-ink-dim); }
.roddent-widget .rd-rebate strong {
    display: block;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    color: var(--rd-yellow);
    font-weight: 700;
    letter-spacing: .03em;
    margin: 4px 0 2px;
}
.roddent-widget .rd-rebate span { font-size: .8rem; letter-spacing: .1em; }

/* ---------- BENEFITS STRIP ---------- */
.roddent-widget .rd-benefits {
    margin-top: clamp(24px, 4vw, 40px);
    background: linear-gradient(180deg, #f4f4f4, #e9e9e9);
    color: #111;
    border-radius: var(--rd-radius);
    padding: clamp(20px, 2.5vw, 28px) clamp(18px, 3vw, 36px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    box-shadow: var(--rd-shadow);
}
.roddent-widget .rd-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
}
.roddent-widget .rd-benefit__shield {
    flex: 0 0 56px;
    width: 56px; height: 56px;
    display: grid; place-items: center;
    background: #0e0e0e;
    border-radius: 50%;
    color: var(--rd-red);
}
.roddent-widget .rd-benefit__shield svg { width: 28px; height: 28px; }
.roddent-widget .rd-benefit__text h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(.95rem, 1.2vw, 1.05rem);
    letter-spacing: .04em;
    margin: 0 0 2px;
    color: #0a0a0a;
}
.roddent-widget .rd-benefit__text p {
    font-size: clamp(.82rem, 1vw, .92rem);
    color: #3a3a3a;
    line-height: 1.35;
    margin: 0;
}

/* ---------- CTA BAR ---------- */
.roddent-widget .rd-cta {
    margin-top: clamp(24px, 4vw, 40px);
    display: grid;
    grid-template-columns: 1.4fr auto 1.4fr 1fr;
    align-items: center;
    gap: clamp(16px, 2.5vw, 32px);
}
.roddent-widget .rd-cta__pitch {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .03em;
    line-height: 1.15;
    font-size: clamp(1.05rem, 1.5vw, 1.4rem);
    margin: 0;
}
.roddent-widget .rd-cta__pitch span { color: var(--rd-ink-dim); display:block; font-weight: 500; margin-top: 4px; }

.roddent-widget .rd-stop-sign {
    width: clamp(90px, 11vw, 130px);
    aspect-ratio: 1;
    position: relative;
    display: grid;
    place-items: center;
    justify-self: center;
    filter: drop-shadow(0 8px 16px rgba(209,43,43,.45));
}
.roddent-widget .rd-stop-sign::before,
.roddent-widget .rd-stop-sign::after {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: polygon(30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0 70%, 0 30%);
}
.roddent-widget .rd-stop-sign::before { background: #fff; }
.roddent-widget .rd-stop-sign::after  { background: var(--rd-red); inset: 6%; }
.roddent-widget .rd-stop-sign span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: .95;
    letter-spacing: .04em;
    font-size: clamp(.9rem, 1.5vw, 1.25rem);
    padding: 0 8px;
}
.roddent-widget .rd-stop-sign span small {
    display: block;
    font-size: .72em;
    font-weight: 600;
    letter-spacing: .08em;
    margin-bottom: 2px;
    opacity: .95;
}

.roddent-widget .rd-cta__schedule { text-align: left; }
.roddent-widget .rd-cta__schedule h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--rd-red);
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    line-height: 1.1;
    letter-spacing: .03em;
    margin: 0 0 10px;
}
.roddent-widget .rd-cta__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    align-items: center;
    color: var(--rd-ink);
    font-weight: 500;
}
.roddent-widget .rd-cta__contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, color .2s ease;
    font-size: clamp(.95rem, 1.3vw, 1.1rem);
}
.roddent-widget .rd-cta__contact a:hover { color: var(--rd-yellow); border-bottom-color: var(--rd-yellow); }
.roddent-widget .rd-cta__contact svg { width: 18px; height: 18px; flex-shrink: 0; }

.roddent-widget .rd-financing {
    border: 2px solid #fff;
    border-radius: 6px;
    padding: 12px 18px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.15;
}
.roddent-widget .rd-financing small { font-size: .7rem; letter-spacing: .12em; color: var(--rd-ink-dim); display:block; }
.roddent-widget .rd-financing strong {
    display: block;
    color: var(--rd-red);
    font-size: clamp(1.05rem, 1.6vw, 1.4rem);
    font-weight: 700;
    margin: 4px 0;
}
.roddent-widget .rd-financing span { font-size: .7rem; color: var(--rd-muted); letter-spacing: .1em; }

/* ---------- WELCOME VIDEO ---------- */
.roddent-widget .rd-welcome {
    position: relative;
    padding: clamp(50px, 7vw, 90px) 0;
    background:
        radial-gradient(900px 400px at 50% 0%, rgba(245,197,24,.08), transparent 65%),
        var(--rd-bg);
    border-top: 1px solid rgba(255,255,255,.06);
}
.roddent-widget .rd-welcome__head {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 44px);
}
.roddent-widget .rd-welcome__eyebrow {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: clamp(.78rem, 1vw, .9rem);
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--rd-yellow);
    margin-bottom: 10px;
}
.roddent-widget .rd-welcome__title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    letter-spacing: .02em;
    line-height: 1.05;
    color: #f4f4f4;
    margin: 0;
}
.roddent-widget .rd-welcome__lead {
    margin: 12px auto 0;
    color: var(--rd-ink-dim);
    font-size: clamp(.95rem, 1.2vw, 1.05rem);
    max-width: 640px;
}

.roddent-widget .rd-video-frame {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: #0e0e0e;
    box-shadow: var(--rd-shadow), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.roddent-widget .rd-video-frame video,
.roddent-widget .rd-video-frame iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
    object-fit: cover;
}

.roddent-widget .rd-video-placeholder {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    background: radial-gradient(circle at 50% 40%, #1f1f1f 0%, #0a0a0a 75%);
    color: var(--rd-ink-dim);
    text-align: center;
    padding: 30px;
}
.roddent-widget .rd-video-placeholder__play {
    width: 84px; height: 84px;
    border-radius: 50%;
    background: var(--rd-red);
    display: grid; place-items: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 24px rgba(209,43,43,.5);
    transition: transform .25s ease, background .25s ease;
}
.roddent-widget .rd-video-placeholder__play::after {
    content: "";
    width: 0; height: 0;
    border-style: solid;
    border-width: 14px 0 14px 22px;
    border-color: transparent transparent transparent #fff;
    margin-left: 6px;
}
.roddent-widget .rd-video-placeholder:hover .rd-video-placeholder__play {
    transform: scale(1.06);
    background: #ed3838;
}
.roddent-widget .rd-video-placeholder strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    letter-spacing: .05em;
    margin-bottom: 4px;
}
.roddent-widget .rd-video-placeholder span {
    font-size: .9rem;
    color: var(--rd-muted);
}

/* ---------- BOOKING FORM ---------- */
.roddent-widget .rd-booking {
    position: relative;
    padding: clamp(50px, 7vw, 100px) 0 clamp(60px, 8vw, 110px);
    background:
        radial-gradient(800px 400px at 50% 100%, rgba(209,43,43,.15), transparent 70%),
        var(--rd-bg);
    border-top: 1px solid rgba(255,255,255,.06);
}
.roddent-widget .rd-booking__inner {
    max-width: 880px;
    margin: 0 auto;
    background: linear-gradient(180deg, #181818, #111);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--rd-shadow), 0 0 0 1px rgba(255,255,255,.03) inset;
}

.roddent-widget .rd-booking__banner {
    background: linear-gradient(135deg, var(--rd-red) 0%, #b81f1f 100%);
    color: #fff;
    text-align: center;
    padding: 22px 26px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(1.15rem, 2.2vw, 1.7rem);
    letter-spacing: .07em;
    line-height: 1.15;
    position: relative;
    box-shadow: 0 4px 0 rgba(0,0,0,.2) inset;
}
.roddent-widget .rd-booking__banner::before,
.roddent-widget .rd-booking__banner::after {
    content: "";
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 28px; height: 2px;
    background: #fff;
    opacity: .4;
}
.roddent-widget .rd-booking__banner::before { left: 16px; }
.roddent-widget .rd-booking__banner::after  { right: 16px; }

.roddent-widget .rd-booking__body {
    padding: clamp(34px, 4.5vw, 56px) clamp(28px, 4.5vw, 56px) clamp(38px, 5vw, 60px);
}
.roddent-widget .rd-booking__intro {
    text-align: center;
    margin-bottom: 32px;
}
.roddent-widget .rd-booking__intro h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    color: #fff;
    letter-spacing: .03em;
    margin: 0 0 10px;
    line-height: 1.15;
}
.roddent-widget .rd-booking__intro p {
    color: var(--rd-ink-dim);
    font-size: clamp(.95rem, 1.15vw, 1.05rem);
    margin: 0;
    line-height: 1.5;
}

.roddent-widget .rd-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 20px;
}
.roddent-widget .rd-field { display: flex; flex-direction: column; gap: 8px; }
.roddent-widget .rd-field--full { grid-column: 1 / -1; }
.roddent-widget .rd-field label {
    font-family: 'Oswald', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--rd-ink-dim);
}
.roddent-widget .rd-field label .rd-req { color: var(--rd-red); margin-left: 2px; }
.roddent-widget .rd-field input,
.roddent-widget .rd-field select,
.roddent-widget .rd-field textarea {
    width: 100%;
    background: #0c0c0c;
    border: 1px solid #2a2a2a;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 1.02rem;
    padding: 15px 18px;
    border-radius: 8px;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.roddent-widget .rd-field input::placeholder,
.roddent-widget .rd-field textarea::placeholder { color: #666; }
.roddent-widget .rd-field input:focus,
.roddent-widget .rd-field select:focus,
.roddent-widget .rd-field textarea:focus {
    outline: none;
    border-color: var(--rd-yellow);
    background: #111;
    box-shadow: 0 0 0 3px rgba(245,197,24,.15);
}
.roddent-widget .rd-field textarea { resize: vertical; min-height: 140px; line-height: 1.5; }
.roddent-widget .rd-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
}

.roddent-widget .rd-booking__submit {
    margin-top: 28px;
    width: 100%;
    background: linear-gradient(135deg, var(--rd-red) 0%, #ed3838 100%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    padding: 18px 22px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
    box-shadow: 0 8px 22px rgba(209,43,43,.4);
}
.roddent-widget .rd-booking__submit:hover {
    background: linear-gradient(135deg, #ed3838 0%, #ff4646 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(209,43,43,.55);
}
.roddent-widget .rd-booking__submit:active { transform: translateY(0); }
.roddent-widget .rd-booking__submit[disabled] { opacity: .65; cursor: progress; }

.roddent-widget .rd-booking__trust {
    margin-top: 18px;
    text-align: center;
    color: var(--rd-muted);
    font-size: .88rem;
    line-height: 1.55;
}
.roddent-widget .rd-booking__trust strong { color: var(--rd-ink-dim); font-weight: 600; }

.roddent-widget .rd-form-message {
    margin-top: 14px;
    text-align: center;
    font-size: .9rem;
    min-height: 1.2em;
}
.roddent-widget .rd-form-message.is-success { color: #6ee387; }
.roddent-widget .rd-form-message.is-error   { color: #ff7e7e; }

.roddent-widget .rd-hp {
    position: absolute !important;
    left: -10000px !important;
    top: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
    .roddent-widget .rd-stages { grid-template-columns: 1fr; }
    .roddent-widget .rd-benefits { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .roddent-widget .rd-cta {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 22px;
    }
    .roddent-widget .rd-cta__pitch,
    .roddent-widget .rd-cta__schedule { text-align: center; }
    .roddent-widget .rd-cta__contact { justify-content: center; }
    .roddent-widget .rd-rebate { transform: rotate(-3deg) scale(.92); right: 6px; bottom: 6px; }
}

@media (max-width: 768px) {
    .roddent-widget .rd-form-grid { grid-template-columns: 1fr; gap: 18px; }
    .roddent-widget .rd-booking__body {
        padding: 28px 20px 32px;
    }
    .roddent-widget .rd-booking__banner {
        padding: 16px 20px;
        font-size: 1.05rem;
        letter-spacing: 0.04em;
    }
    .roddent-widget .rd-booking__banner::before,
    .roddent-widget .rd-booking__banner::after { display: none; }
    .roddent-widget .rd-booking__intro h3 { font-size: 1.25rem; }
    .roddent-widget .rd-booking__intro p { font-size: 0.92rem; }
    .roddent-widget .rd-field input,
    .roddent-widget .rd-field select,
    .roddent-widget .rd-field textarea {
        padding: 13px 14px;
        font-size: 0.98rem;
    }
    .roddent-widget .rd-booking__submit {
        padding: 16px 16px;
        font-size: 0.98rem;
        letter-spacing: 0.05em;
        white-space: normal;
        line-height: 1.2;
    }
}

@media (max-width: 520px) {
    .roddent-widget .rd-benefits { grid-template-columns: 1fr; }
    .roddent-widget .rd-benefit { gap: 14px; }
    .roddent-widget .rd-stage__overlay { left: 10px; right: 10px; bottom: 10px; padding: 12px; }
    .roddent-widget .rd-cleanup__title { letter-spacing: 0; }
}

/* Reveal animation */
.roddent-widget .rd-reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: rd-rise .7s ease forwards;
}
.roddent-widget .rd-reveal-1 { animation-delay: .05s; }
.roddent-widget .rd-reveal-2 { animation-delay: .18s; }
.roddent-widget .rd-reveal-3 { animation-delay: .32s; }
@keyframes rd-rise {
    to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
    .roddent-widget .rd-reveal { animation: none; opacity: 1; transform: none; }
    .roddent-widget .rd-stage,
    .roddent-widget .rd-stage__media img { transition: none; }
}

/* ============================================================
   ============================================================
   ROD DENT PRO HEADER (second widget)
   Scoped under .roddent-hero-widget so it never collides with
   the primary cleanup widget or the host theme.
   ============================================================
   ============================================================ */

.roddent-hero-widget {
    --rd2-bg: #0a0a0a;
    --rd2-panel: #131313;
    --rd2-ink: #ffffff;
    --rd2-ink-dim: #c8c8c8;
    --rd2-muted: #8a8a8a;
    --rd2-line: rgba(255, 255, 255, 0.08);
    --rd2-red: #d12b2b;
    --rd2-red-2: #ed3838;
    --rd2-yellow: #f5c518;
    --rd2-green: #2fa84a;

    font-family: 'Barlow', system-ui, sans-serif;
    color: var(--rd2-ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    background: var(--rd2-bg);
}

.roddent-hero-widget *,
.roddent-hero-widget *::before,
.roddent-hero-widget *::after {
    box-sizing: border-box;
}

.roddent-hero-widget img { max-width: 100%; display: block; }

.roddent-hero-widget .rd2-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- ANNOUNCEMENT STRIP (running marquee) ---------- */
.roddent-hero-widget .rd2-marquee {
    background: linear-gradient(90deg, #b72525 0%, #d12b2b 50%, #b72525 100%);
    color: #fff;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.25);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.85rem;
    padding: 9px 0;
    position: relative;
}
.roddent-hero-widget .rd2-marquee::before,
.roddent-hero-widget .rd2-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.roddent-hero-widget .rd2-marquee::before { left: 0;  background: linear-gradient(to right, #b72525, transparent); }
.roddent-hero-widget .rd2-marquee::after  { right: 0; background: linear-gradient(to left,  #b72525, transparent); }

.roddent-hero-widget .rd2-marquee__track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: rd2-marquee 35s linear infinite;
    will-change: transform;
}
.roddent-hero-widget .rd2-marquee:hover .rd2-marquee__track { animation-play-state: paused; }

.roddent-hero-widget .rd2-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.roddent-hero-widget .rd2-marquee__item svg {
    width: 16px;
    height: 16px;
    color: var(--rd2-yellow);
    flex-shrink: 0;
}
.roddent-hero-widget .rd2-marquee__sep {
    opacity: 0.5;
    font-size: 0.6rem;
}
@keyframes rd2-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- NAV BAR ---------- */
.roddent-hero-widget .rd2-nav {
    position: relative;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rd2-line);
    z-index: 100;
}
.roddent-hero-widget .rd2-nav--sticky {
    position: sticky;
    top: 0;
}

.roddent-hero-widget .rd2-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 76px;
}

.roddent-hero-widget .rd2-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.45rem;
    letter-spacing: 0.06em;
}
.roddent-hero-widget .rd2-logo img {
    display: block;
    max-height: 44px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.roddent-hero-widget .rd2-logo__accent {
    color: var(--rd2-red);
    background: linear-gradient(180deg, var(--rd2-red), #a01c1c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.roddent-hero-widget .rd2-nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: flex-end;
}
.roddent-hero-widget .rd2-nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.roddent-hero-widget .rd2-nav__list a {
    color: var(--rd2-ink-dim);
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 0.96rem;
    letter-spacing: 0.02em;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}
.roddent-hero-widget .rd2-nav__list a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--rd2-yellow);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}
.roddent-hero-widget .rd2-nav__list a:hover { color: #fff; }
.roddent-hero-widget .rd2-nav__list a:hover::after { transform: scaleX(1); }

.roddent-hero-widget .rd2-nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.roddent-hero-widget .rd2-nav__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}
.roddent-hero-widget .rd2-nav__phone svg { width: 18px; height: 18px; color: var(--rd2-yellow); }
.roddent-hero-widget .rd2-nav__phone:hover { color: var(--rd2-yellow); }

.roddent-hero-widget .rd2-nav__cta {
    display: inline-flex;
    align-items: center;
    padding: 11px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--rd2-red) 0%, var(--rd2-red-2) 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.88rem;
    box-shadow: 0 6px 18px rgba(209,43,43,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255,255,255,0.08);
}
.roddent-hero-widget .rd2-nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(209,43,43,0.5);
}

/* Hamburger */
.roddent-hero-widget .rd2-nav__toggle {
    display: none;
    background: none;
    border: 0;
    width: 40px; height: 40px;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.roddent-hero-widget .rd2-nav__toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
}
.roddent-hero-widget .rd2-nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.roddent-hero-widget .rd2-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.roddent-hero-widget .rd2-nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.roddent-hero-widget .rd2-hero {
    position: relative;
    padding: clamp(60px, 8vw, 110px) 0 clamp(70px, 10vw, 130px);
    background:
        radial-gradient(900px 500px at 80% 20%, rgba(245,197,24,0.07), transparent 60%),
        radial-gradient(700px 400px at 0% 100%, rgba(209,43,43,0.18), transparent 65%),
        var(--rd2-bg);
    overflow: hidden;
}
.roddent-hero-widget .rd2-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--rd2-hero-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}
.roddent-hero-widget .rd2-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.82) 100%);
    z-index: 0;
    pointer-events: none;
}
.roddent-hero-widget .rd2-hero > .rd2-container { position: relative; z-index: 1; }

.roddent-hero-widget .rd2-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

.roddent-hero-widget .rd2-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,197,24,0.12);
    border: 1px solid rgba(245,197,24,0.3);
    color: var(--rd2-yellow);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.roddent-hero-widget .rd2-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--rd2-yellow);
    box-shadow: 0 0 0 4px rgba(245,197,24,0.25);
    animation: rd2-pulse 2s ease-in-out infinite;
}
@keyframes rd2-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(245,197,24,0.25); }
    50%      { box-shadow: 0 0 0 8px rgba(245,197,24,0.05); }
}

.roddent-hero-widget .rd2-hero__title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(2.4rem, 5.4vw, 4.4rem);
    text-transform: uppercase;
    line-height: 1.02;
    letter-spacing: -0.005em;
    color: #fff;
    margin: 0 0 22px;
}
.roddent-hero-widget .rd2-hero__hl {
    background: linear-gradient(135deg, var(--rd2-red), var(--rd2-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.roddent-hero-widget .rd2-hero__lead {
    color: var(--rd2-ink-dim);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.55;
    max-width: 540px;
    margin: 0 0 28px;
}

.roddent-hero-widget .rd2-hero__bullets {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 12px;
}
.roddent-hero-widget .rd2-hero__bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f1f1f1;
    font-weight: 500;
    font-size: 1rem;
}
.roddent-hero-widget .rd2-hero__bullets svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    padding: 4px;
    color: #fff;
    background: linear-gradient(135deg, var(--rd2-green), #1f7a36);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(47,168,74,0.35);
}

.roddent-hero-widget .rd2-hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
}
.roddent-hero-widget .rd2-stars {
    display: inline-flex;
    gap: 2px;
    color: var(--rd2-yellow);
}
.roddent-hero-widget .rd2-stars svg { width: 16px; height: 16px; }
.roddent-hero-widget .rd2-hero__rating strong {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.04em;
}
.roddent-hero-widget .rd2-hero__rating-count {
    color: var(--rd2-ink-dim);
    font-size: 0.88rem;
}

/* ---------- HERO FORM CARD ---------- */
.roddent-hero-widget .rd2-form-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: clamp(28px, 3.5vw, 40px);
    box-shadow:
        0 30px 60px -20px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 1px 0 rgba(255,255,255,0.06) inset;
    position: relative;
    overflow: hidden;
}
.roddent-hero-widget .rd2-form-card::before {
    content: "";
    position: absolute;
    top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(209,43,43,0.18) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.roddent-hero-widget .rd2-form-card > * { position: relative; z-index: 1; }

.roddent-hero-widget .rd2-form-card__badge {
    display: inline-block;
    background: var(--rd2-red);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(209,43,43,0.4);
}
.roddent-hero-widget .rd2-form-card__title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin: 0 0 6px;
}
.roddent-hero-widget .rd2-form-card__sub {
    color: var(--rd2-ink-dim);
    font-size: 0.95rem;
    margin: 0 0 22px;
}

.roddent-hero-widget .rd2-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.roddent-hero-widget .rd2-form__field { margin-bottom: 12px; }
.roddent-hero-widget .rd2-form__row .rd2-form__field { margin-bottom: 12px; }

.roddent-hero-widget .rd2-form__field input,
.roddent-hero-widget .rd2-form__field select {
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    padding: 13px 16px;
    border-radius: 8px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.roddent-hero-widget .rd2-form__field input::placeholder { color: rgba(255,255,255,0.45); }
.roddent-hero-widget .rd2-form__field input:focus,
.roddent-hero-widget .rd2-form__field select:focus {
    outline: none;
    border-color: var(--rd2-yellow);
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.roddent-hero-widget .rd2-form__field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' fill='none' stroke='%23bbb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: rgba(0,0,0,0.4);
    padding-right: 42px;
}

.roddent-hero-widget .rd2-form__submit {
    width: 100%;
    margin-top: 8px;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--rd2-red) 0%, var(--rd2-red-2) 100%);
    color: #fff;
    border: 0;
    border-radius: 10px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 1.02rem;
    line-height: 1.15;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(209,43,43,0.4);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
}
.roddent-hero-widget .rd2-form__submit svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}
.roddent-hero-widget .rd2-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(209,43,43,0.55);
}
.roddent-hero-widget .rd2-form__submit:hover svg { transform: translateX(4px); }
.roddent-hero-widget .rd2-form__submit[disabled] { opacity: 0.6; cursor: progress; }

.roddent-hero-widget .rd2-form__trust {
    margin: 14px 0 0;
    text-align: center;
    color: var(--rd2-muted);
    font-size: 0.82rem;
}

.roddent-hero-widget .rd-form-message {
    margin-top: 12px;
    text-align: center;
    font-size: 0.9rem;
    min-height: 1.2em;
}
.roddent-hero-widget .rd-form-message.is-success { color: #6ee387; }
.roddent-hero-widget .rd-form-message.is-error   { color: #ff7e7e; }

.roddent-hero-widget .rd2-hp {
    position: absolute !important;
    left: -10000px !important;
    top: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ---------- TRUST STRIP ---------- */
.roddent-hero-widget .rd2-trust {
    background: #050505;
    border-top: 1px solid var(--rd2-line);
    border-bottom: 1px solid var(--rd2-line);
}
.roddent-hero-widget .rd2-trust__inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    padding: 28px 24px;
    align-items: center;
}
.roddent-hero-widget .rd2-trust__item {
    text-align: center;
    position: relative;
}
.roddent-hero-widget .rd2-trust__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px; top: 20%; bottom: 20%;
    width: 1px;
    background: var(--rd2-line);
}
.roddent-hero-widget .rd2-trust__item strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    color: var(--rd2-yellow);
    letter-spacing: 0.02em;
    line-height: 1;
}
.roddent-hero-widget .rd2-trust__item span {
    display: block;
    margin-top: 6px;
    color: var(--rd2-ink-dim);
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .roddent-hero-widget .rd2-hero__grid { grid-template-columns: 1fr; gap: 50px; }
    .roddent-hero-widget .rd2-trust__inner { grid-template-columns: repeat(3, 1fr); gap: 32px; row-gap: 28px; }
    .roddent-hero-widget .rd2-trust__item:not(:last-child)::after { display: none; }
}

@media (max-width: 1024px) {
    /* Show hamburger */
    .roddent-hero-widget .rd2-nav__toggle { display: inline-flex; }

    /* Hide menu by default; shown only when .is-open is added by JS */
    .roddent-hero-widget .rd2-nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 24px;
        border-bottom: 1px solid var(--rd2-line);
        box-shadow: 0 24px 50px rgba(0,0,0,0.6);
        max-height: calc(100vh - 76px);
        overflow-y: auto;
        z-index: 99;
    }
    .roddent-hero-widget .rd2-nav__menu.is-open { display: flex; }

    .roddent-hero-widget .rd2-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .roddent-hero-widget .rd2-nav__list a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--rd2-line);
        font-size: 1.05rem;
    }
    .roddent-hero-widget .rd2-nav__list a::after { display: none; }
    .roddent-hero-widget .rd2-nav__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 12px;
    }
    .roddent-hero-widget .rd2-nav__phone { justify-content: center; padding: 12px; }
    .roddent-hero-widget .rd2-nav__cta   { justify-content: center; padding: 14px; }
}

@media (max-width: 600px) {
    .roddent-hero-widget .rd2-form__row { grid-template-columns: 1fr; }
    .roddent-hero-widget .rd2-trust__inner { grid-template-columns: repeat(2, 1fr); }

    /* Tighten CTA buttons on small screens so the text never overflows */
    .roddent-hero-widget .rd2-form__submit,
    .roddent-hero-widget .rd2-bottom-form__submit {
        font-size: 0.95rem;
        letter-spacing: 0.04em;
        padding: 15px 14px;
    }
    .roddent-hero-widget .rd2-form__submit svg,
    .roddent-hero-widget .rd2-bottom-form__submit svg {
        width: 16px;
        height: 16px;
    }
    .roddent-hero-widget .rd2-nav__cta {
        font-size: 0.82rem;
        letter-spacing: 0.04em;
        padding: 12px 14px;
    }

    /* Hero/section + form card padding tightens */
    .roddent-hero-widget .rd2-form-card { padding: 24px 20px; }
    .roddent-hero-widget .rd2-bottom-form { padding: 24px 18px 28px; }
    .roddent-hero-widget .rd2-bottom-cta__banner {
        padding: 16px 18px;
        font-size: 1.05rem;
        letter-spacing: 0.04em;
    }
}

@media (max-width: 420px) {
    .roddent-hero-widget .rd2-trust__inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .roddent-hero-widget .rd2-marquee__track { animation: none; }
    .roddent-hero-widget .rd2-dot { animation: none; }
}

/* ============================================================
   PRO HEADER — Section heading (shared) + Process + Welcome video
   ============================================================ */
.roddent-hero-widget .rd2-section-head {
    text-align: center;
    margin: 0 auto clamp(36px, 5vw, 60px);
    max-width: 700px;
}
.roddent-hero-widget .rd2-section-head__eyebrow {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.78rem;
    color: var(--rd2-yellow);
    margin-bottom: 14px;
    padding: 6px 14px;
    border: 1px solid rgba(245,197,24,0.3);
    background: rgba(245,197,24,0.08);
    border-radius: 50px;
}
.roddent-hero-widget .rd2-section-head__title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.005em;
    margin: 0 0 14px;
}
.roddent-hero-widget .rd2-section-head__lead {
    color: var(--rd2-ink-dim);
    font-size: clamp(0.98rem, 1.2vw, 1.1rem);
    line-height: 1.55;
    margin: 0;
}

/* ---------- PROCESS / 3 STAGES ---------- */
.roddent-hero-widget .rd2-process {
    position: relative;
    padding: clamp(70px, 8vw, 120px) 0;
    background:
        radial-gradient(800px 400px at 80% 0%, rgba(245,197,24,0.05), transparent 60%),
        radial-gradient(700px 400px at 0% 100%, rgba(209,43,43,0.08), transparent 65%),
        #070707;
    border-top: 1px solid var(--rd2-line);
}

.roddent-hero-widget .rd2-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.roddent-hero-widget .rd2-stage {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid var(--rd2-line);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 18px 40px rgba(0,0,0,0.4);
    position: relative;
}
.roddent-hero-widget .rd2-stage:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 28px 60px rgba(0,0,0,0.6);
}

.roddent-hero-widget .rd2-stage__step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--rd2-line);
    background: rgba(0,0,0,0.4);
}
.roddent-hero-widget .rd2-stage__step-num {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}
.roddent-hero-widget .rd2-stage__step-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    color: #fff;
}
.roddent-hero-widget .rd2-stage--before .rd2-stage__step-num { background: linear-gradient(135deg, var(--rd2-red), #a01c1c); box-shadow: 0 6px 14px rgba(209,43,43,0.4); }
.roddent-hero-widget .rd2-stage--during .rd2-stage__step-num { background: linear-gradient(135deg, var(--rd2-yellow), #d8a800); color: #1a1a1a; box-shadow: 0 6px 14px rgba(245,197,24,0.4); }
.roddent-hero-widget .rd2-stage--after  .rd2-stage__step-num { background: linear-gradient(135deg, var(--rd2-green), #1f7a36); box-shadow: 0 6px 14px rgba(47,168,74,0.4); }

.roddent-hero-widget .rd2-stage__media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #000;
}
.roddent-hero-widget .rd2-stage__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.roddent-hero-widget .rd2-stage:hover .rd2-stage__media img { transform: scale(1.06); }
.roddent-hero-widget .rd2-stage__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

.roddent-hero-widget .rd2-stage__body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.roddent-hero-widget .rd2-stage__subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    color: var(--rd2-yellow);
    margin: 0 0 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rd2-line);
}

.roddent-hero-widget .rd2-stage__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.roddent-hero-widget .rd2-stage__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #e8e8e8;
    font-size: 0.96rem;
    line-height: 1.4;
}
.roddent-hero-widget .rd2-stage__ico {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}
.roddent-hero-widget .rd2-stage__ico svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.roddent-hero-widget .rd2-stage--before .rd2-stage__ico { background: var(--rd2-red); }
.roddent-hero-widget .rd2-stage--before .rd2-stage__ico svg { stroke: #fff; }
.roddent-hero-widget .rd2-stage--during .rd2-stage__ico { background: var(--rd2-yellow); }
.roddent-hero-widget .rd2-stage--during .rd2-stage__ico svg { stroke: #1a1a1a; }
.roddent-hero-widget .rd2-stage--after  .rd2-stage__ico { background: var(--rd2-green); }
.roddent-hero-widget .rd2-stage--after  .rd2-stage__ico svg { stroke: #fff; }

/* ---------- WELCOME VIDEO ---------- */
.roddent-hero-widget .rd2-welcome {
    position: relative;
    padding: clamp(70px, 8vw, 120px) 0;
    background:
        radial-gradient(900px 500px at 50% 0%, rgba(245,197,24,0.06), transparent 65%),
        var(--rd2-bg);
    border-top: 1px solid var(--rd2-line);
}

.roddent-hero-widget .rd2-video-frame {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #0e0e0e;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.06) inset;
}
.roddent-hero-widget .rd2-video-frame iframe,
.roddent-hero-widget .rd2-video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}
.roddent-hero-widget .rd2-video-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    background: radial-gradient(circle at 50% 40%, #1f1f1f 0%, #050505 75%);
    color: var(--rd2-ink-dim);
    padding: 30px;
    cursor: pointer;
}
.roddent-hero-widget .rd2-video-placeholder__play {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rd2-red), var(--rd2-red-2));
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    box-shadow:
        0 0 0 0 rgba(209,43,43,0.4),
        0 14px 30px rgba(209,43,43,0.5);
    animation: rd2-play-pulse 2.4s ease-in-out infinite;
    transition: transform 0.25s ease;
}
.roddent-hero-widget .rd2-video-placeholder:hover .rd2-video-placeholder__play { transform: scale(1.06); }
.roddent-hero-widget .rd2-video-placeholder__play::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 0 16px 24px;
    border-color: transparent transparent transparent #fff;
    margin-left: 6px;
}
@keyframes rd2-play-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(209,43,43,0.4), 0 14px 30px rgba(209,43,43,0.5); }
    50%      { box-shadow: 0 0 0 18px rgba(209,43,43,0), 0 14px 30px rgba(209,43,43,0.5); }
}
.roddent-hero-widget .rd2-video-placeholder strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    margin-bottom: 4px;
}
.roddent-hero-widget .rd2-video-placeholder span {
    color: var(--rd2-muted);
    font-size: 0.9rem;
}

/* ============================================================
   PRO HEADER — Bottom booking form / final CTA
   ============================================================ */
.roddent-hero-widget .rd2-bottom-cta {
    position: relative;
    padding: clamp(80px, 10vw, 140px) 0 clamp(90px, 11vw, 150px);
    background:
        radial-gradient(700px 400px at 100% 0%, rgba(245,197,24,0.06), transparent 60%),
        radial-gradient(800px 500px at 0% 100%, rgba(209,43,43,0.18), transparent 65%),
        #060606;
    border-top: 1px solid var(--rd2-line);
}

.roddent-hero-widget .rd2-bottom-cta__head {
    text-align: center;
    margin: 0 auto clamp(36px, 4.5vw, 56px);
    max-width: 760px;
}
.roddent-hero-widget .rd2-bottom-cta__eyebrow {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.78rem;
    color: var(--rd2-yellow);
    margin-bottom: 14px;
    padding: 6px 14px;
    border: 1px solid rgba(245,197,24,0.3);
    background: rgba(245,197,24,0.08);
    border-radius: 50px;
}
.roddent-hero-widget .rd2-bottom-cta__title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.005em;
    margin: 0 0 14px;
}
.roddent-hero-widget .rd2-bottom-cta__lead {
    color: var(--rd2-ink-dim);
    font-size: clamp(0.98rem, 1.2vw, 1.1rem);
    line-height: 1.55;
    margin: 0;
}

.roddent-hero-widget .rd2-bottom-cta__card {
    max-width: 880px;
    margin: 0 auto;
    background: linear-gradient(180deg, #181818 0%, #111 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.04) inset;
}

.roddent-hero-widget .rd2-bottom-cta__banner {
    background: linear-gradient(135deg, var(--rd2-red) 0%, #b81f1f 100%);
    color: #fff;
    text-align: center;
    padding: 22px 26px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: clamp(1.15rem, 2.2vw, 1.7rem);
    line-height: 1.15;
    box-shadow: 0 4px 0 rgba(0,0,0,0.2) inset;
}

.roddent-hero-widget .rd2-bottom-form {
    padding: clamp(34px, 4.5vw, 56px) clamp(28px, 4.5vw, 56px) clamp(38px, 5vw, 60px);
}

.roddent-hero-widget .rd2-bottom-form__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 20px;
}
.roddent-hero-widget .rd2-bottom-form__field { display: flex; flex-direction: column; gap: 8px; }
.roddent-hero-widget .rd2-bottom-form__field--full { grid-column: 1 / -1; }

.roddent-hero-widget .rd2-bottom-form__field label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rd2-ink-dim);
}
.roddent-hero-widget .rd2-bottom-form__field .rd2-req {
    color: var(--rd2-red);
    margin-left: 2px;
}

.roddent-hero-widget .rd2-bottom-form__field input,
.roddent-hero-widget .rd2-bottom-form__field select,
.roddent-hero-widget .rd2-bottom-form__field textarea {
    width: 100%;
    background: #0c0c0c;
    border: 1px solid #2a2a2a;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 1.02rem;
    padding: 15px 18px;
    border-radius: 8px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.roddent-hero-widget .rd2-bottom-form__field input::placeholder,
.roddent-hero-widget .rd2-bottom-form__field textarea::placeholder { color: #666; }
.roddent-hero-widget .rd2-bottom-form__field input:focus,
.roddent-hero-widget .rd2-bottom-form__field select:focus,
.roddent-hero-widget .rd2-bottom-form__field textarea:focus {
    outline: none;
    border-color: var(--rd2-yellow);
    background: #111;
    box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.roddent-hero-widget .rd2-bottom-form__field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.5;
}
.roddent-hero-widget .rd2-bottom-form__field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
}

.roddent-hero-widget .rd2-bottom-form__submit {
    margin-top: 28px;
    width: 100%;
    background: linear-gradient(135deg, var(--rd2-red) 0%, var(--rd2-red-2) 100%);
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.15;
    padding: 18px 18px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(209,43,43,0.4);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
}
.roddent-hero-widget .rd2-bottom-form__submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
}
.roddent-hero-widget .rd2-bottom-form__submit:hover {
    background: linear-gradient(135deg, #ed3838 0%, #ff4646 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(209,43,43,0.55);
}
.roddent-hero-widget .rd2-bottom-form__submit:hover svg { transform: translateX(4px); }
.roddent-hero-widget .rd2-bottom-form__submit[disabled] { opacity: 0.65; cursor: progress; }

.roddent-hero-widget .rd2-bottom-form__trust {
    margin: 18px 0 0;
    text-align: center;
    color: var(--rd2-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}
.roddent-hero-widget .rd2-bottom-form__trust strong { color: var(--rd2-ink-dim); font-weight: 600; }

@media (max-width: 600px) {
    .roddent-hero-widget .rd2-bottom-form__grid { grid-template-columns: 1fr; }
}

/* ---------- RESPONSIVE for new sections ---------- */
@media (max-width: 980px) {
    .roddent-hero-widget .rd2-stages { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .roddent-hero-widget .rd2-stage,
    .roddent-hero-widget .rd2-stage__media img,
    .roddent-hero-widget .rd2-video-placeholder__play { animation: none; transition: none; }
}
