:root {
    --dfg-black: #000000;
    --dfg-black-soft: #06101f;
    --dfg-navy: #0a1c37;
    --dfg-red: #e30613;
    --dfg-red-bright: #ff1b27;
    --dfg-white: #ffffff;
    --dfg-light: #f3f5f7;
    --dfg-border: rgba(17, 24, 32, 0.12);
    --dfg-border-dark: rgba(255, 255, 255, 0.12);
    --dfg-text: #111820;
    --dfg-muted: #63707d;
    --dfg-steel: #9aa6b2;
    --dfg-container: 1440px;
    --dfg-radius: 22px;
    --dfg-shadow: 0 32px 80px rgba(4, 8, 13, 0.14);
    --dfg-ease: cubic-bezier(.2,.8,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--dfg-text);
    background: var(--dfg-white);
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; }

a { color: inherit; }

button,
input,
select,
textarea { font: inherit; }

svg { display: block; }

.dfg-container {
    width: min(calc(100% - 64px), var(--dfg-container));
    margin-inline: auto;
}

.dfg-section { padding: 132px 0; }

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 99999;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 12px 18px;
    clip: auto;
    color: var(--dfg-white);
    background: var(--dfg-red);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    color: var(--dfg-red);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 30px;
    height: 2px;
    content: "";
    background: currentColor;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.02;
}

h1 {
    max-width: 1050px;
    margin-bottom: 30px;
    font-size: clamp(3.8rem, 7vw, 7.8rem);
    font-weight: 900;
    letter-spacing: -0.065em;
}

h2 {
    margin-bottom: 28px;
    font-size: clamp(2.65rem, 5vw, 5.3rem);
    font-weight: 900;
    letter-spacing: -0.055em;
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    letter-spacing: -0.03em;
}

p { margin-top: 0; }

.dfg-icon {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    flex: 0 0 auto;
}

.dfg-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.dfg-button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    transition: transform .25s var(--dfg-ease), background .25s var(--dfg-ease), color .25s var(--dfg-ease), border-color .25s var(--dfg-ease);
}

.dfg-button:hover { transform: translateY(-2px); }

.dfg-button--primary {
    color: var(--dfg-white);
    background: var(--dfg-red);
    box-shadow: 0 18px 45px rgba(211, 9, 32, 0.28);
}

.dfg-button--primary:hover { background: var(--dfg-red-bright); }

.dfg-button--ghost {
    color: var(--dfg-white);
    border-color: rgba(255,255,255,.24);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
}

.dfg-button--ghost:hover { background: rgba(255,255,255,.12); }

.dfg-button--dark {
    color: var(--dfg-white);
    background: var(--dfg-black);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--dfg-text);
    text-decoration: none;
    font-weight: 900;
}

.text-link .dfg-icon { color: var(--dfg-red); transition: transform .2s ease; }
.text-link:hover .dfg-icon { transform: translateX(5px); }

.utility-bar {
    color: rgba(255,255,255,.72);
    background: #020304;
    border-bottom: 1px solid rgba(255,255,255,.07);
    font-size: .75rem;
    letter-spacing: .04em;
}

.utility-bar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.utility-bar p { margin: 0; text-transform: uppercase; }

.utility-bar__contact { display: flex; align-items: center; gap: 24px; }

.utility-bar__contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dfg-white);
    text-decoration: none;
}

.utility-bar .dfg-icon { width: 16px; height: 16px; color: var(--dfg-red); }

.site-header {
    position: absolute;
    z-index: 1000;
    top: auto;
    left: 0;
    width: 100%;
    color: var(--dfg-white);
    border-bottom: 1px solid rgba(255,255,255,.12);
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    background: rgba(5,7,10,.94);
    box-shadow: 0 16px 45px rgba(0,0,0,.2);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    min-height: 94px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--dfg-white);
    text-decoration: none;
}

.custom-logo-link { display: inline-flex; }
.custom-logo { width: auto; max-height: 58px; }

.site-brand__mark {
    position: relative;
    width: 58px;
    height: 58px;
    display: grid;
    overflow: hidden;
    place-items: center;
    border: 1px solid rgba(255,255,255,.36);
    border-radius: 15px;
    background: rgba(255,255,255,.06);
}

.site-brand__mark strong {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    letter-spacing: -.03em;
}

.site-brand__flag {
    position: absolute;
    inset: auto -8px 8px auto;
    width: 44px;
    height: 18px;
    opacity: .85;
    transform: rotate(-15deg);
    background:
        linear-gradient(90deg, transparent 28%, #fff 28%, #fff 38%, transparent 38%),
        linear-gradient(0deg, transparent 40%, #fff 40%, #fff 58%, transparent 58%),
        var(--dfg-red);
}

.site-brand__text { display: grid; line-height: .92; }
.site-brand__text strong { font-size: 1rem; letter-spacing: .15em; }
.site-brand__text span { color: rgba(255,255,255,.68); font-size: .72rem; letter-spacing: .26em; }

.site-navigation { justify-self: center; }

.site-navigation .menu {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 36px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-navigation a {
    position: relative;
    color: rgba(255,255,255,.83);
    text-decoration: none;
    font-size: .84rem;
    font-weight: 800;
}

.site-navigation a::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    background: var(--dfg-red);
    transition: transform .2s ease;
}

.site-navigation a:hover { color: var(--dfg-white); }
.site-navigation a:hover::after { transform: scaleX(1); }

.header-cta {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    border-radius: 999px;
    color: var(--dfg-white);
    background: var(--dfg-red);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 900;
}

.header-cta .dfg-icon { width: 18px; height: 18px; }

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    color: var(--dfg-white);
    background: transparent;
}

.menu-toggle > span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
}

