/* =========================================================
   CONTACT PAGE HERO
========================================================= */

.dfl-contact-hero {
    position: relative;

    width: 100%;
    height: var(--dfl-first-screen-height);
    min-height: 0;

    color: var(--dfl-surface);
    background: var(--dfl-green-deep);

    overflow: hidden;
    isolation: isolate;
}


/* =========================================================
   BACKGROUND
========================================================= */

.dfl-contact-hero__media {
    position: absolute;
    inset: 0;
    z-index: -5;

    overflow: hidden;
}

.dfl-contact-hero__media picture {
    position: absolute;
    inset: 0;
}

.dfl-contact-hero__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 53%;

    filter:
        saturate(0.89)
        contrast(1.05)
        brightness(0.72);

    transform:
        scale(1.06)
        translate3d(
            var(--dfl-contact-image-x, 0px),
            var(--dfl-contact-image-y, 0px),
            0
        );

    transition:
        transform 1200ms var(--dfl-ease);

    will-change: transform;
}

.dfl-contact-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 30, 16, 0.98) 0%,
            rgba(5, 30, 16, 0.92) 34%,
            rgba(5, 30, 16, 0.66) 65%,
            rgba(5, 30, 16, 0.38) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 30, 16, 0.06),
            rgba(5, 30, 16, 0.38)
        );
}

.dfl-contact-hero__light {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 77% 37%,
            rgba(8, 184, 11, 0.17),
            transparent 33%
        ),
        radial-gradient(
            circle at 14% 76%,
            rgba(197, 166, 90, 0.08),
            transparent 31%
        );
}

.dfl-contact-hero__texture {
    position: absolute;
    inset: 0;

    opacity: 0.2;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.017) 0,
            rgba(255, 255, 255, 0.017) 1px,
            transparent 1px,
            transparent 6px
        );

    pointer-events: none;
}


/* =========================================================
   DECORATIONS
========================================================= */

.dfl-contact-hero__decoration {
    position: absolute;
    inset: 0;
    z-index: -1;

    pointer-events: none;
    overflow: hidden;
}

.dfl-contact-hero__ring {
    position: absolute;
    display: block;

    border-radius: 50%;
}

.dfl-contact-hero__ring--one {
    top: -180px;
    left: -155px;

    width: 420px;
    height: 420px;

    border:
        1px solid rgba(255, 255, 255, 0.07);
}

.dfl-contact-hero__ring--two {
    right: 16%;
    bottom: -245px;

    width: 430px;
    height: 430px;

    border:
        1px solid rgba(8, 184, 11, 0.1);
}

.dfl-contact-hero__vertical-line {
    position: absolute;
    top: 0;
    left: 9%;

    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.065),
            transparent
        );
}

.dfl-contact-hero__leaf {
    position: absolute;
    right: -65px;
    bottom: -105px;

    width: min(28vw, 410px);
    height: auto;

    fill: rgba(8, 184, 11, 0.015);
    stroke: rgba(255, 255, 255, 0.075);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    transform: rotate(7deg);
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.dfl-contact-hero__container {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(330px, 0.58fr);
    align-items: center;
    gap: clamp(45px, 6vw, 100px);

    height: 100%;
    padding-top: clamp(22px, 3.5svh, 42px);
    padding-bottom: clamp(66px, 8svh, 88px);
}


/* =========================================================
   CONTENT
========================================================= */

.dfl-contact-hero__content {
    width: min(100%, 780px);
}

.dfl-contact-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: clamp(15px, 2svh, 21px);

    color: rgba(255, 255, 255, 0.57);

    font-size: 0.62rem;
    font-weight: 700;
}

.dfl-contact-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.67);

    transition:
        color var(--dfl-transition-fast)
        var(--dfl-ease);
}

.dfl-contact-hero__breadcrumb a:hover {
    color: var(--dfl-green-bright);
}

.dfl-contact-hero__breadcrumb span {
    color: var(--dfl-green-bright);
}

.dfl-contact-hero__breadcrumb svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-contact-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: clamp(14px, 2svh, 21px);
    padding: 7px 12px 7px 8px;

    color: rgba(255, 255, 255, 0.87);
    background: rgba(255, 255, 255, 0.075);

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius: var(--dfl-radius-sm);

    font-size: clamp(0.59rem, 0.73vw, 0.7rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.09em;
    text-transform: uppercase;

    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

.dfl-contact-hero__eyebrow-icon {
    display: grid;
    place-items: center;

    width: 27px;
    height: 27px;

    color: var(--dfl-green-bright);
    background: rgba(8, 184, 11, 0.12);

    border-radius: var(--dfl-radius-xs);
}

.dfl-contact-hero__eyebrow-icon svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-contact-hero__title {
    max-width: 810px;

    color: var(--dfl-surface);

    font-size:
        clamp(
            3.15rem,
            min(6vw, 8.1svh),
            6.25rem
        );

    font-weight: 800;
    line-height: 0.91;
    letter-spacing: -0.065em;
    text-wrap: balance;
}

.dfl-contact-hero__title span {
    display: block;
    color: var(--dfl-green-bright);
}

.dfl-contact-hero__description {
    max-width: 650px;
    margin-top: clamp(16px, 2.6svh, 26px);

    color: rgba(255, 255, 255, 0.7);

    font-size:
        clamp(
            0.87rem,
            min(1.07vw, 1.75svh),
            1.03rem
        );

    line-height: 1.7;
}


/* =========================================================
   ACTIONS
========================================================= */

.dfl-contact-hero__actions {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 11px;

    margin-top: clamp(21px, 3.3svh, 34px);
}

.dfl-contact-hero__primary-button,
.dfl-contact-hero__secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    border-radius: var(--dfl-radius-sm);

    font-size: 0.75rem;
    font-weight: 800;

    transition:
        color var(--dfl-transition-normal) var(--dfl-ease),
        background-color var(--dfl-transition-normal) var(--dfl-ease),
        border-color var(--dfl-transition-normal) var(--dfl-ease),
        box-shadow var(--dfl-transition-normal) var(--dfl-ease),
        transform var(--dfl-transition-normal) var(--dfl-ease);
}

.dfl-contact-hero__primary-button {
    gap: 10px;

    min-width: 190px;
    padding: 13px 21px;

    color: var(--dfl-surface);

    background:
        linear-gradient(
            135deg,
            var(--dfl-green-bright),
            var(--dfl-green-primary)
        );

    box-shadow:
        0 16px 38px rgba(8, 184, 11, 0.25);
}

.dfl-contact-hero__primary-button:hover {
    box-shadow:
        0 21px 46px rgba(8, 184, 11, 0.32);

    transform: translateY(-3px);
}

.dfl-contact-hero__primary-button svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform var(--dfl-transition-normal)
        var(--dfl-ease);
}

.dfl-contact-hero__primary-button:hover svg {
    transform: translateX(4px);
}

.dfl-contact-hero__secondary-button {
    justify-content: flex-start;
    gap: 10px;

    min-width: 185px;
    padding: 11px 17px;

    color: var(--dfl-surface);
    background: rgba(255, 255, 255, 0.075);

    border:
        1px solid rgba(255, 255, 255, 0.16);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dfl-contact-hero__secondary-button:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.27);
    transform: translateY(-3px);
}

.dfl-contact-hero__call-icon {
    display: grid;
    place-items: center;

    width: 28px;
    height: 28px;

    color: var(--dfl-green-bright);
}

.dfl-contact-hero__call-icon svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-contact-hero__call-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dfl-contact-hero__call-copy small {
    color: rgba(255, 255, 255, 0.48);

    font-size: 0.53rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dfl-contact-hero__call-copy strong {
    margin-top: 5px;

    font-size: 0.72rem;
    font-weight: 800;
}


/* =========================================================
   DETAILS
========================================================= */

.dfl-contact-hero__details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(15px, 2.2vw, 29px);

    margin-top: clamp(22px, 3.7svh, 37px);
}

.dfl-contact-hero__detail {
    display: flex;
    align-items: center;
    gap: 9px;

    min-width: 0;
}

.dfl-contact-hero__detail +
.dfl-contact-hero__detail {
    position: relative;
}

.dfl-contact-hero__detail +
.dfl-contact-hero__detail::before {
    content: "";

    position: absolute;
    left: calc(clamp(15px, 2.2vw, 29px) / -2);

    width: 1px;
    height: 29px;

    background: rgba(255, 255, 255, 0.12);
}

.dfl-contact-hero__detail-icon {
    display: grid;
    place-items: center;

    width: 34px;
    height: 34px;
    flex: 0 0 auto;

    color: var(--dfl-green-bright);
    background: rgba(255, 255, 255, 0.065);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: var(--dfl-radius-xs);
}

.dfl-contact-hero__detail-icon svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-contact-hero__detail > span:last-child {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dfl-contact-hero__detail small {
    color: rgba(255, 255, 255, 0.43);

    font-size: 0.51rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.dfl-contact-hero__detail strong {
    max-width: 210px;
    margin-top: 5px;

    overflow-wrap: anywhere;

    color: var(--dfl-surface);

    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1.2;
}


/* =========================================================
   CONTACT PANEL
========================================================= */

.dfl-contact-hero__panel {
    position: relative;
    justify-self: end;

    width: min(100%, 410px);
    padding: clamp(21px, 2.3vw, 29px);

    color: var(--dfl-text);

    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.955),
            rgba(247, 245, 238, 0.92)
        );

    border:
        1px solid rgba(255, 255, 255, 0.52);

    border-radius: var(--dfl-radius-md);

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.26);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;

    transform:
        translate3d(
            var(--dfl-contact-panel-x, 0px),
            var(--dfl-contact-panel-y, 0px),
            0
        );

    will-change: transform;
}

.dfl-contact-hero__panel::before {
    content: "";

    position: absolute;
    top: -95px;
    right: -85px;

    width: 225px;
    height: 225px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(8, 184, 11, 0.15),
            transparent 68%
        );

    pointer-events: none;
}

.dfl-contact-hero__panel-heading {
    position: relative;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 19px;

    padding-bottom: 19px;

    border-bottom:
        1px solid rgba(13, 77, 29, 0.11);
}

.dfl-contact-hero__panel-heading > div {
    display: flex;
    flex-direction: column;
}

