:root {
    --dh-primary: #fd6e05;
    --dh-primary-dark: #d94a00;
    --dh-secondary: #fc9b0b;
    --dh-accent: #fcc62d;
    --dh-accent-dark: #d99100;
    --dh-warm: #fff7ef;
    --dh-warm-deep: #ffe8d1;
    --dh-navy: #24150c;
    --dh-text: #5f534d;
    --dh-heading: #2c1d16;
    --dh-light: #fff9f4;
    --dh-white: #ffffff;
    --dh-border: #f2dac8;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--dh-text);
    font-family: "Inter", sans-serif;
}

.text-color-primary,
.section-sub-title {
    color: var(--dh-primary) !important;
}

.ht-btn {
    border-color: var(--dh-primary-dark);
    background: var(--dh-primary-dark);
}

.ht-btn:hover,
.ht-btn:focus {
    border-color: var(--dh-primary);
    background: var(--dh-primary);
}

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

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 10000;
    padding: 12px 18px;
    background: var(--dh-white);
    color: var(--dh-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.skip-link:focus {
    top: 20px;
}

.header-bottom-wrap {
    min-height: 88px;
}

.header-bottom-wrap > .container > .row {
    position: relative;
}

.header-right-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 88px;
    gap: 18px;
}

.dh-brand {
    display: inline-flex;
    align-items: center;
    min-height: 68px;
}

.dh-brand img {
    width: auto;
    height: 68px;
    object-fit: contain;
}

.navigation-menu > ul > li > a {
    padding: 33px 16px;
}

.header-right-wrap .navigation-menu > ul > li {
    margin: 0 5px;
}

.navigation-menu > ul > li.active > a,
.navigation-menu > ul > li:hover > a {
    color: var(--dh-primary);
}

.navigation-menu .submenu {
    width: 325px;
}

.navigation-menu .submenu li a {
    white-space: normal;
    line-height: 1.45;
}

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

.dh-header-email {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(253, 110, 5, .22);
    border-radius: 50%;
    background: #fff7ef;
    color: var(--dh-primary);
    font-size: 18px;
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.dh-header-email:hover,
.dh-header-email:focus-visible {
    border-color: var(--dh-primary);
    background: var(--dh-primary);
    color: var(--dh-white);
    transform: translateY(-2px);
}

.dh-header-cta {
    height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 19px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.dh-header-cta i {
    font-size: 11px;
}

.dh-hero {
    position: relative;
    min-height: 710px;
    overflow: hidden;
    color: var(--dh-white);
    background: var(--dh-navy) url("../images/hero/dh-technology-home-hero.webp") center center / cover no-repeat;
    background-color: var(--dh-primary);
    background-blend-mode: luminosity;
}

.dh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(31, 16, 8, .96) 0%, rgba(76, 27, 2, .88) 35%, rgba(65, 24, 4, .38) 64%, rgba(35, 17, 8, .12) 100%);
}

.dh-hero-row {
    min-height: 710px;
}

.dh-hero-content {
    padding: 70px 0;
}

.dh-eyebrow {
    margin-bottom: 22px;
    color: #ffd39d;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.dh-hero h1 {
    margin-bottom: 25px;
    color: var(--dh-white);
    font-size: clamp(42px, 5.4vw, 72px);
    font-weight: 700;
    line-height: 1.08;
}

.dh-hero-lead {
    max-width: 720px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    line-height: 1.8;
}

.dh-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.dh-btn-outline {
    border: 1px solid rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .08);
}

.dh-btn-outline:hover {
    border-color: var(--dh-white);
    background: var(--dh-white);
    color: var(--dh-primary);
}

.dh-btn-accent {
    background: var(--dh-accent);
    color: var(--dh-navy);
}

.dh-btn-accent:hover {
    background: var(--dh-white);
    color: var(--dh-primary);
}

.section-intro {
    max-width: 760px;
    margin: 20px auto 0;
    font-size: 17px;
}

.dh-content-block .heading {
    margin-bottom: 25px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
}

.dh-content-block p {
    font-size: 16px;
    line-height: 1.85;
}

.dh-about-section {
    position: relative;
    overflow: hidden;
    background: var(--dh-white);
}

.dh-about-section::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 600px;
    left: -80px;
    bottom: -120px;
    background: url("../images/patterns/mitech-home-infotechno-section-company-bg.webp") left bottom / contain no-repeat;
    opacity: .75;
    pointer-events: none;
}