.hero {
    --dfg-hero-image: none;
    position: relative;
    min-height: 940px;
    display: flex;
    overflow: hidden;
    align-items: center;
    color: var(--dfg-white);
    background:
        linear-gradient(90deg, rgba(2,4,7,.99) 0%, rgba(2,4,7,.93) 45%, rgba(2,4,7,.50) 100%),
        var(--dfg-hero-image),
        linear-gradient(135deg, #030507, #0b1826 55%, #10151c);
    background-position: center;
    background-size: cover;
}

.hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(0,0,0,.25), transparent 30%, rgba(0,0,0,.78)),
        url("../img/route-grid.svg") center/cover;
}

.hero__media { position: absolute; inset: 0; overflow: hidden; }

.hero__grid {
    position: absolute;
    right: -8%;
    bottom: 12%;
    width: 62%;
    height: 58%;
    opacity: .26;
    transform: perspective(700px) rotateX(66deg) rotateZ(-11deg);
    transform-origin: bottom;
    background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to top, #000, transparent);
}

.hero__glow {
    position: absolute;
    top: 18%;
    right: 2%;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211,9,32,.24), transparent 67%);
    filter: blur(15px);
}

.hero__truck {
    position: absolute;
    right: -2%;
    bottom: 11%;
    width: min(62vw, 980px);
    opacity: .33;
    fill: rgba(255,255,255,.035);
    stroke: rgba(255,255,255,.45);
    stroke-width: 2;
    filter: drop-shadow(0 35px 65px rgba(0,0,0,.8));
}

.hero__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: end;
    gap: 80px;
    padding-top: 150px;
    padding-bottom: 150px;
}

.hero__content { max-width: 1040px; }

.hero .eyebrow { color: #ff3650; }

.hero__lead {
    max-width: 770px;
    margin-bottom: 38px;
    color: rgba(255,255,255,.72);
    font-size: clamp(1.14rem, 2vw, 1.45rem);
    line-height: 1.55;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__panel {
    align-self: end;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    background: rgba(7,11,16,.58);
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
    backdrop-filter: blur(18px);
}

.hero__panel-label {
    margin-bottom: 26px;
    color: rgba(255,255,255,.48);
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .16em;
}

.hero__panel-mark {
    min-height: 148px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 75% 20%, rgba(211,9,32,.35), transparent 42%),
        linear-gradient(135deg, #101a25, #070b10);
}

.hero__panel-mark span {
    font-size: 4.8rem;
    font-weight: 900;
    letter-spacing: -.08em;
    line-height: .8;
}

.hero__panel-mark strong {
    color: #ff4a5f;
    font-size: .9rem;
    letter-spacing: .12em;
}

.hero__panel-lines { display: grid; gap: 12px; color: rgba(255,255,255,.68); font-size: .83rem; }
.hero__panel-lines span { display: flex; align-items: center; gap: 10px; }
.hero__panel-lines i { width: 7px; height: 7px; border-radius: 50%; background: var(--dfg-red); box-shadow: 0 0 18px rgba(211,9,32,.7); }

.hero__rail {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 1px solid rgba(255,255,255,.13);
    background: rgba(2,4,7,.55);
    backdrop-filter: blur(12px);
}

.hero__rail-inner {
    min-height: 76px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
}

.hero__rail span {
    display: grid;
    min-height: 76px;
    place-items: center;
    border-right: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.64);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-align: center;
    text-transform: uppercase;
}

.hero__rail span:first-child { border-left: 1px solid rgba(255,255,255,.1); }

.statement { background: var(--dfg-white); }

.statement__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .75fr);
    gap: 100px;
    align-items: start;
}

.statement__copy {
    padding-top: 54px;
    color: var(--dfg-muted);
    font-size: 1.1rem;
}

.statement__copy p:first-child { color: var(--dfg-text); font-size: 1.35rem; font-weight: 700; }
.statement__copy .text-link { margin-top: 18px; }

.services { background: var(--dfg-light); }

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .55fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 65px;
}

.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 570px; margin-bottom: 8px; color: var(--dfg-muted); font-size: 1.08rem; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 420px;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    padding: 34px;
    border: 1px solid var(--dfg-border);
    border-radius: var(--dfg-radius);
    background: var(--dfg-white);
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: transform .35s var(--dfg-ease), box-shadow .35s var(--dfg-ease), background .35s var(--dfg-ease), color .35s var(--dfg-ease);
}

.service-card::before {
    position: absolute;
    right: -100px;
    bottom: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    content: "";
    background: radial-gradient(circle, rgba(211,9,32,.28), transparent 68%);
    opacity: 0;
    transition: opacity .35s ease;
}