.dfl-contact-hero__panel-heading > div > span {
    color: var(--dfl-green-primary);

    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dfl-contact-hero__panel-heading h2 {
    max-width: 270px;
    margin-top: 9px;

    color: var(--dfl-green-forest);

    font-size: clamp(1.12rem, 1.6vw, 1.4rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.038em;
}

.dfl-contact-hero__panel-mark {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;
    flex: 0 0 auto;

    color: var(--dfl-surface);

    background:
        linear-gradient(
            135deg,
            var(--dfl-green-bright),
            var(--dfl-green-primary)
        );

    border-radius: var(--dfl-radius-sm);

    box-shadow:
        0 12px 28px rgba(8, 184, 11, 0.23);
}

.dfl-contact-hero__panel-mark svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-contact-hero__contact-list {
    display: grid;
    gap: 8px;

    margin-top: 18px;
}

.dfl-contact-hero__contact-option {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 17px;
    align-items: center;
    gap: 11px;

    min-height: 62px;
    padding: 10px 11px;

    color: var(--dfl-text);

    background: rgba(255, 255, 255, 0.7);

    border:
        1px solid rgba(13, 77, 29, 0.09);

    border-radius: var(--dfl-radius-sm);

    transition:
        background-color var(--dfl-transition-normal) var(--dfl-ease),
        border-color var(--dfl-transition-normal) var(--dfl-ease),
        box-shadow var(--dfl-transition-normal) var(--dfl-ease),
        transform var(--dfl-transition-normal) var(--dfl-ease);
}

.dfl-contact-hero__contact-option:hover {
    background: var(--dfl-surface);

    border-color:
        rgba(19, 138, 36, 0.19);

    box-shadow:
        0 12px 27px rgba(8, 46, 23, 0.08);

    transform: translateX(3px);
}

.dfl-contact-hero__contact-option-icon {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    color: var(--dfl-green-primary);
    background: rgba(19, 138, 36, 0.09);

    border-radius: var(--dfl-radius-xs);

    transition:
        color var(--dfl-transition-normal) var(--dfl-ease),
        background-color var(--dfl-transition-normal) var(--dfl-ease);
}

.dfl-contact-hero__contact-option:hover
.dfl-contact-hero__contact-option-icon {
    color: var(--dfl-surface);
    background: var(--dfl-green-primary);
}

.dfl-contact-hero__contact-option-icon svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-contact-hero__contact-option-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dfl-contact-hero__contact-option-copy small {
    color: var(--dfl-text-muted);

    font-size: 0.51rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.dfl-contact-hero__contact-option-copy strong {
    margin-top: 6px;

    overflow-wrap: anywhere;

    color: var(--dfl-green-forest);

    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.2;
}

.dfl-contact-hero__contact-option-arrow {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: var(--dfl-green-primary);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform var(--dfl-transition-normal)
        var(--dfl-ease);
}

.dfl-contact-hero__contact-option:hover
.dfl-contact-hero__contact-option-arrow {
    transform: translateX(3px);
}

.dfl-contact-hero__panel-footer {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    margin-top: 19px;
    padding-top: 18px;

    border-top:
        1px solid rgba(13, 77, 29, 0.11);
}

.dfl-contact-hero__panel-footer-icon {
    display: grid;
    place-items: center;

    width: 34px;
    height: 34px;
    flex: 0 0 auto;

    color: var(--dfl-green-primary);
    background: rgba(19, 138, 36, 0.08);

    border-radius: var(--dfl-radius-xs);
}

.dfl-contact-hero__panel-footer-icon svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-contact-hero__panel-footer p {
    color: var(--dfl-text-muted);

    font-size: 0.63rem;
    line-height: 1.55;
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.dfl-contact-hero__bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;

    height: 53px;

    background: rgba(5, 30, 16, 0.68);

    border-top:
        1px solid rgba(255, 255, 255, 0.09);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dfl-contact-hero__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    height: 100%;
}

.dfl-contact-hero__bottom p {
    display: flex;
    align-items: center;
    gap: 13px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dfl-contact-hero__bottom p span {
    width: 3px;
    height: 3px;

    background: var(--dfl-green-bright);
    border-radius: 50%;
}

.dfl-contact-hero__scroll {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, 0.73);

    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    transition:
        color var(--dfl-transition-normal)
        var(--dfl-ease);
}

.dfl-contact-hero__scroll:hover {
    color: var(--dfl-green-bright);
}

.dfl-contact-hero__scroll svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;

    animation:
        dflContactHeroArrow
        1.8s
        var(--dfl-ease)
        infinite;
}

@keyframes dflContactHeroArrow {

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

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

}


/* =========================================================
   PROGRESSIVE ENHANCEMENT ANIMATION
========================================================= */

.dfl-contact-hero.dfl-contact-hero--motion-ready
.dfl-contact-hero__breadcrumb,
.dfl-contact-hero.dfl-contact-hero--motion-ready
.dfl-contact-hero__eyebrow,
.dfl-contact-hero.dfl-contact-hero--motion-ready
.dfl-contact-hero__title,
.dfl-contact-hero.dfl-contact-hero--motion-ready
.dfl-contact-hero__description,
.dfl-contact-hero.dfl-contact-hero--motion-ready
.dfl-contact-hero__actions,
.dfl-contact-hero.dfl-contact-hero--motion-ready
.dfl-contact-hero__details,
.dfl-contact-hero.dfl-contact-hero--motion-ready
.dfl-contact-hero__panel {
    opacity: 0;
}

.dfl-contact-hero.dfl-contact-hero--motion-ready
.dfl-contact-hero__breadcrumb,
.dfl-contact-hero.dfl-contact-hero--motion-ready
.dfl-contact-hero__eyebrow {
    transform: translateY(17px);
}

.dfl-contact-hero.dfl-contact-hero--motion-ready
.dfl-contact-hero__title {
    transform: translateY(31px);
}

.dfl-contact-hero.dfl-contact-hero--motion-ready
.dfl-contact-hero__description,
.dfl-contact-hero.dfl-contact-hero--motion-ready
.dfl-contact-hero__actions,
.dfl-contact-hero.dfl-contact-hero--motion-ready
.dfl-contact-hero__details {
    transform: translateY(23px);
}

.dfl-contact-hero.dfl-contact-hero--motion-ready
.dfl-contact-hero__panel {
    transform:
        translate3d(
            calc(var(--dfl-contact-panel-x, 0px) + 38px),
            calc(var(--dfl-contact-panel-y, 0px) + 12px),
            0
        );
}

.dfl-contact-hero.dfl-contact-hero--visible
.dfl-contact-hero__breadcrumb,
.dfl-contact-hero.dfl-contact-hero--visible
.dfl-contact-hero__eyebrow,
.dfl-contact-hero.dfl-contact-hero--visible
.dfl-contact-hero__title,
.dfl-contact-hero.dfl-contact-hero--visible
.dfl-contact-hero__description,
.dfl-contact-hero.dfl-contact-hero--visible
.dfl-contact-hero__actions,
.dfl-contact-hero.dfl-contact-hero--visible
.dfl-contact-hero__details,
.dfl-contact-hero.dfl-contact-hero--visible
.dfl-contact-hero__panel {
    opacity: 1;
}

.dfl-contact-hero.dfl-contact-hero--visible
.dfl-contact-hero__breadcrumb {
    transform: translateY(0);

    transition:
        opacity 650ms var(--dfl-ease) 70ms,
        transform 650ms var(--dfl-ease) 70ms;
}

.dfl-contact-hero.dfl-contact-hero--visible
.dfl-contact-hero__eyebrow {
    transform: translateY(0);

    transition:
        opacity 700ms var(--dfl-ease) 130ms,
        transform 700ms var(--dfl-ease) 130ms;
}

.dfl-contact-hero.dfl-contact-hero--visible
.dfl-contact-hero__title {
    transform: translateY(0);

    transition:
        opacity 900ms var(--dfl-ease) 200ms,
        transform 900ms var(--dfl-ease) 200ms;
}

.dfl-contact-hero.dfl-contact-hero--visible
.dfl-contact-hero__description {
    transform: translateY(0);

    transition:
        opacity 780ms var(--dfl-ease) 310ms,
        transform 780ms var(--dfl-ease) 310ms;
}

.dfl-contact-hero.dfl-contact-hero--visible
.dfl-contact-hero__actions {
    transform: translateY(0);

    transition:
        opacity 750ms var(--dfl-ease) 400ms,
        transform 750ms var(--dfl-ease) 400ms;
}

.dfl-contact-hero.dfl-contact-hero--visible
.dfl-contact-hero__details {
    transform: translateY(0);

    transition:
        opacity 750ms var(--dfl-ease) 480ms,
        transform 750ms var(--dfl-ease) 480ms;
}

.dfl-contact-hero.dfl-contact-hero--visible
.dfl-contact-hero__panel {
    transform:
        translate3d(
            var(--dfl-contact-panel-x, 0px),
            var(--dfl-contact-panel-y, 0px),
            0
        );

    transition:
        opacity 900ms var(--dfl-ease) 340ms,
        transform 1000ms var(--dfl-ease) 340ms;
}

html.dfl-reduce-motion
.dfl-contact-hero__scroll svg {
    animation: none;
}

html.dfl-reduce-motion
.dfl-contact-hero__media img,
html.dfl-reduce-motion
.dfl-contact-hero__panel {
    transform: none;
}







































/* =========================================================
   CONTACT INFORMATION + ESTIMATE FORM
========================================================= */

.dfl-contact-section {
    position: relative;

    width: 100%;
    padding: var(--dfl-section-space) 0;

    color: var(--dfl-text);

    background:
        linear-gradient(
            145deg,
            rgba(247, 245, 238, 0.99),
            rgba(238, 244, 232, 0.98)
        );

    overflow: hidden;
    isolation: isolate;
}

.dfl-contact-section__background {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;
    pointer-events: none;
}

.dfl-contact-section__background::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.17;

    background-image:
        radial-gradient(
            rgba(13, 77, 29, 0.13) 0.75px,
            transparent 0.75px
        );

    background-size: 28px 28px;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            black 18%,
            black 82%,
            transparent
        );
}