.dh-about-section::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 240px;
    top: 45px;
    right: 1%;
    background: url("../images/patterns/home-reputable-success-about-shape.webp") center / contain no-repeat;
    filter: sepia(1) saturate(8) hue-rotate(345deg) brightness(1.05);
    opacity: .55;
    pointer-events: none;
}

.dh-about-section .container {
    position: relative;
    z-index: 1;
}

.dh-visual-panel {
    position: relative;
    overflow: hidden;
    min-height: 510px;
    padding: 60px 45px;
    border-radius: 10px;
    background: linear-gradient(145deg, #24150c 0%, #fd6e05 100%);
    box-shadow: 0 25px 70px rgba(253, 110, 5, .25);
}

.dh-visual-panel::before,
.dh-visual-panel::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(252, 198, 45, .5);
    border-radius: 50%;
}

.dh-visual-panel::before {
    width: 340px;
    height: 340px;
    right: -150px;
    top: -100px;
}

.dh-visual-panel::after {
    width: 240px;
    height: 240px;
    left: -100px;
    bottom: -80px;
}

.dh-visual-kicker {
    position: relative;
    z-index: 1;
    color: #ffd39d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dh-visual-panel h2 {
    position: relative;
    z-index: 1;
    max-width: 390px;
    margin: 24px 0 45px;
    color: var(--dh-white);
    font-size: 42px;
    line-height: 1.25;
}

.dh-visual-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dh-visual-grid div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 82px;
    padding: 18px;
    border: 1px solid rgba(252, 198, 45, .28);
    border-radius: 8px;
    background: rgba(255, 255, 255, .09);
    color: var(--dh-white);
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.dh-visual-grid i {
    color: #ffe0b2;
    font-size: 22px;
}

.dh-services-section {
    position: relative;
    overflow: hidden;
    background: var(--dh-warm);
}

.dh-services-section::before,
.dh-services-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(252, 198, 45, .16);
    pointer-events: none;
}

.dh-services-section::before {
    width: 390px;
    height: 390px;
    left: -170px;
    top: -160px;
}

.dh-services-section::after {
    width: 270px;
    height: 270px;
    right: -100px;
    bottom: -120px;
}

.dh-services-section .container {
    position: relative;
    z-index: 1;
}

.dh-services-grid {
    padding-bottom: 24px;
}

.dh-service-card {
    position: relative;
    height: 100%;
    padding: 40px 34px 58px;
    border: 0;
    border-radius: 8px;
    background: var(--dh-white);
    box-shadow: 0 12px 40px rgba(42, 37, 33, .08);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.dh-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(63, 45, 32, .14);
}

.dh-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 25px;
    border-radius: 16px;
    background: rgba(253, 110, 5, .1);
    color: var(--dh-primary);
    font-size: 28px;
}

.dh-service-card h3 {
    min-height: 64px;
    margin-bottom: 16px;
    color: var(--dh-heading);
    font-size: 23px;
    line-height: 1.38;
}

.dh-service-card p {
    min-height: 125px;
    margin-bottom: 22px;
    line-height: 1.75;
}

.dh-service-card .dh-card-arrow {
    position: absolute;
    left: 50%;
    bottom: -28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--dh-accent);
    color: var(--dh-navy);
    box-shadow: 0 9px 24px rgba(217, 145, 0, .3);
    transform: translateX(-50%);
    transition: background .25s ease, transform .25s ease;
}

.dh-service-card .dh-card-arrow i {
    margin: 0;
    transition: transform .25s ease;
}

.dh-service-card .dh-card-arrow:hover {
    background: var(--dh-primary);
    transform: translateX(-50%) translateY(-3px);
}

.dh-service-card .dh-card-arrow:hover i {
    transform: translateX(3px);
}

.dh-industries-section {
    position: relative;
    overflow: hidden;
    background: var(--dh-white);
}

.dh-industries-section::before {
    content: "";
    position: absolute;
    width: 720px;
    height: 590px;
    left: -40px;
    bottom: -180px;
    background: url("../images/patterns/mitech-home-infotechno-case-study-section-bg.webp") left bottom / contain no-repeat;
    opacity: .62;
    pointer-events: none;
}

.dh-industries-section .container {
    position: relative;
    z-index: 1;
}