.service-card:hover {
    color: var(--dfg-white);
    transform: translateY(-10px);
    background: var(--dfg-black);
    box-shadow: var(--dfg-shadow);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover p { color: rgba(255,255,255,.64); }
.service-card:hover a { color: var(--dfg-white); }

.service-card__number {
    margin-bottom: 50px;
    color: var(--dfg-steel);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.service-card__icon {
    width: 58px;
    height: 58px;
    display: grid;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 16px;
    color: var(--dfg-red);
    background: rgba(211,9,32,.08);
}

.service-card__icon .dfg-icon { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 18px; }
.service-card p { color: var(--dfg-muted); transition: color .35s ease; }
.service-card a { display: inline-flex; align-items: center; gap: 10px; margin-top: auto; color: var(--dfg-text); text-decoration: none; font-size: .83rem; font-weight: 900; }
.service-card a .dfg-icon { width: 18px; height: 18px; color: var(--dfg-red); }

.operations {
    color: var(--dfg-white);
    background:
        radial-gradient(circle at 20% 10%, rgba(211,9,32,.15), transparent 32%),
        linear-gradient(135deg, #05070a, #0b121a);
}

.operations__grid {
    display: grid;
    grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr);
    gap: 100px;
    align-items: center;
}

.operations__visual {
    min-height: 670px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 28px;
    background:
        linear-gradient(rgba(255,255,255,.025), rgba(255,255,255,.025)),
        repeating-linear-gradient(0deg, transparent, transparent 37px, rgba(255,255,255,.04) 38px),
        repeating-linear-gradient(90deg, transparent, transparent 37px, rgba(255,255,255,.04) 38px);
}

.operations__visual-top,
.operations__visual-bottom { display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.48); font-size: .68rem; font-weight: 900; letter-spacing: .13em; }

.operations__rings {
    position: relative;
    width: min(440px, 100%);
    aspect-ratio: 1;
    display: grid;
    align-self: center;
    place-items: center;
}

.operations__rings > span {
    position: absolute;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
}

.operations__rings > span:nth-child(1) { inset: 0; }
.operations__rings > span:nth-child(2) { inset: 14%; }
.operations__rings > span:nth-child(3) { inset: 28%; border-color: rgba(211,9,32,.7); box-shadow: 0 0 60px rgba(211,9,32,.12); }

.operations__rings::before,
.operations__rings::after {
    position: absolute;
    content: "";
    background: rgba(255,255,255,.13);
}

.operations__rings::before { width: 100%; height: 1px; }
.operations__rings::after { width: 1px; height: 100%; }

.operations__center {
    position: relative;
    z-index: 2;
    display: grid;
    text-align: center;
}

.operations__center strong { font-size: 4.8rem; letter-spacing: -.08em; }
.operations__center small { color: var(--dfg-red); font-weight: 900; letter-spacing: .2em; }

.operations__content .eyebrow { color: #ff4057; }
.operations__content h2 { max-width: 760px; }

.operations__list { display: grid; margin-top: 44px; }

.operations__list article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.12);
}

.operations__list article:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.operations__list > article > span { color: var(--dfg-red); font-size: .75rem; font-weight: 900; }
.operations__list h3 { margin-bottom: 8px; font-size: 1.28rem; }
.operations__list p { margin-bottom: 0; color: rgba(255,255,255,.58); }

.network { overflow: hidden; background: var(--dfg-white); }

.network__grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
    gap: 90px;
    align-items: center;
}

.network__content > p:not(.eyebrow) { max-width: 650px; color: var(--dfg-muted); font-size: 1.08rem; }

.check-list {
    display: grid;
    gap: 14px;
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.check-list .dfg-icon { width: 23px; height: 23px; color: var(--dfg-red); }

.network__map {
    position: relative;
    min-height: 650px;
    display: grid;
    place-items: center;
    border-radius: 30px;
    background:
        radial-gradient(circle at 65% 40%, rgba(211,9,32,.14), transparent 26%),
        linear-gradient(145deg, #09111b, #05070a);
    box-shadow: var(--dfg-shadow);
}

.network__map::before {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    content: "";
    background:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.035) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.035) 40px);
}