.dfl-contact-section__glow,
.dfl-contact-section__ring {
    position: absolute;
    display: block;

    border-radius: 50%;
}

.dfl-contact-section__glow--one {
    top: -290px;
    right: -230px;

    width: 670px;
    height: 670px;

    background:
        radial-gradient(
            circle,
            rgba(8, 184, 11, 0.12),
            rgba(19, 138, 36, 0.025) 49%,
            transparent 72%
        );
}

.dfl-contact-section__glow--two {
    bottom: -350px;
    left: -280px;

    width: 720px;
    height: 720px;

    background:
        radial-gradient(
            circle,
            rgba(197, 166, 90, 0.15),
            rgba(220, 207, 174, 0.035) 49%,
            transparent 72%
        );
}

.dfl-contact-section__ring--one {
    top: 14%;
    left: -105px;

    width: 280px;
    height: 280px;

    border:
        1px solid rgba(13, 77, 29, 0.075);
}

.dfl-contact-section__ring--two {
    top: calc(14% + 39px);
    left: -66px;

    width: 202px;
    height: 202px;

    border:
        1px solid rgba(19, 138, 36, 0.07);
}

.dfl-contact-section__vertical-line {
    position: absolute;
    top: 0;
    right: 9%;

    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(13, 77, 29, 0.07),
            transparent
        );
}

.dfl-contact-section__leaf {
    position: absolute;
    right: -70px;
    bottom: -100px;

    width: min(30vw, 450px);
    height: auto;

    fill: rgba(19, 138, 36, 0.018);
    stroke: rgba(13, 77, 29, 0.085);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    transform: rotate(7deg);
}

.dfl-contact-section__container {
    position: relative;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.dfl-contact-section__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(270px, 0.55fr);
    align-items: end;
    gap: clamp(42px, 7vw, 105px);
}

.dfl-contact-section__heading {
    max-width: 900px;
}

.dfl-contact-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 21px;

    color: var(--dfl-green-primary);

    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.dfl-contact-section__eyebrow::before {
    content: "";

    width: 31px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--dfl-gold),
            var(--dfl-green-bright)
        );

    border-radius: var(--dfl-radius-round);
}

.dfl-contact-section__heading h2 {
    max-width: 890px;

    color: var(--dfl-green-forest);

    font-size: clamp(2.45rem, 5.1vw, 5.25rem);
    font-weight: 800;
    line-height: 0.99;
    letter-spacing: -0.06em;
}

.dfl-contact-section__heading h2 span {
    display: block;
    color: var(--dfl-green-primary);
}

.dfl-contact-section__header-copy {
    padding-bottom: 7px;
}

.dfl-contact-section__header-copy > p {
    color: var(--dfl-text-muted);

    font-size: clamp(0.86rem, 1.05vw, 1rem);
    line-height: 1.78;
}

.dfl-contact-section__header-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 19px;
}

.dfl-contact-section__header-tags span {
    display: inline-flex;
    align-items: center;

    min-height: 31px;
    padding: 7px 10px;

    color: var(--dfl-green-dark);
    background: rgba(255, 255, 255, 0.69);

    border:
        1px solid rgba(13, 77, 29, 0.11);

    border-radius: var(--dfl-radius-xs);

    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.045em;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.dfl-contact-section__layout {
    display: grid;
    grid-template-columns:
        minmax(310px, 0.52fr)
        minmax(0, 1.48fr);
    align-items: start;
    gap: clamp(20px, 2.7vw, 38px);

    margin-top: clamp(52px, 7vw, 88px);
}


/* =========================================================
   INFORMATION PANEL
========================================================= */

.dfl-contact-info {
    position: sticky;
    top: calc(var(--dfl-header-height) + 24px);

    display: flex;
    flex-direction: column;

    min-height: 690px;
    padding: clamp(25px, 2.8vw, 37px);

    color: var(--dfl-surface);

    background:
        linear-gradient(
            145deg,
            var(--dfl-green-deep),
            var(--dfl-green-forest) 57%,
            var(--dfl-green-dark)
        );

    border:
        1px solid rgba(13, 77, 29, 0.16);

    border-radius: var(--dfl-radius-md);

    box-shadow:
        0 29px 72px rgba(5, 30, 16, 0.2);

    overflow: hidden;
    isolation: isolate;
}

.dfl-contact-info::before {
    content: "";

    position: absolute;
    top: -125px;
    right: -105px;
    z-index: -1;

    width: 310px;
    height: 310px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(8, 184, 11, 0.37),
            rgba(8, 184, 11, 0.055) 50%,
            transparent 70%
        );
}

.dfl-contact-info::after {
    content: "";

    position: absolute;
    right: -80px;
    bottom: -95px;
    z-index: -1;

    width: 255px;
    height: 255px;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 50%;
}

.dfl-contact-info__light {
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        radial-gradient(
            circle at
            var(--dfl-contact-info-light-x, 78%)
            var(--dfl-contact-info-light-y, 20%),
            rgba(8, 184, 11, 0.16),
            transparent 29%
        );

    pointer-events: none;
}

.dfl-contact-info__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
}

.dfl-contact-info__top > div {
    display: flex;
    flex-direction: column;
}

.dfl-contact-info__top > div > span {
    color: var(--dfl-green-bright);

    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.dfl-contact-info__top h3 {
    max-width: 330px;
    margin-top: 11px;

    color: var(--dfl-surface);

    font-size: clamp(1.55rem, 2.3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.046em;
}

.dfl-contact-info__top-icon {
    display: grid;
    place-items: center;

    width: 46px;
    height: 46px;
    flex: 0 0 auto;

    color: var(--dfl-surface);

    background:
        linear-gradient(
            135deg,
            var(--dfl-green-bright),
            var(--dfl-green-primary)
        );

    border-radius: var(--dfl-radius-sm);

    box-shadow:
        0 14px 32px rgba(8, 184, 11, 0.24);
}

.dfl-contact-info__top-icon svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   INFORMATION STEPS
========================================================= */

.dfl-contact-info__steps {
    display: grid;
    gap: 0;

    margin-top: 42px;
}

.dfl-contact-info__step {
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    gap: 13px;

    padding: 20px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
}

.dfl-contact-info__step:first-child {
    padding-top: 0;
}

.dfl-contact-info__step-number {
    display: grid;
    place-items: center;

    width: 36px;
    height: 36px;

    color: var(--dfl-green-bright);
    background: rgba(255, 255, 255, 0.065);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: var(--dfl-radius-xs);

    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.dfl-contact-info__step h4 {
    color: var(--dfl-surface);

    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
}

.dfl-contact-info__step p {
    max-width: 330px;
    margin-top: 7px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 0.64rem;
    line-height: 1.55;
}


/* =========================================================
   INFORMATION FACTS
========================================================= */

.dfl-contact-info__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;

    margin-top: 25px;
}

.dfl-contact-info__fact {
    min-width: 0;
    padding: 14px 9px;

    background: rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: var(--dfl-radius-xs);
}

.dfl-contact-info__fact strong {
    display: block;

    color: var(--dfl-green-bright);

    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.dfl-contact-info__fact span {
    display: block;
    margin-top: 7px;

    color: rgba(255, 255, 255, 0.56);

    font-size: 0.52rem;
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================================
   DIRECT CONTACT
========================================================= */

.dfl-contact-info__direct {
    margin-top: 27px;
}

.dfl-contact-info__direct-heading {
    display: flex;
    flex-direction: column;
}

.dfl-contact-info__direct-heading span {
    color: rgba(255, 255, 255, 0.44);

    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dfl-contact-info__direct-heading strong {
    margin-top: 6px;

    color: var(--dfl-surface);

    font-size: 0.75rem;
    font-weight: 800;
}

.dfl-contact-info__phone {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-top: 10px;
    padding: 10px 11px;

    color: var(--dfl-surface);
    background: rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: var(--dfl-radius-xs);

    transition:
        background-color var(--dfl-transition-normal) var(--dfl-ease),
        border-color var(--dfl-transition-normal) var(--dfl-ease),
        transform var(--dfl-transition-normal) var(--dfl-ease);
}

.dfl-contact-info__phone:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.19);
    transform: translateX(3px);
}

.dfl-contact-info__phone-icon {
    display: grid;
    place-items: center;

    width: 35px;
    height: 35px;
    flex: 0 0 auto;

    color: var(--dfl-green-bright);
    background: rgba(8, 184, 11, 0.1);

    border-radius: var(--dfl-radius-xs);
}

.dfl-contact-info__phone-icon svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-contact-info__phone > span:last-child {
    display: flex;
    flex-direction: column;
}

.dfl-contact-info__phone small {
    color: rgba(255, 255, 255, 0.42);

    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dfl-contact-info__phone strong {
    margin-top: 5px;

    font-size: 0.68rem;
    font-weight: 800;
}


/* =========================================================
   HOURS
========================================================= */

.dfl-contact-info__hours {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-top: auto;
    padding-top: 23px;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);
}

.dfl-contact-info__hours-icon {
    display: grid;
    place-items: center;

    width: 37px;
    height: 37px;
    flex: 0 0 auto;

    color: var(--dfl-green-bright);
    background: rgba(255, 255, 255, 0.065);

    border-radius: var(--dfl-radius-xs);
}

.dfl-contact-info__hours-icon svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-contact-info__hours > div {
    display: flex;
    flex-direction: column;
}

.dfl-contact-info__hours small {
    color: rgba(255, 255, 255, 0.42);

    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dfl-contact-info__hours strong {
    margin-top: 5px;

    color: var(--dfl-surface);

    font-size: 0.71rem;
    font-weight: 800;
}


/* =========================================================
   FORM SHELL
========================================================= */

.dfl-estimate-form-shell {
    min-width: 0;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(250, 249, 244, 0.96)
        );

    border:
        1px solid rgba(13, 77, 29, 0.12);

    border-radius: var(--dfl-radius-md);

    box-shadow:
        0 27px 72px rgba(8, 46, 23, 0.13);

    overflow: hidden;
}

.dfl-estimate-form-shell__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    min-height: 96px;
    padding: 19px clamp(22px, 3vw, 35px);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(247, 245, 238, 0.93)
        );

    border-bottom:
        1px solid rgba(13, 77, 29, 0.1);
}

.dfl-estimate-form-shell__title {
    display: flex;
    align-items: center;
    gap: 13px;
}

.dfl-estimate-form-shell__icon {
    display: grid;
    place-items: center;

    width: 45px;
    height: 45px;
    flex: 0 0 auto;

    color: var(--dfl-surface);

    background:
        linear-gradient(
            135deg,
            var(--dfl-green-bright),
            var(--dfl-green-primary)
        );

    border-radius: var(--dfl-radius-sm);

    box-shadow:
        0 12px 28px rgba(8, 184, 11, 0.21);
}

.dfl-estimate-form-shell__icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-estimate-form-shell__title > div {
    display: flex;
    flex-direction: column;
}

.dfl-estimate-form-shell__title > div span {
    color: var(--dfl-green-primary);

    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dfl-estimate-form-shell__title > div strong {
    margin-top: 6px;

    color: var(--dfl-green-forest);

    font-size: 1rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}


/* =========================================================
   PROGRESS
========================================================= */

.dfl-estimate-progress {
    width: min(100%, 230px);
}

.dfl-estimate-progress__copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.dfl-estimate-progress__copy span {
    color: var(--dfl-text-muted);

    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.dfl-estimate-progress__copy strong {
    color: var(--dfl-green-primary);

    font-size: 0.66rem;
    font-weight: 800;
}

.dfl-estimate-progress__track {
    position: relative;

    height: 7px;
    margin-top: 9px;

    background: rgba(13, 77, 29, 0.09);
    border-radius: var(--dfl-radius-round);

    overflow: hidden;
}

.dfl-estimate-progress__track > span {
    display: block;

    width: var(--dfl-form-progress, 0%);
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--dfl-green-primary),
            var(--dfl-green-bright)
        );

    border-radius: inherit;

    transition:
        width 450ms var(--dfl-ease);
}


/* =========================================================
   ALERT
========================================================= */

.dfl-estimate-form__alert {
    margin:
        clamp(20px, 2.5vw, 30px)
        clamp(22px, 3vw, 35px)
        0;

    padding: 14px 16px;

    border: 1px solid transparent;
    border-radius: var(--dfl-radius-sm);

    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.55;
}

.dfl-estimate-form__alert[hidden] {
    display: none;
}

.dfl-estimate-form__alert--success {
    color: var(--dfl-success);
    background: rgba(24, 134, 58, 0.08);
    border-color: rgba(24, 134, 58, 0.17);
}

.dfl-estimate-form__alert--error {
    color: var(--dfl-error);
    background: rgba(185, 56, 50, 0.08);
    border-color: rgba(185, 56, 50, 0.17);
}


/* =========================================================
   FORM
========================================================= */

.dfl-estimate-form {
    padding: clamp(25px, 3.2vw, 39px);
}

.dfl-estimate-form__trap {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);

    white-space: nowrap;
}