.dh-industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.dh-industry-grid div {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 90px;
    padding: 22px 24px;
    border: 1px solid #f2dac8;
    border-radius: 7px;
    background: var(--dh-white);
    color: var(--dh-heading);
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(88, 49, 25, .05);
}

.dh-industry-grid div:last-child {
    grid-column: 1 / -1;
}

.dh-industry-grid i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--dh-accent);
    color: var(--dh-navy);
    font-size: 20px;
    text-align: center;
}

.dh-why-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #211209 0%, #873000 55%, #fd6e05 100%);
}

.dh-why-section::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    right: -250px;
    border: 80px solid rgba(252, 198, 45, .1);
    border-radius: 50%;
}

.dh-content-light p {
    color: rgba(255, 255, 255, .75);
}

.dh-why-section .section-sub-title,
.dh-final-cta .section-sub-title {
    color: #ffe0b2;
}

.dh-benefit-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.dh-benefit-grid div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 66px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 7px;
    background: rgba(255, 255, 255, .08);
    color: var(--dh-white);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.dh-benefit-grid i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--dh-accent);
    color: var(--dh-navy);
    font-size: 11px;
}

.dh-process-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 20%, rgba(252, 198, 45, .18) 0 92px, transparent 93px),
        radial-gradient(circle at 96% 88%, rgba(253, 110, 5, .08) 0 145px, transparent 146px),
        var(--dh-warm);
}

.dh-process-section .container {
    position: relative;
    z-index: 1;
}

.dh-process-row {
    counter-reset: process;
}

.dh-process-card {
    position: relative;
    height: 100%;
    min-height: 285px;
    padding: 35px 28px;
    border: 1px solid rgba(252, 198, 45, .35);
    border-radius: 8px;
    background: var(--dh-white);
}

.dh-process-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    border-radius: 0 0 8px 8px;
    background: var(--dh-accent);
    transition: width .3s ease;
}

.dh-process-card:hover::after {
    width: 100%;
}

.dh-process-card > span {
    display: block;
    margin-bottom: 36px;
    color: rgba(252, 198, 45, .55);
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
}

.dh-process-card h3 {
    margin-bottom: 14px;
    font-size: 24px;
}

.dh-process-card p {
    line-height: 1.75;
}

.dh-commitment {
    position: relative;
    overflow: hidden;
    background: var(--dh-light);
}

.dh-commitment::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 270px;
    top: 45px;
    left: 2%;
    background: url("../images/patterns/home-reputable-success-about-shape.webp") center / contain no-repeat;
    filter: sepia(1) saturate(8) hue-rotate(345deg) brightness(1.05);
    opacity: .42;
    pointer-events: none;
}

.dh-commitment .container {
    position: relative;
    z-index: 1;
}

.dh-focus-wrap {
    padding: 42px;
    border-radius: 9px;
    background: var(--dh-white);
    box-shadow: 0 18px 55px rgba(107, 55, 20, .09);
}

.dh-focus-wrap h3 {
    margin-bottom: 12px;
    font-size: 28px;
}

.dh-focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.dh-focus-grid span {
    padding: 13px 14px;
    border-left: 3px solid var(--dh-accent);
    background: var(--dh-light);
    color: var(--dh-heading);
    font-size: 13px;
    font-weight: 600;
}

.dh-future {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 96% 20%, rgba(252, 198, 45, .2) 0 115px, transparent 116px),
        linear-gradient(110deg, #ffffff 0%, #f8f5f2 100%);
}

.dh-future::before {
    content: "";
    position: absolute;
    width: 570px;
    height: 470px;
    right: -170px;
    bottom: -250px;
    background: url("../images/patterns/mitech-home-infotechno-case-study-section-bg.webp") center / contain no-repeat;
    opacity: .45;
    pointer-events: none;
}

.dh-future .container {
    position: relative;
    z-index: 1;
}

.dh-final-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(115deg, #211209 0%, #bd4500 58%, #fd6e05 100%);
}

.dh-final-cta::before {
    content: "";
    position: absolute;
    width: 670px;
    height: 560px;
    left: -220px;
    bottom: -330px;
    background: url("../images/patterns/mitech-home-infotechno-case-study-section-bg.webp") center / contain no-repeat;
    filter: brightness(0) invert(1);
    opacity: .12;
    pointer-events: none;
}

.dh-final-cta > .container {
    z-index: 1;
}

.dh-home-form-card {
    padding: 31px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 12px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 60px rgba(37, 16, 5, .23);
}