.network__map svg { position: relative; z-index: 2; width: min(88%, 620px); }
.map-outline { fill: rgba(255,255,255,.035); stroke: rgba(255,255,255,.55); stroke-width: 2; }
.map-route { fill: none; stroke: #e21a31; stroke-width: 4; stroke-linecap: round; stroke-dasharray: 10 12; }
.map-route--two { stroke: rgba(255,255,255,.34); stroke-width: 2; }
.network__map circle { fill: #f2233a; stroke: #fff; stroke-width: 3; }

.network__badge {
    position: absolute;
    z-index: 3;
    right: 34px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--dfg-white);
}

.network__badge span { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 15px; background: var(--dfg-red); font-weight: 900; }
.network__badge strong { font-size: .82rem; letter-spacing: .05em; }

.leadership { background: var(--dfg-light); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.team-card {
    overflow: hidden;
    border-radius: var(--dfg-radius);
    background: var(--dfg-white);
    box-shadow: 0 18px 55px rgba(4,8,13,.08);
}

.team-card__image {
    position: relative;
    min-height: 420px;
    display: grid;
    overflow: hidden;
    place-items: center;
    color: rgba(255,255,255,.92);
    background:
        radial-gradient(circle at 70% 20%, rgba(211,9,32,.35), transparent 30%),
        linear-gradient(145deg, #121b25, #05070a);
}

.team-card__image::after {
    position: absolute;
    right: -20%;
    bottom: -30%;
    width: 110%;
    height: 70%;
    content: "";
    transform: rotate(-12deg);
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.02);
}

.team-card__image img { width: 100%; height: 100%; object-fit: cover; }
.team-card__image > span { position: relative; z-index: 2; font-size: 9rem; font-weight: 900; letter-spacing: -.1em; }

.team-card__body { padding: 28px 30px 34px; }
.team-card__body p { margin-bottom: 10px; color: var(--dfg-red); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.team-card__body h3 { margin-bottom: 18px; font-size: 2rem; }
.team-card__contact { display: flex; gap: 18px; }
.team-card__contact a { color: var(--dfg-muted); font-size: .82rem; font-weight: 800; text-decoration: none; }

.partners { color: var(--dfg-white); background: var(--dfg-black); }

.partners__intro {
    max-width: 920px;
    margin-bottom: 70px;
}

.partners__intro .eyebrow { color: #ff4057; }
.partners__intro > p:last-child { max-width: 690px; color: rgba(255,255,255,.62); font-size: 1.1rem; }

.partner-types {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--dfg-border-dark);
    border-left: 1px solid var(--dfg-border-dark);
}

.partner-types article {
    min-height: 310px;
    padding: 30px;
    border-right: 1px solid var(--dfg-border-dark);
    border-bottom: 1px solid var(--dfg-border-dark);
}

.partner-types span { color: var(--dfg-red); font-size: .72rem; font-weight: 900; }
.partner-types h3 { margin: 75px 0 18px; }
.partner-types p { color: rgba(255,255,255,.52); font-size: .93rem; }

.partner-logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--dfg-border-dark); }
.partner-logo { min-height: 180px; display: grid; place-items: center; padding: 30px; color: var(--dfg-white); background: var(--dfg-black-soft); text-decoration: none; font-weight: 900; }
.partner-logo img { max-width: 170px; max-height: 75px; object-fit: contain; filter: grayscale(1) brightness(4); }

.vision {
    position: relative;
    overflow: hidden;
    color: var(--dfg-white);
    background:
        linear-gradient(120deg, rgba(211,9,32,.94), rgba(145,0,17,.96)),
        var(--dfg-red);
}

.vision__background {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: .11;
}

.vision__background span { font-size: clamp(17rem, 44vw, 45rem); font-weight: 900; letter-spacing: -.12em; line-height: .7; }

.vision__inner { position: relative; z-index: 2; max-width: 1200px; }
.vision .eyebrow { color: var(--dfg-white); opacity: .75; }
.vision h2 { max-width: 1150px; }
.vision__inner > p:last-child { max-width: 760px; color: rgba(255,255,255,.78); font-size: 1.25rem; }

.career { background: var(--dfg-white); }

.career__grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(460px, 1.15fr);
    gap: 100px;
    align-items: start;
}

.career__content > p:not(.eyebrow) { max-width: 620px; color: var(--dfg-muted); font-size: 1.08rem; }
.career__content .dfg-button { margin-top: 20px; }

.career__jobs { border-top: 1px solid var(--dfg-border); }

.job-row {
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-bottom: 1px solid var(--dfg-border);
    text-decoration: none;
    transition: padding .25s ease, color .25s ease;
}

.job-row:hover { padding-inline: 16px; color: var(--dfg-red); }
.job-row span { color: var(--dfg-muted); font-size: .72rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.job-row h3 { margin: 8px 0 0; }
.job-row .dfg-icon { width: 28px; height: 28px; color: var(--dfg-red); }
.job-row--static { cursor: default; }

.quote {
    color: var(--dfg-white);
    background:
        radial-gradient(circle at 7% 10%, rgba(211,9,32,.2), transparent 25%),
        linear-gradient(135deg, #09131f, #05070a);
}

.quote__grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr);
    gap: 100px;
    align-items: start;
}

.quote .eyebrow { color: #ff4057; }
.quote__intro > p:not(.eyebrow) { max-width: 610px; color: rgba(255,255,255,.62); font-size: 1.08rem; }

.quote__contact { display: grid; gap: 12px; margin-top: 40px; }
.quote__contact a { display: flex; align-items: center; gap: 15px; color: var(--dfg-white); text-decoration: none; }
.quote__contact .dfg-icon { width: 28px; height: 28px; color: var(--dfg-red); }
.quote__contact span { display: grid; font-weight: 900; }
.quote__contact small { color: rgba(255,255,255,.45); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

.quote__form {
    padding: 36px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 28px;
    background: rgba(255,255,255,.055);
    box-shadow: 0 40px 100px rgba(0,0,0,.26);
    backdrop-filter: blur(18px);
}

.dfg-quote-status { margin-bottom: 20px; padding: 14px 16px; border-radius: 10px; font-weight: 800; }
.dfg-quote-status--success { color: #bfffd1; background: rgba(42,180,80,.18); }
.dfg-quote-status--error { color: #ffd0d5; background: rgba(211,9,32,.18); }

.dfg-quote-form { display: grid; gap: 18px; }
.dfg-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dfg-field { display: grid; gap: 8px; }
.dfg-field--full { grid-column: 1 / -1; }
.dfg-field label { color: rgba(255,255,255,.68); font-size: .74rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }

.dfg-field input,
.dfg-field select,
.dfg-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    outline: 0;
    color: var(--dfg-white);
    background: rgba(0,0,0,.22);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.dfg-field select option { color: var(--dfg-text); background: var(--dfg-white); }
.dfg-field textarea { min-height: 130px; resize: vertical; }
.dfg-field input:focus,
.dfg-field select:focus,
.dfg-field textarea:focus { border-color: rgba(240,24,50,.85); box-shadow: 0 0 0 4px rgba(211,9,32,.12); }

.dfg-consent { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.55); font-size: .78rem; }
.dfg-consent input { margin-top: 5px; }
.dfg-hp { position: absolute !important; left: -9999px !important; }

.form-placeholder h3 { margin-bottom: 14px; }
.form-placeholder p { color: rgba(255,255,255,.58); }

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 95px 0 26px;
    color: rgba(255,255,255,.62);
    background: #020304;
}

.site-footer__flare {
    position: absolute;
    top: -280px;
    right: -180px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211,9,32,.18), transparent 67%);
}