.dfl-estimate-form__group {
    min-width: 0;
    padding: 0;
    margin: 0;

    border: 0;
}

.dfl-estimate-form__group +
.dfl-estimate-form__group {
    margin-top: 35px;
    padding-top: 32px;

    border-top:
        1px solid rgba(13, 77, 29, 0.1);
}

.dfl-estimate-form__group > legend {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    color: var(--dfl-green-forest);

    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.2;
}

.dfl-estimate-form__group > legend span {
    display: grid;
    place-items: center;

    width: 29px;
    height: 29px;

    color: var(--dfl-green-primary);
    background: rgba(19, 138, 36, 0.08);

    border:
        1px solid rgba(19, 138, 36, 0.1);

    border-radius: var(--dfl-radius-xs);

    font-size: 0.51rem;
    letter-spacing: 0.08em;
}

.dfl-estimate-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.dfl-estimate-form__grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}


/* =========================================================
   STANDARD FIELDS
========================================================= */

.dfl-form-field {
    min-width: 0;
}

.dfl-form-field > label,
.dfl-contact-preference > legend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    margin-bottom: 9px;

    color: var(--dfl-charcoal-soft);

    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1.3;
}

.dfl-form-field > label > span,
.dfl-contact-preference > legend > span {
    color: var(--dfl-error);
}

.dfl-form-field > label small {
    color: var(--dfl-text-muted);

    font-size: 0.5rem;
    font-weight: 650;
}

.dfl-form-field__control {
    position: relative;

    display: flex;
    align-items: center;
}

.dfl-form-field__icon {
    position: absolute;
    left: 14px;
    z-index: 2;

    display: grid;
    place-items: center;

    width: 20px;
    height: 20px;

    color: var(--dfl-green-primary);

    pointer-events: none;
}

.dfl-form-field__icon svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-form-field input,
.dfl-form-field select,
.dfl-form-field textarea {
    width: 100%;

    color: var(--dfl-text);
    background: rgba(255, 255, 255, 0.86);

    border:
        1px solid rgba(13, 77, 29, 0.13);

    border-radius: var(--dfl-radius-sm);

    font-family: var(--dfl-font-primary);
    font-size: 0.73rem;
    font-weight: 600;

    outline: none;

    transition:
        background-color var(--dfl-transition-normal) var(--dfl-ease),
        border-color var(--dfl-transition-normal) var(--dfl-ease),
        box-shadow var(--dfl-transition-normal) var(--dfl-ease);
}

.dfl-form-field input,
.dfl-form-field select {
    height: 53px;
    padding: 0 15px;
}

.dfl-form-field__icon + input,
.dfl-form-field__icon + select {
    padding-left: 45px;
}

.dfl-form-field input::placeholder,
.dfl-form-field textarea::placeholder {
    color: rgba(98, 108, 101, 0.7);
}

.dfl-form-field input:hover,
.dfl-form-field select:hover,
.dfl-form-field textarea:hover {
    border-color: rgba(19, 138, 36, 0.22);
}

.dfl-form-field input:focus,
.dfl-form-field select:focus,
.dfl-form-field textarea:focus {
    background: var(--dfl-surface);

    border-color: var(--dfl-green-primary);

    box-shadow:
        0 0 0 4px rgba(19, 138, 36, 0.1);
}

.dfl-form-field input:user-invalid,
.dfl-form-field select:user-invalid,
.dfl-form-field textarea:user-invalid {
    border-color: rgba(185, 56, 50, 0.48);
}

.dfl-form-field select {
    appearance: none;
    cursor: pointer;
}

.dfl-form-field__control--select select {
    padding-right: 41px;
}

.dfl-form-field__select-arrow {
    position: absolute;
    right: 14px;

    width: 17px;
    height: 17px;

    fill: none;
    stroke: var(--dfl-green-primary);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    pointer-events: none;
}


/* =========================================================
   CONTACT PREFERENCE
========================================================= */

.dfl-contact-preference {
    min-width: 0;
    padding: 0;
    margin: 0;

    border: 0;
}

.dfl-contact-preference__options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.dfl-contact-preference label {
    position: relative;
    cursor: pointer;
}

.dfl-contact-preference input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    pointer-events: none;
}

.dfl-contact-preference label > span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 53px;
    padding: 10px 8px;

    color: var(--dfl-text-muted);
    background: rgba(255, 255, 255, 0.8);

    border:
        1px solid rgba(13, 77, 29, 0.12);

    border-radius: var(--dfl-radius-sm);

    font-size: 0.61rem;
    font-weight: 800;

    transition:
        color var(--dfl-transition-normal) var(--dfl-ease),
        background-color var(--dfl-transition-normal) var(--dfl-ease),
        border-color var(--dfl-transition-normal) var(--dfl-ease),
        box-shadow var(--dfl-transition-normal) var(--dfl-ease);
}

.dfl-contact-preference label:hover > span {
    color: var(--dfl-green-dark);
    border-color: rgba(19, 138, 36, 0.23);
}

.dfl-contact-preference input:checked + span {
    color: var(--dfl-surface);

    background:
        linear-gradient(
            135deg,
            var(--dfl-green-dark),
            var(--dfl-green-primary)
        );

    border-color: transparent;

    box-shadow:
        0 10px 24px rgba(8, 46, 23, 0.14);
}

.dfl-contact-preference input:focus-visible + span {
    outline:
        3px solid rgba(8, 184, 11, 0.35);

    outline-offset: 3px;
}

.dfl-contact-preference svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   SERVICE SELECTOR
========================================================= */

.dfl-service-selector__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 14px;
}

.dfl-service-selector__heading p {
    color: var(--dfl-text-muted);

    font-size: 0.64rem;
    line-height: 1.5;
}

.dfl-service-selector__heading > span {
    flex: 0 0 auto;

    color: var(--dfl-green-primary);

    font-size: 0.59rem;
    font-weight: 800;
}

.dfl-service-selector {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.dfl-service-option {
    position: relative;
    min-width: 0;

    cursor: pointer;
}

.dfl-service-option > input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    pointer-events: none;
}

.dfl-service-option__content {
    display: flex;
    align-items: center;
    gap: 9px;

    min-height: 50px;
    padding: 9px 10px;

    color: var(--dfl-charcoal-soft);
    background: rgba(255, 255, 255, 0.77);

    border:
        1px solid rgba(13, 77, 29, 0.11);

    border-radius: var(--dfl-radius-sm);

    font-size: 0.61rem;
    font-weight: 750;
    line-height: 1.25;

    transition:
        color var(--dfl-transition-normal) var(--dfl-ease),
        background-color var(--dfl-transition-normal) var(--dfl-ease),
        border-color var(--dfl-transition-normal) var(--dfl-ease),
        box-shadow var(--dfl-transition-normal) var(--dfl-ease),
        transform var(--dfl-transition-normal) var(--dfl-ease);
}

.dfl-service-option:hover
.dfl-service-option__content {
    border-color: rgba(19, 138, 36, 0.23);
    transform: translateY(-2px);
}

.dfl-service-option__check {
    display: grid;
    place-items: center;

    width: 24px;
    height: 24px;
    flex: 0 0 auto;

    color: transparent;
    background: rgba(19, 138, 36, 0.07);

    border:
        1px solid rgba(19, 138, 36, 0.13);

    border-radius: var(--dfl-radius-xs);

    transition:
        color var(--dfl-transition-normal) var(--dfl-ease),
        background-color var(--dfl-transition-normal) var(--dfl-ease);
}