.dh-home-form-card h3 {
    margin: 0 0 5px;
    color: var(--dh-heading);
    font-size: 25px;
    line-height: 1.3;
}

.dh-home-form-card > p {
    margin: 0;
    color: var(--dh-text);
    font-size: 13px;
    line-height: 1.65;
}

.dh-home-contact-form.dh-contact-form {
    margin-top: 19px;
}

.dh-home-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.dh-home-field-full {
    grid-column: 1 / -1;
}

.dh-home-contact-form.dh-contact-form label {
    margin-bottom: 6px;
    font-size: 11px;
}

.dh-home-contact-form.dh-contact-form input,
.dh-home-contact-form.dh-contact-form select {
    height: 43px;
    padding: 0 10px;
    font-size: 12px;
}

.dh-home-contact-form.dh-contact-form textarea {
    min-height: 82px;
    padding: 10px;
    font-size: 12px;
}

.dh-home-submit {
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.dh-home-form-card .dh-form-status {
    margin-top: 14px;
    font-size: 12px;
}

.dh-cta-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--dh-accent);
    opacity: .22;
}

.dh-cta-orb-one {
    width: 210px;
    height: 210px;
    top: -95px;
    right: 10%;
}

.dh-cta-orb-two {
    width: 70px;
    height: 70px;
    right: 29%;
    bottom: 34px;
}

.dh-contact {
    background: #fff8f2;
}

.dh-contact-list {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.dh-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--dh-heading);
}

.dh-contact-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: rgba(253, 110, 5, .1);
    color: var(--dh-primary);
}

.dh-contact-list span,
.dh-contact-list a {
    padding-top: 9px;
    color: var(--dh-heading);
}

.dh-form-card {
    padding: 45px;
    border-radius: 9px;
    background: var(--dh-white);
    box-shadow: 0 20px 60px rgba(93, 50, 24, .1);
}

.dh-form-card h3 {
    margin-bottom: 8px;
    font-size: 30px;
}

.dh-contact-form {
    margin-top: 25px;
}

.dh-contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--dh-heading);
    font-size: 13px;
    font-weight: 700;
}

.dh-contact-form label span {
    color: #d33232;
}

.dh-contact-form input,
.dh-contact-form select,
.dh-contact-form textarea {
    width: 100%;
    border: 1px solid var(--dh-border);
    border-radius: 5px;
    background: #fffaf6;
    color: var(--dh-heading);
}

.dh-contact-form input,
.dh-contact-form select {
    height: 52px;
    padding: 0 15px;
}

.dh-contact-form textarea {
    padding: 14px 15px;
    resize: vertical;
}

.dh-contact-form input:focus,
.dh-contact-form select:focus,
.dh-contact-form textarea:focus {
    outline: 0;
    border-color: var(--dh-primary);
    box-shadow: 0 0 0 3px rgba(253, 110, 5, .1);
}

.dh-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.dh-form-status {
    display: none;
    margin-top: 18px;
    padding: 12px 15px;
    border-radius: 5px;
}

.dh-form-status.is-success,
.dh-form-status.is-error {
    display: block;
}

.dh-form-status.is-success {
    border: 1px solid #bfe5c8;
    background: #edf9f0;
    color: #19652a;
}

.dh-form-status.is-error {
    border: 1px solid #efc6c6;
    background: #fff0f0;
    color: #9d2929;
}

.dh-footer {
    padding: 66px 0 0;
    background: #211209;
    color: rgba(255, 255, 255, .65);
}

.dh-brand-footer img {
    filter: none;
    height: 57px;
}

.dh-brand-footer {
    min-height: 0;
    padding: 7px 11px;
    border-radius: 8px;
    background: var(--dh-white);
}

.dh-footer p {
    max-width: 360px;
    margin: 13px 0 0;
    line-height: 1.65;
}

.dh-footer-brand-column p {
    max-width: 260px;
    font-size: 14px;
}

.dh-footer h3 {
    margin-bottom: 22px;
    color: var(--dh-white);
    font-size: 17px;
}

.dh-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dh-footer li {
    margin-bottom: 11px;
}

.dh-footer li a,
.dh-footer-bottom a {
    color: rgba(255, 255, 255, .65);
}

.dh-footer li a:hover,
.dh-footer-bottom a:hover {
    color: var(--dh-white);
}