.site-footer__top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, .6fr);
    gap: 70px;
    padding-bottom: 70px;
}

.site-footer__brand p { max-width: 460px; margin-top: 24px; }
.site-brand--footer { margin-bottom: 14px; }

.site-footer__column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer__column h2 { margin-bottom: 12px; color: var(--dfg-white); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__column a { color: rgba(255,255,255,.62); text-decoration: none; }
.site-footer__column a:hover { color: var(--dfg-white); }
.site-footer address { font-style: normal; }

.site-footer__bottom {
    position: relative;
    z-index: 2;
    min-height: 68px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .72rem;
    letter-spacing: .05em;
}

.page-hero {
    min-height: 520px;
    display: flex;
    align-items: end;
    padding: 190px 0 90px;
    color: var(--dfg-white);
    background:
        radial-gradient(circle at 80% 30%, rgba(211,9,32,.22), transparent 30%),
        linear-gradient(135deg, #05070a, #0b1724);
}

.page-hero h1 { margin-bottom: 0; font-size: clamp(3.3rem, 7vw, 6.8rem); }
.page-hero > .dfg-container > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.62); }
.page-hero--404 { min-height: 760px; align-items: center; }

.content-narrow { max-width: 900px; }
.content-section { background: var(--dfg-white); }
.content-section h2 { margin-top: 1.5em; font-size: 2.4rem; }
.content-section h3 { margin-top: 1.4em; }
.single-image { overflow: hidden; margin-bottom: 45px; border-radius: 24px; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { padding: 30px; border: 1px solid var(--dfg-border); border-radius: 18px; }
.post-card > p { color: var(--dfg-muted); font-size: .8rem; }
.post-card h2 { font-size: 1.8rem; }
.post-card a { text-decoration: none; }

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--dfg-ease), transform .75s var(--dfg-ease);
}