.dfl-service-option__check svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-service-option input:checked +
.dfl-service-option__content {
    color: var(--dfl-green-forest);

    background: rgba(19, 138, 36, 0.08);

    border-color: rgba(19, 138, 36, 0.28);

    box-shadow:
        0 9px 22px rgba(8, 46, 23, 0.07);
}

.dfl-service-option input:checked +
.dfl-service-option__content
.dfl-service-option__check {
    color: var(--dfl-surface);
    background: var(--dfl-green-primary);
}

.dfl-service-option input:focus-visible +
.dfl-service-option__content {
    outline:
        3px solid rgba(8, 184, 11, 0.34);

    outline-offset: 3px;
}

.dfl-service-selector__error {
    min-height: 18px;
    margin-top: 8px;

    color: var(--dfl-error);

    font-size: 0.6rem;
    font-weight: 700;
}


/* =========================================================
   TEXTAREA
========================================================= */

.dfl-form-field--textarea textarea {
    min-height: 155px;
    padding: 15px 16px;

    resize: vertical;
    line-height: 1.65;
}

.dfl-form-field__textarea-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    margin-top: 8px;
}

.dfl-form-field__textarea-footer > p {
    color: var(--dfl-text-muted);

    font-size: 0.56rem;
    line-height: 1.45;
}

.dfl-form-field__textarea-footer > span {
    display: flex;
    align-items: baseline;
    gap: 3px;
    flex: 0 0 auto;

    color: var(--dfl-text-muted);

    font-size: 0.55rem;
    font-weight: 700;
}

.dfl-form-field__textarea-footer strong {
    color: var(--dfl-green-primary);
}

.dfl-form-field__textarea-footer small {
    margin-left: 6px;

    color: var(--dfl-text-muted);
    font-size: 0.49rem;
    font-weight: 650;
}


/* =========================================================
   FORM FOOTER
========================================================= */

.dfl-estimate-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    margin-top: 35px;
    padding-top: 28px;

    border-top:
        1px solid rgba(13, 77, 29, 0.1);
}

.dfl-form-consent {
    position: relative;

    display: grid;
    grid-template-columns: 23px minmax(0, 1fr);
    align-items: flex-start;
    gap: 10px;

    max-width: 520px;

    cursor: pointer;
}

.dfl-form-consent > input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    pointer-events: none;
}

.dfl-form-consent__check {
    display: grid;
    place-items: center;

    width: 22px;
    height: 22px;

    color: transparent;
    background: var(--dfl-surface);

    border:
        1px solid rgba(13, 77, 29, 0.2);

    border-radius: var(--dfl-radius-xs);

    transition:
        color var(--dfl-transition-normal) var(--dfl-ease),
        background-color var(--dfl-transition-normal) var(--dfl-ease),
        border-color var(--dfl-transition-normal) var(--dfl-ease);
}

.dfl-form-consent__check svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-form-consent input:checked +
.dfl-form-consent__check {
    color: var(--dfl-surface);
    background: var(--dfl-green-primary);
    border-color: var(--dfl-green-primary);
}

.dfl-form-consent input:focus-visible +
.dfl-form-consent__check {
    outline:
        3px solid rgba(8, 184, 11, 0.34);

    outline-offset: 3px;
}

.dfl-form-consent__copy {
    color: var(--dfl-text-muted);

    font-size: 0.6rem;
    line-height: 1.55;
}

.dfl-estimate-form__actions {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
}

.dfl-estimate-form__clear,
.dfl-estimate-form__submit {
    min-height: 49px;

    border-radius: var(--dfl-radius-sm);

    font-family: var(--dfl-font-primary);
    font-size: 0.67rem;
    font-weight: 800;

    cursor: pointer;

    transition:
        color var(--dfl-transition-normal) var(--dfl-ease),
        background-color var(--dfl-transition-normal) var(--dfl-ease),
        border-color var(--dfl-transition-normal) var(--dfl-ease),
        box-shadow var(--dfl-transition-normal) var(--dfl-ease),
        transform var(--dfl-transition-normal) var(--dfl-ease);
}

.dfl-estimate-form__clear {
    padding: 11px 14px;

    color: var(--dfl-text-muted);
    background: transparent;

    border:
        1px solid rgba(13, 77, 29, 0.13);
}

.dfl-estimate-form__clear:hover {
    color: var(--dfl-green-dark);
    background: rgba(19, 138, 36, 0.06);
    border-color: rgba(19, 138, 36, 0.22);
}

.dfl-estimate-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-width: 195px;
    padding: 12px 17px;

    color: var(--dfl-surface);

    background:
        linear-gradient(
            135deg,
            var(--dfl-green-bright),
            var(--dfl-green-primary)
        );

    border: 0;

    box-shadow:
        0 14px 32px rgba(8, 184, 11, 0.22);
}

.dfl-estimate-form__submit:hover {
    box-shadow:
        0 19px 40px rgba(8, 184, 11, 0.3);

    transform: translateY(-2px);
}

.dfl-estimate-form__submit:disabled {
    cursor: wait;
    opacity: 0.78;
    transform: none;
}

.dfl-estimate-form__submit > svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform var(--dfl-transition-normal)
        var(--dfl-ease);
}

.dfl-estimate-form__submit:hover > svg {
    transform: translateX(3px);
}

.dfl-estimate-form__submit-spinner {
    display: none;

    width: 16px;
    height: 16px;

    border:
        2px solid rgba(255, 255, 255, 0.35);

    border-top-color: var(--dfl-surface);
    border-radius: 50%;

    animation:
        dflEstimateSubmitSpin
        800ms
        linear
        infinite;
}

.dfl-estimate-form--submitting
.dfl-estimate-form__submit-spinner {
    display: block;
}

.dfl-estimate-form--submitting
.dfl-estimate-form__submit > svg {
    display: none;
}

@keyframes dflEstimateSubmitSpin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   PROGRESSIVE ENHANCEMENT ANIMATION
========================================================= */

.dfl-contact-section.dfl-contact-section--motion-ready
[data-dfl-contact-reveal] {
    opacity: 0;
    will-change: opacity, transform;
}

.dfl-contact-section.dfl-contact-section--motion-ready
[data-dfl-contact-reveal="header"] {
    transform: translateY(34px);
}

.dfl-contact-section.dfl-contact-section--motion-ready
[data-dfl-contact-reveal="information"] {
    transform:
        translate3d(-31px, 23px, 0)
        scale(0.985);
}

.dfl-contact-section.dfl-contact-section--motion-ready
[data-dfl-contact-reveal="form"] {
    transform:
        translate3d(31px, 23px, 0)
        scale(0.985);
}

.dfl-contact-section.dfl-contact-section--visible
[data-dfl-contact-reveal] {
    opacity: 1;
    transform: none;
}

.dfl-contact-section.dfl-contact-section--visible
[data-dfl-contact-reveal="header"] {
    transition:
        opacity 800ms var(--dfl-ease),
        transform 900ms var(--dfl-ease);
}

.dfl-contact-section.dfl-contact-section--visible
[data-dfl-contact-reveal="information"] {
    transition:
        opacity 800ms var(--dfl-ease) 130ms,
        transform 950ms var(--dfl-ease) 130ms;
}

.dfl-contact-section.dfl-contact-section--visible
[data-dfl-contact-reveal="form"] {
    transition:
        opacity 800ms var(--dfl-ease) 220ms,
        transform 950ms var(--dfl-ease) 220ms;
}

html.dfl-reduce-motion
.dfl-contact-section [data-dfl-contact-reveal] {
    opacity: 1;
    transform: none;
}

html.dfl-reduce-motion
.dfl-estimate-form__submit-spinner {
    animation: none;
}








































/* =========================================================
   03. WHAT HAPPENS NEXT
========================================================= */

.dfl-next-steps {
    position: relative;

    width: 100%;
    padding: var(--dfl-section-space) 0;

    color: var(--dfl-surface);

    background:
        linear-gradient(
            145deg,
            var(--dfl-green-deep) 0%,
            var(--dfl-green-forest) 54%,
            #0A381B 100%
        );

    overflow: hidden;
    isolation: isolate;
}

.dfl-next-steps__background {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;
    pointer-events: none;
}

.dfl-next-steps__background::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.2;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.017) 0,
            rgba(255, 255, 255, 0.017) 1px,
            transparent 1px,
            transparent 6px
        );
}

.dfl-next-steps__glow,
.dfl-next-steps__ring {
    position: absolute;
    display: block;

    border-radius: 50%;
}

.dfl-next-steps__glow--one {
    top: -300px;
    right: -230px;

    width: 680px;
    height: 680px;

    background:
        radial-gradient(
            circle,
            rgba(8, 184, 11, 0.22),
            rgba(8, 184, 11, 0.045) 48%,
            transparent 71%
        );
}

.dfl-next-steps__glow--two {
    bottom: -360px;
    left: -280px;

    width: 730px;
    height: 730px;

    background:
        radial-gradient(
            circle,
            rgba(197, 166, 90, 0.14),
            transparent 70%
        );
}

.dfl-next-steps__ring--one {
    top: 120px;
    right: 7%;

    width: 255px;
    height: 255px;

    border:
        1px solid rgba(255, 255, 255, 0.07);
}

.dfl-next-steps__ring--two {
    top: 158px;
    right: calc(7% + 38px);

    width: 179px;
    height: 179px;

    border:
        1px solid rgba(8, 184, 11, 0.11);
}

.dfl-next-steps__vertical-line {
    position: absolute;
    top: 0;
    left: 9%;

    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.065),
            transparent
        );
}

.dfl-next-steps__leaf {
    position: absolute;
    right: -80px;
    bottom: -120px;

    width: min(31vw, 470px);
    height: auto;

    fill: rgba(8, 184, 11, 0.018);
    stroke: rgba(255, 255, 255, 0.075);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    transform: rotate(8deg);
}

.dfl-next-steps__number-decoration {
    position: absolute;
    top: 58%;
    left: 2%;

    color: rgba(255, 255, 255, 0.025);

    font-size: clamp(11rem, 22vw, 24rem);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.1em;

    transform: translateY(-50%) rotate(-7deg);
}