.dh-footer .dh-footer-contact-list {
    display: grid;
    gap: 10px;
    margin-top: 17px;
}

.dh-footer .dh-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.dh-footer .dh-footer-contact-list i {
    width: 15px;
    flex: 0 0 15px;
    margin-top: 3px;
    color: var(--dh-secondary);
    text-align: center;
}

.dh-footer .dh-footer-contact-list a {
    overflow-wrap: anywhere;
}

.dh-footer-contact-column .dh-footer-contact-list {
    margin-top: 0;
}

.dh-footer-contact-column .dh-socials {
    margin-top: 18px;
}

.dh-footer .dh-footer-service-list {
    columns: 2;
    column-gap: 24px;
}

.dh-footer .dh-footer-service-list li {
    break-inside: avoid;
}

.dh-socials {
    display: flex;
    gap: 10px;
}

.dh-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: var(--dh-white);
}

.dh-socials a:hover {
    border-color: var(--dh-primary);
    background: var(--dh-primary);
}

.dh-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding: 21px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
}

@media (min-width: 1200px) {
    .header-right-wrap .navigation-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.mobile-menu-overlay .dh-brand img {
    height: 58px;
}

.offcanvas-navigation > ul > li > a {
    font-weight: 600;
}

.dh-mobile-actions {
    display: grid;
    gap: 13px;
    margin-top: 30px;
}

.dh-mobile-contact {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    line-height: 1;
}

.dh-mobile-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--dh-white);
    font-size: 14px;
    font-weight: 600;
}

.dh-mobile-email:hover {
    color: var(--dh-accent);
}

@media (max-width: 1199px) {
    .header-bottom-wrap {
        min-height: 78px;
    }

    .header-right-wrap {
        min-height: 78px;
        gap: 18px;
    }

    .dh-brand img {
        height: 60px;
    }

    .dh-hero,
    .dh-hero-row {
        min-height: 650px;
    }

    .dh-hero {
        background-position: 58% center;
    }
}

@media (max-width: 991px) {
    .dh-hero,
    .dh-hero-row {
        min-height: 620px;
    }

    .dh-hero {
        background-position: 66% center;
    }

    .dh-hero-overlay {
        background: linear-gradient(90deg, rgba(31, 16, 8, .97) 0%, rgba(76, 27, 2, .87) 62%, rgba(35, 17, 8, .55) 100%);
    }

    .dh-visual-panel {
        min-height: auto;
    }

    .dh-service-card h3,
    .dh-service-card p {
        min-height: auto;
    }

    .dh-home-form-card {
        max-width: 620px;
    }

    .dh-footer {
        padding-top: 58px;
    }
}

@media (max-width: 767px) {
    .header-bottom-wrap {
        min-height: 72px;
    }

    .header-right-wrap {
        min-height: 72px;
        gap: 14px;
    }

    .dh-header-email {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .dh-brand img {
        height: 54px;
    }

    .dh-hero,
    .dh-hero-row {
        min-height: 660px;
    }

    .dh-hero {
        background-position: 70% center;
    }

    .dh-hero-overlay {
        background: linear-gradient(90deg, rgba(31, 16, 8, .98) 0%, rgba(57, 24, 8, .92) 100%);
    }

    .dh-hero-content {
        padding: 65px 0;
    }

    .dh-eyebrow {
        font-size: 13px;
    }

    .dh-hero h1 {
        font-size: 43px;
    }

    .dh-hero-lead {
        font-size: 16px;
    }

    .dh-hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .dh-content-block .heading {
        font-size: 34px;
    }

    .dh-visual-panel {
        padding: 42px 28px;
    }

    .dh-visual-panel h2 {
        font-size: 34px;
    }

    .dh-visual-grid,
    .dh-industry-grid,
    .dh-benefit-grid,
    .dh-focus-grid {
        grid-template-columns: 1fr;
    }

    .dh-industry-grid div:last-child {
        grid-column: auto;
    }

    .dh-focus-wrap,
    .dh-form-card {
        padding: 30px 24px;
    }

    .dh-home-form-card {
        padding: 25px 21px;
    }

    .dh-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .dh-hero h1 {
        font-size: 38px;
    }

    .dh-hero-actions .ht-btn {
        width: 100%;
        text-align: center;
    }

    .dh-service-card {
        padding: 30px 25px;
    }

    .dh-home-form-grid {
        grid-template-columns: 1fr;
    }

    .dh-home-submit {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