[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (max-width: 1180px) {
    .site-navigation,
    .header-cta { display: none; }
    .menu-toggle { display: block; justify-self: end; }
    .site-header__inner { grid-template-columns: 1fr auto; }
    .site-navigation {
        position: fixed;
        top: 0;
        right: 0;
        width: min(420px, 100%);
        height: 100vh;
        display: block;
        padding: 120px 35px 40px;
        transform: translateX(100%);
        background: #05070a;
        transition: transform .3s var(--dfg-ease);
    }
    .site-navigation.is-open { transform: translateX(0); }
    .site-navigation .menu { display: grid; gap: 0; }
    .site-navigation li { border-bottom: 1px solid rgba(255,255,255,.12); }
    .site-navigation a { display: block; padding: 20px 0; font-size: 1.2rem; }
    .menu-toggle { position: relative; z-index: 1001; }
    .hero__inner { grid-template-columns: 1fr; }
    .hero__panel { display: none; }
    .hero__truck { right: -18%; width: 88vw; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .operations__grid,
    .network__grid,
    .quote__grid { grid-template-columns: 1fr; }
    .operations__visual { min-height: 560px; }
    .network__map { min-height: 560px; }
    .career__grid { grid-template-columns: 1fr; }
    .site-footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
    .site-footer__column:last-child { grid-column: 2; }
}

@media (max-width: 820px) {
    body { font-size: 16px; }
    .dfg-container { width: min(calc(100% - 36px), var(--dfg-container)); }
    .dfg-section { padding: 92px 0; }
    .utility-bar { display: none; }
    .site-header { top: 0; }
    .site-header__inner { min-height: 78px; }
    .site-brand__mark { width: 50px; height: 50px; }
    .site-brand__text strong { font-size: .86rem; }
    .site-brand__text span { font-size: .62rem; }
    .hero { min-height: 820px; }
    .hero__inner { align-items: center; padding-top: 130px; padding-bottom: 120px; }
    h1 { font-size: clamp(3.15rem, 14vw, 5.5rem); }
    h2 { font-size: clamp(2.5rem, 10vw, 4.2rem); }
    .hero__truck { right: -36%; bottom: 13%; width: 125vw; }
    .hero__rail { display: none; }
    .statement__grid,
    .section-heading { grid-template-columns: 1fr; gap: 20px; }
    .statement__copy { padding-top: 0; }
    .service-grid,
    .team-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 360px; }
    .operations__grid { gap: 55px; }
    .operations__visual { min-height: 470px; }
    .operations__visual-bottom { flex-wrap: wrap; }
    .network__grid { gap: 50px; }
    .network__map { min-height: 470px; }
    .partner-types { grid-template-columns: 1fr 1fr; }
    .partner-types article { min-height: 250px; }
    .partner-types h3 { margin-top: 45px; }
    .quote__form { padding: 24px; }
    .dfg-form-grid { grid-template-columns: 1fr; }
    .site-footer__top { grid-template-columns: 1fr 1fr; }
    .site-footer__brand { grid-column: 1 / -1; }
    .site-footer__column:last-child { grid-column: auto; }
    .post-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .dfg-container { width: min(calc(100% - 28px), var(--dfg-container)); }
    .site-brand__text { display: none; }
    .hero__actions { align-items: stretch; flex-direction: column; }
    .dfg-button { width: 100%; }
    .operations__visual { min-height: 390px; padding: 22px; }
    .operations__center strong { font-size: 3.8rem; }
    .network__map { min-height: 390px; }
    .network__badge { right: 20px; bottom: 20px; }
    .team-card__image { min-height: 330px; }
    .partner-types { grid-template-columns: 1fr; }
    .site-footer__top { grid-template-columns: 1fr; }
    .site-footer__brand,
    .site-footer__column:last-child { grid-column: auto; }
    .site-footer__bottom { align-items: flex-start; flex-direction: column; padding-top: 28px; }
}


/* DFG Premium v3 – integrated image and slogan system */
.hero--photographic {
    min-height: 960px;
    background: #020304;
}
.hero__slides,
.hero__slide,
.hero__slide .dfg-brand-image,
.hero__slide picture,
.hero__slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero__slide {
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img { object-fit: cover; }
.hero__shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2,4,7,.98) 0%, rgba(2,4,7,.88) 42%, rgba(2,4,7,.28) 76%, rgba(2,4,7,.55) 100%),
        linear-gradient(180deg, rgba(0,0,0,.15), transparent 40%, rgba(0,0,0,.75));
}
.hero--photographic .hero__inner { z-index: 3; }
.hero__concept-note {
    max-width: 690px;
    margin-top: 24px;
    color: rgba(255,255,255,.48);
    font-size: .72rem;
    letter-spacing: .04em;
}
.dfg-brand-image {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: inherit;
    background: #0a0e13;
}
.dfg-brand-image picture,
.dfg-brand-image img { display: block; width: 100%; height: 100%; }
.dfg-brand-image img { object-fit: cover; transition: transform .7s var(--dfg-ease); }
.dfg-brand-image:hover img { transform: scale(1.025); }
.dfg-brand-image figcaption {
    position: absolute;
    z-index: 3;
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: rgba(255,255,255,.84);
    background: rgba(5,7,10,.72);
    backdrop-filter: blur(12px);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.media-story { background: #fff; }
.media-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(420px, .8fr);
    gap: 70px;
    align-items: center;
}
.media-story__large {
    min-height: 720px;
    border-radius: 28px;
    box-shadow: var(--dfg-shadow);
}
.media-story__large > .dfg-brand-image { height: 720px; }
.media-story__content > p:not(.eyebrow) { color: var(--dfg-muted); font-size: 1.08rem; }
.media-story__small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 35px;
}
.media-story__small .dfg-brand-image { height: 230px; border-radius: 18px; }
.service-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.service-photo-card {
    overflow: hidden;
    border: 1px solid var(--dfg-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(4,8,13,.08);
}
.service-photo-card__media { height: 390px; border-radius: 0; }
.service-photo-card__body { padding: 32px; }
.service-photo-card__body > span {
    color: var(--dfg-red);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .14em;
}
.service-photo-card__body h3 { margin: 18px 0 14px; font-size: 2rem; }
.service-photo-card__body p { color: var(--dfg-muted); }
.service-photo-card__body a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 900;
}
.operations-photo {
    color: #fff;
    background:
        radial-gradient(circle at 8% 8%, rgba(211,9,32,.16), transparent 28%),
        #05070a;
}
.operations-photo__grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(620px, 1.18fr);
    gap: 80px;
    align-items: center;
}
.operations-photo__content > p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.operations-photo__gallery {
    display: grid;
    gap: 14px;
}
.operations-photo__main { height: 480px; border-radius: 24px; }
.operations-photo__gallery > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.operations-photo__gallery > div .dfg-brand-image { height: 260px; border-radius: 18px; }
.operations-steps { margin: 42px 0 0; padding: 0; list-style: none; }
.operations-steps li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.12);
}
.operations-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.operations-steps > li > span { color: var(--dfg-red); font-size: .75rem; font-weight: 900; }
.operations-steps h3 { margin-bottom: 7px; font-size: 1.25rem; }
.operations-steps p { margin: 0; color: rgba(255,255,255,.55); }
.culture { color: #fff; background: #08121d; }
.section-heading--light > p { color: rgba(255,255,255,.62); }
.section-heading--light h2 { color: #fff; }
.dfg-image-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
}
.dfg-image-gallery__item { min-height: 280px; border-radius: 18px; }
.dfg-image-gallery__item:nth-child(1),
.dfg-image-gallery__item:nth-child(6n + 1) { grid-column: span 7; min-height: 480px; }
.dfg-image-gallery__item:nth-child(2),
.dfg-image-gallery__item:nth-child(6n + 2) { grid-column: span 5; min-height: 480px; }
.dfg-image-gallery__item:nth-child(3),
.dfg-image-gallery__item:nth-child(4),
.dfg-image-gallery__item:nth-child(5),
.dfg-image-gallery__item:nth-child(6) { grid-column: span 3; }
.dfg-image-gallery--vision .dfg-image-gallery__item:nth-child(n) { min-height: 360px; }
.culture__cta { display: flex; justify-content: center; margin-top: 45px; }
.team-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 980px; }
.vision-gallery { background: #f3f5f7; }
.vision-gallery__heading { max-width: 980px; margin-bottom: 60px; }
.vision-gallery__heading > p:last-child { max-width: 760px; color: var(--dfg-muted); font-size: 1.08rem; }
.page-hero--image {
    position: relative;
    overflow: hidden;
    min-height: 720px;
}
.page-hero__background,
.page-hero__background .dfg-brand-image,
.page-hero__background picture,
.page-hero__background img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.page-hero__background img { object-fit: cover; }
.page-hero__shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(2,4,7,.96), rgba(2,4,7,.44));
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__content > p:last-child { max-width: 690px; color: rgba(255,255,255,.68); font-size: 1.15rem; }
.dfg-image-gallery--page { margin-bottom: 90px; }
.page-copy { padding-top: 20px; }