/* =========================================================
   HEADER
========================================================= */

.dfl-next-steps__container {
    position: relative;
}

.dfl-next-steps__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(270px, 0.55fr);
    align-items: end;
    gap: clamp(42px, 7vw, 105px);
}

.dfl-next-steps__heading {
    max-width: 900px;
}

.dfl-next-steps__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 21px;

    color: var(--dfl-green-bright);

    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.dfl-next-steps__eyebrow::before {
    content: "";

    width: 31px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--dfl-gold),
            var(--dfl-green-bright)
        );

    border-radius: var(--dfl-radius-round);
}

.dfl-next-steps__heading h2 {
    max-width: 890px;

    color: var(--dfl-surface);

    font-size: clamp(2.45rem, 5.1vw, 5.25rem);
    font-weight: 800;
    line-height: 0.99;
    letter-spacing: -0.06em;
}

.dfl-next-steps__heading h2 span {
    display: block;
    color: var(--dfl-sand-light);
}

.dfl-next-steps__header-copy {
    padding-bottom: 7px;
}

.dfl-next-steps__header-copy p {
    color: rgba(255, 255, 255, 0.66);

    font-size: clamp(0.86rem, 1.05vw, 1rem);
    line-height: 1.78;
}

.dfl-next-steps__header-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 22px;

    color: var(--dfl-green-bright);

    font-size: 0.71rem;
    font-weight: 800;

    transition:
        color var(--dfl-transition-normal) var(--dfl-ease),
        transform var(--dfl-transition-normal) var(--dfl-ease);
}

.dfl-next-steps__header-link:hover {
    color: var(--dfl-surface);
    transform: translateX(3px);
}

.dfl-next-steps__header-link svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform var(--dfl-transition-normal)
        var(--dfl-ease);
}

.dfl-next-steps__header-link:hover svg {
    transform: translateX(4px);
}


/* =========================================================
   LAYOUT
========================================================= */

.dfl-next-steps__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.42fr)
        minmax(310px, 0.58fr);
    align-items: start;
    gap: clamp(23px, 3vw, 43px);

    margin-top: clamp(54px, 7vw, 90px);
}


/* =========================================================
   TIMELINE
========================================================= */

.dfl-next-steps__timeline {
    position: relative;

    display: grid;
    gap: 17px;

    min-width: 0;
}

.dfl-next-steps__progress {
    position: absolute;
    top: 42px;
    bottom: 42px;
    left: 45px;
    z-index: 1;

    width: 2px;
}

.dfl-next-steps__progress-track,
.dfl-next-steps__progress-fill {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    border-radius: var(--dfl-radius-round);
}

.dfl-next-steps__progress-track {
    height: 100%;
    background: rgba(255, 255, 255, 0.11);
}

.dfl-next-steps__progress-fill {
    height: var(--dfl-next-progress, 0%);

    background:
        linear-gradient(
            180deg,
            var(--dfl-green-bright),
            var(--dfl-gold)
        );

    box-shadow:
        0 0 18px rgba(8, 184, 11, 0.28);

    transition:
        height 180ms linear;
}


/* =========================================================
   STEP CARD
========================================================= */

.dfl-next-step {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: clamp(20px, 2.4vw, 31px);

    min-height: 235px;
    padding: clamp(24px, 3vw, 37px);

    color: var(--dfl-text);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.985),
            rgba(247, 245, 238, 0.95)
        );

    border:
        1px solid rgba(255, 255, 255, 0.23);

    border-radius: var(--dfl-radius-md);

    box-shadow:
        0 20px 52px rgba(0, 0, 0, 0.14);

    overflow: hidden;

    transition:
        border-color var(--dfl-transition-normal) var(--dfl-ease),
        box-shadow var(--dfl-transition-normal) var(--dfl-ease),
        transform var(--dfl-transition-normal) var(--dfl-ease);
}

.dfl-next-step::before {
    content: "";

    position: absolute;
    top: -95px;
    right: -80px;

    width: 220px;
    height: 220px;

    background:
        radial-gradient(
            circle,
            rgba(8, 184, 11, 0.13),
            transparent 68%
        );

    border-radius: 50%;

    opacity: 0;
    transform: scale(0.72);

    transition:
        opacity 500ms var(--dfl-ease),
        transform 650ms var(--dfl-ease);

    pointer-events: none;
}

.dfl-next-step:hover,
.dfl-next-step.dfl-next-step--active {
    border-color: rgba(8, 184, 11, 0.29);

    box-shadow:
        0 27px 62px rgba(0, 0, 0, 0.2);

    transform: translateY(-5px);
}

.dfl-next-step:hover::before,
.dfl-next-step.dfl-next-step--active::before {
    opacity: 1;
    transform: scale(1);
}