@media (max-width: 1180px) {
    .media-story__grid,
    .operations-photo__grid { grid-template-columns: 1fr; }
    .media-story__large,
    .media-story__large > .dfg-brand-image { min-height: 580px; height: 580px; }
    .service-photo-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
    .hero--photographic { min-height: 860px; }
    .hero__shade { background: linear-gradient(90deg, rgba(2,4,7,.95), rgba(2,4,7,.58)); }
    .media-story__small,
    .service-photo-grid,
    .operations-photo__gallery > div,
    .team-grid--two { grid-template-columns: 1fr; }
    .media-story__large,
    .media-story__large > .dfg-brand-image { min-height: 430px; height: 430px; }
    .service-photo-card__media { height: 300px; }
    .dfg-image-gallery { grid-template-columns: 1fr; }
    .dfg-image-gallery__item:nth-child(n) { grid-column: auto; min-height: 330px; }
}


/* DFG slogan architecture */
.brand-slogan-rail {
    position: relative;
    z-index: 5;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(211,9,32,.17), transparent 35%),
        #05070a;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand-slogan-rail__inner {
    display: grid;
    grid-template-columns: 1.22fr 1fr 1fr;
    min-height: 154px;
}
.brand-slogan-rail__inner > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 42px;
    border-right: 1px solid rgba(255,255,255,.12);
}
.brand-slogan-rail__inner > div:last-child {
    border-right: 0;
}
.brand-slogan-rail__primary {
    position: relative;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: 24px;
}
.brand-slogan-rail__primary::after {
    content: "";
    position: absolute;
    right: 28px;
    bottom: 25px;
    width: 64px;
    height: 4px;
    background: var(--dfg-red);
}
.brand-slogan-rail__primary > span {
    display: grid;
    place-items: center;
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 17px;
    color: #fff;
    background: var(--dfg-red);
    font-weight: 950;
    letter-spacing: -.04em;
}
.brand-slogan-rail strong {
    font-size: clamp(1.18rem, 1.7vw, 1.75rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}
.brand-slogan-rail small {
    margin-bottom: 12px;
    color: rgba(255,255,255,.48);
    font-size: .61rem;
    font-weight: 900;
    letter-spacing: .15em;
}
.site-footer__slogan {
    margin: 24px 0 10px !important;
    color: #fff !important;
    font-size: clamp(1.45rem, 2vw, 2rem) !important;
    font-weight: 900;
    letter-spacing: -.04em;
}
.hero--photographic .hero__content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.hero--photographic .hero__content .eyebrow::before {
    content: "DFG";
    display: grid;
    place-items: center;
    width: 42px;
    height: 28px;
    border-radius: 7px;
    color: #fff;
    background: var(--dfg-red);
    font-size: .62rem;
    letter-spacing: -.02em;
}
.hero--photographic .hero__content h1 {
    max-width: 880px;
    font-size: clamp(4.3rem, 7.8vw, 8.4rem);
    line-height: .91;
    letter-spacing: -.075em;
}
.hero__panel-label {
    color: #fff;
    font-weight: 900;
    letter-spacing: .12em;
}
.quote__intro h2 {
    max-width: 700px;
    font-size: clamp(3.2rem, 5.2vw, 6rem);
    letter-spacing: -.065em;
}

@media (max-width: 980px) {
    .brand-slogan-rail__inner {
        grid-template-columns: 1fr;
    }
    .brand-slogan-rail__inner > div {
        min-height: 122px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .brand-slogan-rail__inner > div:last-child {
        border-bottom: 0;
    }
}
@media (max-width: 620px) {
    .brand-slogan-rail__inner > div {
        padding: 26px 22px;
    }
    .brand-slogan-rail__primary {
        align-items: flex-start;
        flex-direction: column !important;
    }
    .hero--photographic .hero__content h1 {
        font-size: clamp(3.45rem, 16vw, 5.2rem);
    }
}


/* DFG Premium v4 – logo and brand sheet alignment */
.dfg-logo-lockup {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    min-width: 250px;
}
.dfg-logo-lockup__shield {
    width: 56px;
    height: auto;
    flex: 0 0 auto;
    object-fit: contain;
}
.dfg-logo-lockup__divider {
    width: 2px;
    height: 49px;
    flex: 0 0 2px;
    background: var(--dfg-red);
}
.dfg-logo-lockup__wordmark {
    display: grid;
    line-height: .92;
}
.dfg-logo-lockup__wordmark > strong,
.dfg-logo-lockup__wordmark > span {
    display: block;
    font-weight: 950;
    letter-spacing: .035em;
}
.dfg-logo-lockup__wordmark > strong {
    font-size: .98rem;
}
.dfg-logo-lockup__wordmark > span {
    margin-top: 5px;
    color: var(--dfg-red);
    font-size: .94rem;
}
.dfg-logo-lockup--dark .dfg-logo-lockup__wordmark > strong {
    color: #fff;
}
.dfg-logo-lockup--light .dfg-logo-lockup__wordmark > strong {
    color: var(--dfg-navy);
}
.dfg-logo-lockup__wordmark small {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 9px;
    font-size: .55rem;
    font-style: italic;
    font-weight: 800;
    letter-spacing: .02em;
}
.dfg-logo-lockup__wordmark small i {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--dfg-red);
}
.dfg-logo-lockup--dark small {
    color: rgba(255,255,255,.84);
}
.dfg-logo-lockup--light small {
    color: var(--dfg-navy);
}
.site-brand .custom-logo {
    max-width: 280px;
    max-height: 78px;
}
.site-brand--footer .dfg-logo-lockup__shield {
    width: 70px;
}
.site-brand--footer .dfg-logo-lockup__divider {
    height: 62px;
}
.site-brand--footer .dfg-logo-lockup__wordmark > strong {
    font-size: 1.15rem;
}
.site-brand--footer .dfg-logo-lockup__wordmark > span {
    font-size: 1.08rem;
}
.hero--photographic::after {
    position: absolute;
    z-index: 2;
    right: -85px;
    bottom: 0;
    width: min(43vw, 680px);
    height: 145px;
    content: "";
    transform: skewX(-22deg);
    transform-origin: right bottom;
    opacity: .82;
    background:
        linear-gradient(
            165deg,
            transparent 0 12%,
            var(--dfg-red) 12% 32%,
            #111923 32% 47%,
            #ffffff 47% 56%,
            var(--dfg-red) 56% 72%,
            transparent 72%
        );
    pointer-events: none;
}
.brand-slogan-rail__primary > span {
    overflow: hidden;
    color: transparent;
    background:
        #e30613 url("../brand/dfg-shield.png") center / 84% auto no-repeat;
}
.brand-slogan-rail__primary > span::after {
    content: "";
}
.brand-standard-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    color: rgba(255,255,255,.58);
    font-size: .72rem;
    font-weight: 700;
}
.brand-standard-note::before {
    width: 36px;
    height: 3px;
    content: "";
    background: var(--dfg-red);
}
@media (max-width: 1180px) {
    .dfg-logo-lockup {
        min-width: auto;
    }
}
@media (max-width: 620px) {
    .dfg-logo-lockup__shield {
        width: 48px;
    }
    .dfg-logo-lockup__divider {
        height: 43px;
    }
    .dfg-logo-lockup__wordmark > strong {
        font-size: .8rem;
    }
    .dfg-logo-lockup__wordmark > span {
        font-size: .76rem;
    }
    .hero--photographic::after {
        right: -160px;
        width: 92vw;
        height: 90px;
        opacity: .55;
    }
}


/* =========================================================
   DFG Premium 4.1 – kontaktformular på lyse WordPress-sider
   ========================================================= */

/*
 * Formularens oprindelige farver er lavet til den mørke formular
 * på forsiden. Når shortcoden bruges på en almindelig hvid side,
 * skal etiketter, indtastninger og samtykketekst have lyse-sidefarver.
 */
.content-section .dfg-quote-form {
    gap: 22px;
    padding: 34px;
    border: 1px solid #d8dde3;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 65px rgba(10, 28, 55, .10);
}

.content-section .dfg-form-grid {
    gap: 20px 16px;
}

.content-section .dfg-field {
    gap: 9px;
}

.content-section .dfg-field label {
    display: block;
    margin: 0;
    color: var(--dfg-navy);
    font-size: .76rem;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.content-section .dfg-field input,
.content-section .dfg-field select,
.content-section .dfg-field textarea {
    border: 1px solid #cdd3da;
    color: #111820;
    background: #f4f6f8;
    caret-color: var(--dfg-red);
}

.content-section .dfg-field input:hover,
.content-section .dfg-field select:hover,
.content-section .dfg-field textarea:hover {
    border-color: #aeb8c2;
}

.content-section .dfg-field input:focus,
.content-section .dfg-field select:focus,
.content-section .dfg-field textarea:focus {
    border-color: var(--dfg-red);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(227, 6, 19, .11);
}

.content-section .dfg-field input::placeholder,
.content-section .dfg-field textarea::placeholder {
    color: #7c8792;
    opacity: 1;
}

.content-section .dfg-field select {
    color: #111820;
}

.content-section .dfg-field select option {
    color: #111820;
    background: #ffffff;
}

.content-section .dfg-consent {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 11px;
    align-items: start;
    color: #4f5b67;
    font-size: .83rem;
    line-height: 1.55;
}

.content-section .dfg-consent input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--dfg-red);
}

.content-section .dfg-quote-form > .dfg-button {
    width: 100%;
    justify-content: center;
}

.content-section .dfg-quote-status--success {
    color: #12642a;
    background: #e9f8ed;
}

.content-section .dfg-quote-status--error {
    color: #8f0715;
    background: #fdebee;
}

@media (max-width: 700px) {
    .content-section .dfg-quote-form {
        padding: 22px;
        border-radius: 18px;
    }
}