.dfl-next-step__marker {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.dfl-next-step__number {
    color: rgba(13, 77, 29, 0.42);

    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.dfl-next-step__icon {
    position: relative;
    z-index: 3;

    display: grid;
    place-items: center;

    width: 58px;
    height: 58px;

    color: var(--dfl-green-primary);
    background: var(--dfl-surface);

    border:
        1px solid rgba(19, 138, 36, 0.16);

    border-radius: var(--dfl-radius-sm);

    box-shadow:
        0 12px 28px rgba(8, 46, 23, 0.1);

    transition:
        color var(--dfl-transition-normal) var(--dfl-ease),
        background-color var(--dfl-transition-normal) var(--dfl-ease),
        transform var(--dfl-transition-normal) var(--dfl-ease);
}

.dfl-next-step:hover
.dfl-next-step__icon,
.dfl-next-step.dfl-next-step--active
.dfl-next-step__icon {
    color: var(--dfl-surface);

    background:
        linear-gradient(
            135deg,
            var(--dfl-green-bright),
            var(--dfl-green-primary)
        );

    transform: rotate(-4deg);
}

.dfl-next-step__icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-next-step__content {
    position: relative;
}

.dfl-next-step__label {
    color: var(--dfl-green-primary);

    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.dfl-next-step__content h3 {
    max-width: 620px;
    margin-top: 10px;

    color: var(--dfl-green-forest);

    font-size: clamp(1.3rem, 2vw, 1.85rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.044em;
}

.dfl-next-step__content > p {
    max-width: 660px;
    margin-top: 13px;

    color: var(--dfl-text-muted);

    font-size: 0.75rem;
    line-height: 1.72;
}

.dfl-next-step__content ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px 20px;

    margin-top: 18px;
    padding-top: 17px;

    border-top:
        1px solid rgba(13, 77, 29, 0.1);
}

.dfl-next-step__content li {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--dfl-charcoal-soft);

    font-size: 0.63rem;
    font-weight: 700;
}

.dfl-next-step__content li svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: var(--dfl-green-primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   ASIDE PANEL
========================================================= */

.dfl-next-steps__aside {
    position: sticky;
    top: calc(var(--dfl-header-height) + 24px);

    padding: clamp(25px, 2.8vw, 36px);

    color: var(--dfl-surface);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.095),
            rgba(255, 255, 255, 0.045)
        );

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius: var(--dfl-radius-md);

    box-shadow:
        0 24px 62px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    overflow: hidden;
    isolation: isolate;
}

.dfl-next-steps__aside::before {
    content: "";

    position: absolute;
    top: -110px;
    right: -95px;
    z-index: -1;

    width: 270px;
    height: 270px;

    background:
        radial-gradient(
            circle,
            rgba(8, 184, 11, 0.3),
            transparent 69%
        );

    border-radius: 50%;
}

.dfl-next-steps__aside-light {
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        radial-gradient(
            circle at
            var(--dfl-next-light-x, 78%)
            var(--dfl-next-light-y, 18%),
            rgba(8, 184, 11, 0.15),
            transparent 30%
        );

    pointer-events: none;
}

.dfl-next-steps__aside-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dfl-next-steps__aside-label {
    color: var(--dfl-green-bright);

    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dfl-next-steps__aside-icon {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;
    flex: 0 0 auto;

    color: var(--dfl-surface);

    background:
        linear-gradient(
            135deg,
            var(--dfl-green-bright),
            var(--dfl-green-primary)
        );

    border-radius: var(--dfl-radius-sm);

    box-shadow:
        0 14px 31px rgba(8, 184, 11, 0.23);
}

.dfl-next-steps__aside-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-next-steps__aside-content {
    margin-top: 37px;
}

.dfl-next-steps__aside-content h3 {
    color: var(--dfl-surface);

    font-size: clamp(1.45rem, 2.4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.047em;
}

.dfl-next-steps__aside-content p {
    margin-top: 15px;

    color: rgba(255, 255, 255, 0.61);

    font-size: 0.72rem;
    line-height: 1.7;
}


/* =========================================================
   HOURS
========================================================= */

.dfl-next-steps__hours {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    margin-top: 27px;
    padding: 17px 15px;

    background: rgba(255, 255, 255, 0.065);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: var(--dfl-radius-sm);
}

.dfl-next-steps__hours-icon {
    display: grid;
    place-items: center;

    width: 40px;
    height: 40px;
    flex: 0 0 auto;

    color: var(--dfl-green-bright);
    background: rgba(8, 184, 11, 0.1);

    border-radius: var(--dfl-radius-xs);
}

.dfl-next-steps__hours-icon svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-next-steps__hours > div {
    display: flex;
    flex-direction: column;
}

.dfl-next-steps__hours small {
    color: rgba(255, 255, 255, 0.42);

    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dfl-next-steps__hours strong {
    margin-top: 6px;

    color: var(--dfl-surface);

    font-size: 0.78rem;
    font-weight: 800;
}

.dfl-next-steps__hours p {
    margin-top: 6px;

    color: rgba(255, 255, 255, 0.49);

    font-size: 0.57rem;
    line-height: 1.45;
}


/* =========================================================
   CONTACT LIST
========================================================= */

.dfl-next-steps__contact-list {
    display: grid;
    gap: 8px;

    margin-top: 20px;
}

.dfl-next-steps__contact {
    display: grid;
    grid-template-columns: 37px minmax(0, 1fr) 16px;
    align-items: center;
    gap: 11px;

    min-height: 59px;
    padding: 10px 11px;

    color: var(--dfl-surface);
    background: rgba(255, 255, 255, 0.055);

    border:
        1px solid rgba(255, 255, 255, 0.095);

    border-radius: var(--dfl-radius-sm);

    transition:
        background-color var(--dfl-transition-normal) var(--dfl-ease),
        border-color var(--dfl-transition-normal) var(--dfl-ease),
        transform var(--dfl-transition-normal) var(--dfl-ease);
}

.dfl-next-steps__contact:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateX(3px);
}

.dfl-next-steps__contact-icon {
    display: grid;
    place-items: center;

    width: 37px;
    height: 37px;

    color: var(--dfl-green-bright);
    background: rgba(8, 184, 11, 0.1);

    border-radius: var(--dfl-radius-xs);
}

.dfl-next-steps__contact-icon svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dfl-next-steps__contact > span:nth-child(2) {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dfl-next-steps__contact small {
    color: rgba(255, 255, 255, 0.4);

    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dfl-next-steps__contact strong {
    margin-top: 5px;

    overflow-wrap: anywhere;

    color: var(--dfl-surface);

    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1.2;
}

.dfl-next-steps__contact-arrow {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: var(--dfl-green-bright);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform var(--dfl-transition-normal)
        var(--dfl-ease);
}

.dfl-next-steps__contact:hover
.dfl-next-steps__contact-arrow {
    transform: translateX(3px);
}


/* =========================================================
   EDIT BUTTON
========================================================= */

.dfl-next-steps__edit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 49px;
    margin-top: 21px;
    padding: 12px 16px;

    color: var(--dfl-surface);

    background:
        linear-gradient(
            135deg,
            var(--dfl-green-bright),
            var(--dfl-green-primary)
        );

    border-radius: var(--dfl-radius-sm);

    box-shadow:
        0 14px 32px rgba(8, 184, 11, 0.22);

    font-size: 0.68rem;
    font-weight: 800;

    transition:
        box-shadow var(--dfl-transition-normal) var(--dfl-ease),
        transform var(--dfl-transition-normal) var(--dfl-ease);
}

.dfl-next-steps__edit-button:hover {
    box-shadow:
        0 19px 40px rgba(8, 184, 11, 0.29);

    transform: translateY(-2px);
}

.dfl-next-steps__edit-button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   PROGRESSIVE ENHANCEMENT
========================================================= */

.dfl-next-steps.dfl-next-steps--motion-ready
[data-dfl-next-reveal],
.dfl-next-steps.dfl-next-steps--motion-ready
[data-dfl-next-step] {
    opacity: 0;
    will-change: opacity, transform;
}

.dfl-next-steps.dfl-next-steps--motion-ready
[data-dfl-next-reveal="header"] {
    transform: translateY(34px);
}

.dfl-next-steps.dfl-next-steps--motion-ready
[data-dfl-next-reveal="timeline"] {
    transform:
        translate3d(-30px, 22px, 0)
        scale(0.988);
}

.dfl-next-steps.dfl-next-steps--motion-ready
[data-dfl-next-reveal="aside"] {
    transform:
        translate3d(30px, 22px, 0)
        scale(0.988);
}

.dfl-next-steps.dfl-next-steps--motion-ready
[data-dfl-next-step] {
    transform: translateY(25px);
}

.dfl-next-steps.dfl-next-steps--visible
[data-dfl-next-reveal],
.dfl-next-steps.dfl-next-steps--visible
[data-dfl-next-step] {
    opacity: 1;
    transform: none;
}

.dfl-next-steps.dfl-next-steps--visible
[data-dfl-next-reveal="header"] {
    transition:
        opacity 800ms var(--dfl-ease),
        transform 900ms var(--dfl-ease);
}

.dfl-next-steps.dfl-next-steps--visible
[data-dfl-next-reveal="timeline"] {
    transition:
        opacity 800ms var(--dfl-ease) 130ms,
        transform 950ms var(--dfl-ease) 130ms;
}

.dfl-next-steps.dfl-next-steps--visible
[data-dfl-next-reveal="aside"] {
    transition:
        opacity 800ms var(--dfl-ease) 220ms,
        transform 950ms var(--dfl-ease) 220ms;
}

.dfl-next-steps.dfl-next-steps--visible
[data-dfl-next-step]:nth-of-type(1) {
    transition:
        opacity 700ms var(--dfl-ease) 210ms,
        transform 800ms var(--dfl-ease) 210ms;
}

.dfl-next-steps.dfl-next-steps--visible
[data-dfl-next-step]:nth-of-type(2) {
    transition:
        opacity 700ms var(--dfl-ease) 300ms,
        transform 800ms var(--dfl-ease) 300ms;
}

.dfl-next-steps.dfl-next-steps--visible
[data-dfl-next-step]:nth-of-type(3) {
    transition:
        opacity 700ms var(--dfl-ease) 390ms,
        transform 800ms var(--dfl-ease) 390ms;
}

html.dfl-reduce-motion
.dfl-next-steps [data-dfl-next-reveal],
html.dfl-reduce-motion
.dfl-next-steps [data-dfl-next-step] {
    opacity: 1;
    transform: none;
}










































/* =========================================================
   MEDIA QUERY 1: COMPUTADORA
========================================================= */

@media (min-width: 1200px) {
      .dfl-next-steps__layout {
        grid-template-columns:
            minmax(0, 1.45fr)
            minmax(340px, 0.55fr);
    }

    .dfl-next-step {
        min-height: 240px;
    }
    .dfl-contact-section__layout {
        grid-template-columns:
            minmax(350px, 0.53fr)
            minmax(0, 1.47fr);
    }

    .dfl-contact-info {
        min-height: 710px;
    }

    .dfl-contact-hero__container {
        grid-template-columns:
            minmax(0, 1.13fr)
            minmax(350px, 0.57fr);
    }

    .dfl-contact-hero__panel {
        max-width: 410px;
    }

}


/* =========================================================
   MEDIA QUERY 2: TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {
      .dfl-next-steps__header {
        grid-template-columns:
            minmax(0, 1.25fr)
            minmax(245px, 0.55fr);

        gap: 35px;
    }

    .dfl-next-steps__heading h2 {
        font-size: clamp(2.35rem, 5.4vw, 4.2rem);
    }

    .dfl-next-steps__layout {
        grid-template-columns:
            minmax(0, 1.32fr)
            minmax(275px, 0.68fr);

        gap: 18px;
    }

    .dfl-next-step {
        grid-template-columns: 73px minmax(0, 1fr);
        gap: 18px;

        padding: 26px 22px;
    }

    .dfl-next-steps__progress {
        left: 36px;
    }

    .dfl-next-step__icon {
        width: 51px;
        height: 51px;
    }

    .dfl-next-step__content ul {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .dfl-next-steps__aside {
        top: calc(var(--dfl-header-height) + 17px);

        padding: 25px 21px;
    }
     .dfl-contact-section__header {
        grid-template-columns:
            minmax(0, 1.25fr)
            minmax(245px, 0.55fr);

        gap: 35px;
    }

    .dfl-contact-section__heading h2 {
        font-size: clamp(2.35rem, 5.4vw, 4.2rem);
    }

    .dfl-contact-section__layout {
        grid-template-columns:
            minmax(270px, 0.58fr)
            minmax(0, 1.42fr);

        gap: 18px;
    }

    .dfl-contact-info {
        top: calc(var(--dfl-header-height) + 17px);

        min-height: 690px;
        padding: 25px 22px;
    }

    .dfl-contact-info__facts {
        grid-template-columns: 1fr;
    }

    .dfl-contact-info__fact {
        display: flex;
        align-items: center;
        gap: 11px;
    }

    .dfl-contact-info__fact span {
        margin-top: 0;
    }

    .dfl-estimate-form-shell__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .dfl-estimate-progress {
        width: 100%;
    }

    .dfl-estimate-form__grid--three {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .dfl-service-selector {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .dfl-estimate-form__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .dfl-estimate-form__actions {
        width: 100%;
        justify-content: flex-end;
    }

    .dfl-contact-hero__container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(275px, 0.55fr);

        gap: 34px;

        padding-top: clamp(18px, 3svh, 34px);
        padding-bottom: 65px;
    }

    .dfl-contact-hero__title {
        font-size:
            clamp(
                2.75rem,
                min(5.5vw, 7.3svh),
                4.45rem
            );
    }

    .dfl-contact-hero__description {
        max-width: 560px;
        font-size: 0.86rem;
    }

    .dfl-contact-hero__details {
        gap: 17px;
    }

    .dfl-contact-hero__detail +
    .dfl-contact-hero__detail::before {
        left: -9px;
    }

    .dfl-contact-hero__detail:nth-child(3) {
        display: none;
    }

    .dfl-contact-hero__panel {
        padding: 20px;
    }

    .dfl-contact-hero__contact-option {
        min-height: 57px;
    }

}


/* =========================================================
   MEDIA QUERY 3: CELULAR
========================================================= */

@media (min-width: 481px) and (max-width: 767px) {
     .dfl-next-steps__header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 25px;
    }

    .dfl-next-steps__heading h2 {
        font-size: clamp(2.25rem, 8vw, 3.7rem);
    }

    .dfl-next-steps__header-copy {
        max-width: 570px;
    }

    .dfl-next-steps__layout {
        grid-template-columns: 1fr;
        gap: 16px;

        margin-top: 51px;
    }

    .dfl-next-step {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .dfl-next-steps__progress {
        left: 38px;
    }

    .dfl-next-steps__aside {
        position: relative;
        top: auto;
    }

    .dfl-next-steps__contact-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .dfl-next-steps__contact:last-child {
        grid-column: 1 / -1;
    }
        .dfl-contact-section__header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 25px;
    }

    .dfl-contact-section__heading h2 {
        font-size: clamp(2.25rem, 8vw, 3.7rem);
    }

    .dfl-contact-section__header-copy {
        max-width: 570px;
    }

    .dfl-contact-section__layout {
        grid-template-columns: 1fr;
        gap: 16px;

        margin-top: 51px;
    }

    .dfl-contact-info {
        position: relative;
        top: auto;

        min-height: auto;
    }

    .dfl-contact-info__facts {
        max-width: 520px;
    }

    .dfl-estimate-form__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .dfl-estimate-form__grid--three {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .dfl-service-selector {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .dfl-estimate-form__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .dfl-estimate-form__actions {
        width: 100%;
        justify-content: flex-end;
    }


    .dfl-contact-hero__media img {
        object-position: 62% center;
    }

    .dfl-contact-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 30, 16, 0.97) 0%,
                rgba(5, 30, 16, 0.84) 68%,
                rgba(5, 30, 16, 0.59) 100%
            ),
            linear-gradient(
                180deg,
                rgba(5, 30, 16, 0.04),
                rgba(5, 30, 16, 0.4)
            );
    }

    .dfl-contact-hero__container {
        display: flex;
        align-items: center;

        padding-top: clamp(17px, 3svh, 28px);
        padding-bottom: 61px;
    }

    .dfl-contact-hero__content {
        width: min(100%, 620px);
    }

    .dfl-contact-hero__breadcrumb {
        margin-bottom: 13px;
    }

    .dfl-contact-hero__eyebrow {
        margin-bottom: 13px;
    }

    .dfl-contact-hero__title {
        max-width: 610px;

        font-size:
            clamp(
                2.7rem,
                min(9.6vw, 7.5svh),
                4.15rem
            );
    }

    .dfl-contact-hero__description {
        max-width: 535px;
        margin-top: 15px;

        font-size: 0.84rem;
        line-height: 1.6;
    }

    .dfl-contact-hero__actions {
        margin-top: 20px;
    }

    .dfl-contact-hero__details {
        margin-top: 21px;
    }

    .dfl-contact-hero__detail:nth-child(3) {
        display: none;
    }

    .dfl-contact-hero__detail +
    .dfl-contact-hero__detail::before {
        display: none;
    }

    .dfl-contact-hero__panel {
        display: none;
    }

    .dfl-contact-hero__bottom {
        height: 48px;
    }

}


/* =========================================================
   MEDIA QUERY 4: CELULARES PEQUEÑOS
========================================================= */

@media (max-width: 480px) {
     .dfl-next-steps {
        padding: 68px 0;
    }

    .dfl-next-steps__header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 21px;
    }

    .dfl-next-steps__eyebrow {
        margin-bottom: 16px;
        font-size: 0.61rem;
    }

    .dfl-next-steps__heading h2 {
        font-size: clamp(2.05rem, 10.8vw, 3.05rem);
        line-height: 1;
    }

    .dfl-next-steps__header-copy p {
        font-size: 0.82rem;
        line-height: 1.7;
    }

    .dfl-next-steps__layout {
        grid-template-columns: 1fr;
        gap: 13px;

        margin-top: 42px;
    }

    .dfl-next-steps__timeline {
        gap: 11px;
    }

    .dfl-next-steps__progress {
        display: none;
    }

    .dfl-next-step {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;

        min-height: 0;
        padding: 21px 18px;

        border-radius: var(--dfl-radius-sm);
    }

    .dfl-next-step__marker {
        gap: 10px;
    }

    .dfl-next-step__icon {
        width: 45px;
        height: 45px;
    }

    .dfl-next-step__icon svg {
        width: 22px;
        height: 22px;
    }

    .dfl-next-step__content h3 {
        font-size: 1.15rem;
    }

    .dfl-next-step__content > p {
        font-size: 0.69rem;
        line-height: 1.6;
    }

    .dfl-next-step__content ul {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .dfl-next-step__content li {
        font-size: 0.58rem;
    }

    .dfl-next-steps__aside {
        position: relative;
        top: auto;

        padding: 23px 18px;

        border-radius: var(--dfl-radius-sm);
    }

    .dfl-next-steps__aside-content {
        margin-top: 30px;
    }

    .dfl-next-steps__aside-content h3 {
        font-size: 1.5rem;
    }

    .dfl-next-steps__contact-list {
        grid-template-columns: 1fr;
    }

    .dfl-next-steps__number-decoration {
        display: none;
    }

    .dfl-next-steps__leaf {
        width: 330px;
    }
     .dfl-contact-section {
        padding: 68px 0;
    }

    .dfl-contact-section__header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 21px;
    }

    .dfl-contact-section__eyebrow {
        margin-bottom: 16px;
        font-size: 0.61rem;
    }

    .dfl-contact-section__heading h2 {
        font-size: clamp(2.05rem, 10.8vw, 3.05rem);
        line-height: 1;
    }

    .dfl-contact-section__header-copy > p {
        font-size: 0.82rem;
        line-height: 1.7;
    }

    .dfl-contact-section__header-tags span {
        font-size: 0.53rem;
    }

    .dfl-contact-section__layout {
        grid-template-columns: 1fr;
        gap: 13px;

        margin-top: 42px;
    }

    .dfl-contact-info {
        position: relative;
        top: auto;

        min-height: auto;
        padding: 23px 18px;

        border-radius: var(--dfl-radius-sm);
    }

    .dfl-contact-info__top h3 {
        font-size: 1.55rem;
    }

    .dfl-contact-info__steps {
        margin-top: 32px;
    }

    .dfl-contact-info__step {
        padding: 17px 0;
    }

    .dfl-contact-info__facts {
        gap: 5px;
    }

    .dfl-contact-info__fact {
        padding: 12px 7px;
    }

    .dfl-contact-info__fact strong {
        font-size: 0.98rem;
    }

    .dfl-estimate-form-shell {
        border-radius: var(--dfl-radius-sm);
    }

    .dfl-estimate-form-shell__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;

        padding: 17px;
    }

    .dfl-estimate-progress {
        width: 100%;
    }

    .dfl-estimate-form {
        padding: 22px 17px;
    }

    .dfl-estimate-form__group +
    .dfl-estimate-form__group {
        margin-top: 29px;
        padding-top: 27px;
    }

    .dfl-estimate-form__grid,
    .dfl-estimate-form__grid--three {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .dfl-contact-preference__options {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .dfl-contact-preference label > span {
        min-height: 48px;

        font-size: 0.56rem;
    }

    .dfl-service-selector__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .dfl-service-selector {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 7px;
    }

    .dfl-service-option__content {
        min-height: 53px;
        padding: 8px;

        font-size: 0.56rem;
    }

    .dfl-form-field--textarea textarea {
        min-height: 165px;
    }

    .dfl-form-field__textarea-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .dfl-estimate-form__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 23px;

        margin-top: 29px;
    }

    .dfl-estimate-form__actions {
        display: grid;
        grid-template-columns: 0.65fr 1.35fr;

        width: 100%;
    }

    .dfl-estimate-form__clear,
    .dfl-estimate-form__submit {
        width: 100%;
        min-width: 0;
        padding-inline: 10px;
    }

    .dfl-contact-section__leaf {
        width: 330px;
    }

    .dfl-contact-hero__media img {
        object-position: 65% center;

        filter:
            saturate(0.86)
            contrast(1.03)
            brightness(0.66);
    }

    .dfl-contact-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 30, 16, 0.97) 0%,
                rgba(5, 30, 16, 0.85) 74%,
                rgba(5, 30, 16, 0.67) 100%
            ),
            linear-gradient(
                180deg,
                rgba(5, 30, 16, 0.03),
                rgba(5, 30, 16, 0.46)
            );
    }

    .dfl-contact-hero__container {
        display: flex;
        align-items: center;

        padding-top: clamp(12px, 2svh, 20px);
        padding-bottom: 48px;
    }

    .dfl-contact-hero__content {
        width: 100%;
    }

    .dfl-contact-hero__breadcrumb {
        margin-bottom: 10px;

        font-size: 0.56rem;
    }

    .dfl-contact-hero__eyebrow {
        margin-bottom: 10px;
        padding: 5px 8px 5px 6px;

        font-size:
            clamp(
                0.48rem,
                min(2.3vw, 1.25svh),
                0.55rem
            );

        letter-spacing: 0.065em;
    }

    .dfl-contact-hero__eyebrow-icon {
        width: 23px;
        height: 23px;
    }

    .dfl-contact-hero__title {
        font-size:
            clamp(
                2.2rem,
                min(11.2vw, 6.9svh),
                3.35rem
            );

        line-height: 0.93;
        letter-spacing: -0.058em;
    }

    .dfl-contact-hero__description {
        display: -webkit-box;

        max-width: 410px;
        margin-top: clamp(11px, 1.7svh, 15px);

        overflow: hidden;

        font-size:
            clamp(
                0.73rem,
                min(3.2vw, 1.65svh),
                0.82rem
            );

        line-height: 1.5;

        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .dfl-contact-hero__actions {
        display: grid;
        grid-template-columns:
            minmax(0, 1.18fr)
            minmax(0, 0.82fr);
        gap: 8px;

        margin-top: clamp(14px, 2.3svh, 19px);
    }

    .dfl-contact-hero__primary-button,
    .dfl-contact-hero__secondary-button {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        padding: 9px 10px;

        font-size: 0.63rem;
    }

    .dfl-contact-hero__secondary-button {
        justify-content: center;
    }

    .dfl-contact-hero__call-icon,
    .dfl-contact-hero__call-copy small {
        display: none;
    }

    .dfl-contact-hero__call-copy {
        align-items: center;
    }

    .dfl-contact-hero__call-copy strong {
        margin-top: 0;
        font-size: 0.62rem;
    }

    .dfl-contact-hero__details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;

        margin-top: clamp(14px, 2.2svh, 19px);
    }

    .dfl-contact-hero__detail {
        gap: 7px;
    }

    .dfl-contact-hero__detail:nth-child(3) {
        display: none;
    }

    .dfl-contact-hero__detail +
    .dfl-contact-hero__detail::before {
        display: none;
    }

    .dfl-contact-hero__detail-icon {
        width: 30px;
        height: 30px;
    }

    .dfl-contact-hero__detail small {
        font-size: 0.47rem;
    }

    .dfl-contact-hero__detail strong {
        font-size: 0.57rem;
    }

    .dfl-contact-hero__panel {
        display: none;
    }

    .dfl-contact-hero__bottom {
        height: 40px;
    }

    .dfl-contact-hero__bottom p {
        display: none;
    }

    .dfl-contact-hero__bottom-inner {
        justify-content: center;
    }

    .dfl-contact-hero__scroll {
        font-size: 0.53rem;
    }

    .dfl-contact-hero__leaf {
        display: none;
    }

}