/* Defense Facelift */
:root {
  --teal:     #00C8C8;
  --teal-dim: #007b7b;
  --bg:       #0a0e12;
  --bg2:      #0e1318;
  --text:     #c8d4dc;
  --label:    #00C8C8;
  --line-w:   2px;
  --track-cx: 50%; /* centre of track */
}

.defense-facelift .df.container.defense {
  background: #000;
  color: #fff;
}

.defense-facelift .df .hero:after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 78.93%);
}

.defense-facelift .df .hero a:hover {
    background: #99FFFE;
}

.defense-facelift .df .gradient-grouped-holder {
  background: #000;
}

.defense-facelift .df .gradient-grouped-holder .lottie-globe:before {
  background: linear-gradient(90deg, #000 0%, transparent 83%);
}

.defense-facelift .df .gradient-grouped-holder .lottie-globe:after {
  background: linear-gradient(270deg, #000 0%, transparent 83%);
}

.defense-facelift .df .lottie-globe-holder:after {
  background: linear-gradient(to top, #000 0%, transparent 73%);
}

.defense-facelift .df .gradient-grouped-holder:after {
  background: linear-gradient(to top, #000 0%, transparent 93%);
}

.defense-facelift .df .hero h1 {
  max-width: unset;
}

.defense-facelift .df .hero h1,
.defense-facelift .df .stats h3,
.defense-facelift .df .stats .stats-text--text p,
.defense-facelift .df-benefits h2 {
  text-transform: uppercase;
  font-weight: 800;
}

.defense-facelift .df .stats .stats-text--text p {
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 10%;
}

.defense-facelift .df .stats h3 {
  font-size: 25px;
  letter-spacing: 2%;
}

.defense-facelift .df .stats .stats-text--heading p {
  background: linear-gradient(180deg, #505050 22.41%, #000000 114.66%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 116px;
  letter-spacing: -2%;
  line-height: 100%;
}

.defense-facelift .df-benefits {
  padding-top: 50px;
}

.defense-facelift .df-benefits h2 {
  text-transform: uppercase;
  color: #fff;
  max-width: 730px;
  line-height: 120%;
}

.defense-facelift .df-benefits .benefits-text--wrapper h4,
.defense-facelift .df-benefits .benefits-text--text p {
  color: #fff;
}

.defense-facelift .df-benefits .benefits-text--box-single {
  flex-flow: column-reverse;
  max-width: 574px;
  margin-bottom: 50px !important;
}

.defense-facelift .df-benefits .benefits-text--box-single:nth-child(odd) {
  align-items: flex-start;
}

.defense-facelift .df-benefits .benefits-text--box-single:nth-child(even) {
  align-items: flex-end;
  margin-right: 0;
  margin-left: auto;
}

.defense-facelift .df-benefits .benefits-text--wrapper {
  max-width: unset;
}

.defense-facelift .df-benefits .benefits-text--media-wrapper {
  width: 574px;
  margin-top: 30px;
}

.defense-facelift .df-benefits .benefits-text--box-single .benefits-text--video {
  max-width: unset !important;
}

.defense-facelift .df-benefits .benefits-text--wrapper h4 {
  font-size: 40px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0;
}

.defense-facelift .df-benefits .benefits-text--wrapper p.pre-heading {
  font-family: Plus Jakarta Sans;
  font-weight: 800;
  color: #99FFFE;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 10%;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.defense-facelift .benefits-text--boxes {
  position: relative;
}

.defense-facelift .df-benefits .benefits-text--box-single .benefits-text--wrapper {
  top: 0 !important;
}

.defense-facelift .df-benefits .benefits-text--box-single:last-child .benefits-text--media-wrapper .benefits-text--image {
  position: relative;
}

.defense-facelift .df-benefits .benefits-text--box-single:nth-child(2) {
  margin-top: -110px;
}

/* The fixed-width track column in the centre */
.defense-facelift .benefits-track {
  position: absolute;
  top: 200px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px; /* visual reference only */
}

/* Growing line — dotted track, scroll-driven via animation-timeline */
.defense-facelift .track-line {
  position: absolute;
  top: 0; left: 0;
  width: 1px;          /* slightly wider so dots read clearly */
  height: 100%;

  /* repeating dots: 3px dot, 7px gap → 10px period */
  /* background-image: repeating-linear-gradient(
    to bottom,
    var(--teal)   0px,
    var(--teal)   3px,
    transparent   3px,
    transparent   10px
  ); */
  background-image: repeating-linear-gradient(    to bottom,    gray   2px,    var(--teal)   3px,    var(--teal)   3px,    transparent   10px  );
  /* fade in at top, fade out at bottom */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 26%,
    black 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 26%,
    black 94%,
    transparent 100%
  );

  transform-origin: top center;
  transform: scaleY(0);

  /* scroll-driven animation — Chrome/Edge 115+ */
  animation: grow-line linear both;
  animation-timeline: scroll(root block);
  animation-range: entry 0% exit 100vh;
}

@keyframes grow-line {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* Safari / Firefox fallback: just show the full line statically */
@supports not (animation-timeline: scroll()) {
  .defense-facelift .track-line { transform: scaleY(1); opacity: .35; }
  .defense-facelift .diamond { display: none; }
}

/* Diamond — sticky so it rides at the leading edge of the drawn line */
.defense-facelift .diamond-wrap {
  position: sticky;
  top: 50vh;
  width: 0; /* doesn't take space */
  height: 0;
  /* horizontally centred by parent track */
}
.defense-facelift .diamond {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--teal);
  box-shadow: 0 0 16px var(--teal), 0 0 32px rgba(0,200,200,.4);
}
/* outer ring pulse */
.defense-facelift .diamond::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(0,200,200,.5);
  transform: rotate(0deg); /* already rotated via parent */
  animation: ring-pulse 2s ease-in-out infinite;
}


.defense-facelift .df .solutions h2 {
    text-transform: uppercase;
    color: #fff;
    font-family: "Plus Jakarta Sans";
    font-size: 60px;
    font-weight: 800;
    line-height: 120%;
}

.defense-facelift .df .solutions .solutions-text--boxes {
    grid-template-columns: 1fr 1fr 1fr;
}

.defense-facelift .df .solutions .solutions-text--box-single .solutions-text--image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.defense-facelift .df .solutions .solutions-text--box-single:after {
    background: none;
}

.defense-facelift .df .solutions .solutions-text--heading h4 {
    font-size: 25px;
    font-weight: 500;
    line-height: 130%;
}

.defense-facelift .df .solutions .solutions-text--wrapper {
    width: auto;
}

/* .defense-facelift .solutions-text--heading {
    margin-bottom: 0;
    margin-top: auto;
} */

.defense-facelift .df .solutions .solutions-text--box-single .solutions-text--image:after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0.05%, #000 100%);;
}

.defense-facelift .df .solutions .solutions-text--box-single .solutions-text--image:after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0.05%, #000 100%)
}

.defense-facelift .df .solutions .solutions-text--box-single {
    overflow: visible;
}

.defense-facelift .df .solutions .solutions-text--box-single:before {
    content: '';
    width: calc(100% + 2px);
    height: 100%;
    left: -0.5px;
    top: -0.5px;
    border-radius: 10px;
    /* border: 1px solid #99FFFE; */
    filter: blur(0.6180469393730164px);
    position: absolute;
    /* inset: -2px 0 0 -2px; */
    z-index: -1;
    /* background: linear-gradient(160deg, rgba(153, 255, 254, 0.8) 0%, rgba(153, 255, 254, 0.13) 80%); */
    background: linear-gradient(160deg, rgba(153, 255, 254, 0.8) 0%, rgba(153, 255, 254, 0.13) 50%, transparent 60%);
}


@keyframes ring-pulse {
  0%, 100% { opacity: .5; transform: rotate(45deg) scale(1); }
  50%       { opacity: 1;  transform: rotate(45deg) scale(1.3); }
}


/* =============================================================
   SYSTEM FLOW DIAGRAM
   Section: df-system-flow
   Partial: /templates/partials/defense-system-flow.php
   ============================================================= */

/* ---- Section wrapper ---- */
.defense-facelift .df .df-system-flow {
    padding: 100px 0 80px;
    position: relative;
    overflow: visible;
}

.defense-facelift .sf-info-box {
    max-width: 574px;
    margin: 0 auto 10px;
    text-align: center;
    display: flex;
    flex-flow: column wrap;
}

.defense-facelift .df .sf-section-heading {
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
    font-family: "Plus Jakarta Sans";
    font-size: 40px;
    font-weight: 600;
    line-height: 130%; /* 52px */
}

.defense-facelift .sf-cta-button {
    display: block;
    margin: 0 auto 60px;
    border-color: #99FFFE;
}

.defense-facelift .sf-cta-button:hover {
    background: #99FFFE;
}

.defense-facelift .sf-section-pre-heading {
    color: #99FFFE;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-weight: 800;
    line-height: 140%; /* 19.6px */
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.defense-facelift .sf-section-text {
    margin-bottom: 30px;
}

.defense-facelift .sf-section-text p {
    color: #FFF;
    text-align: center;
    font-family: "DM Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 150%; /* 27px */
}

/* ---- Diagram container ---- */
.defense-facelift .df .sf-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    position: relative;    /* anchor for the .sf-lines SVG overlay */
    overflow: visible;     /* let SVG paths extend slightly outside bounds */
}

/* ---- Tiers ---- */
.defense-facelift .df .sf-tier {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    gap: 80px;
    position: relative;
    z-index: 1; /* sit above the SVG line overlay */
}

.defense-facelift .df .sf-tier--top {
    justify-content: center;
}

.defense-facelift .df .sf-tier--mid {
    justify-content: space-around;
    /* max-width: 900px; */
    margin-top: 20px;  /* breathing room between AMOS and mid, so lines have space */
    /* padding-top: 80px; */
}

.defense-facelift .df .sf-tier--bottom {
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin-top: 80px;  /* breathing room between mid and bottom tiers */
    position: relative;
    z-index: 1; /* sit above SVG lines */
}

/* ---- Bottom-group: single node, multiple asset images in a row ---- */
.defense-facelift .df .sf-node--bottom-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.defense-facelift .df .sf-assets-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 32px;
    width: 100%;
    justify-content: space-between;
}

.defense-facelift .df .sf-asset img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
}

/* ---- Individual node ---- */
.defense-facelift .df .sf-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 1 auto;
}

.defense-facelift .df .sf-node--top {
    max-width: 880px;
}

.defense-facelift .df .sf-node--mid {
    max-width: 574px;
    flex: 1 1 0;
    padding-top: 30px;
}

.defense-facelift .sf-node.sf-node--mid.sf-node--right {
    padding-top: 40px;
}

.defense-facelift .df .sf-node--bottom {
    max-width: 280px;
    flex: 1 1 0;
}

/* ---- Node media (illustration) ---- */
.defense-facelift .df .sf-node__media {
    width: 100%;
    display: flex;
    justify-content: center;
    /* margin-bottom: 32px; */
}

.defense-facelift .df .sf-node--top .sf-node__media img {
    max-width: 880px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* border: 1px solid rgba(153, 255, 254, 0.2); */
}

.defense-facelift .df .sf-node--mid .sf-node__media img {
    max-width: 574px;
    width: 100%;
    height: auto;
    height: 404px;
    width: auto;
}

.defense-facelift .df .sf-node--bottom .sf-node__media img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

/* ---- Node label text ---- */
.defense-facelift .df .sf-node__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #000;
    padding: 24px 0;
    position: relative;
    top: -10px;
}

.defense-facelift .df .sf-node__label h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

.defense-facelift .df .sf-node--bottom .sf-node__label h3 {
    font-size: 28px;
}

.defense-facelift .df .sf-node__label p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #c2c2c2;
    margin: 0;
    max-width: 520px;
}

.defense-facelift .df .sf-node--mid .sf-node__label p,
.defense-facelift .df .sf-node--bottom .sf-node__label p {
    max-width: 360px;
    font-size: 16px;
}

/* ---- Plus button ---- */
.defense-facelift .df .sf-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    /* border: 1.5px solid #99fffe; */
    border: none;
    border-radius: 50%;
    color: #99fffe;
    background: transparent;
    cursor: pointer;
    font-size: 44px;
    line-height: 1;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.defense-facelift .df .sf-plus:hover {
    /* background: rgba(153, 255, 254, 0.15);
    border: 1px solid #99fffe; */
    /* padding: 6px; */
    transform: rotate(90deg);
}

/* ---- Full-diagram SVG overlay (paths drawn by JS) ---- */
.defense-facelift .df .sf-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 0;
}

.defense-facelift .df svg.sf-lines path:nth-child(3) {
    display: none; /* hide the middle line for now since it doesn't look good with the new layout */
}

/*
 * TRACK: permanently-visible dim guide line so the path is
 * always readable even between animation loops.
 */
.defense-facelift .df .sf-track {
    stroke: rgba(153, 255, 254, 0.13);
    stroke-width: 0.85px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/*
 * HIGHLIGHT: a short (~70 px) bright segment that travels
 * along the track from bottom to top (bottom-up data flow).
 *
 * stroke-dasharray is set inline by JS as "70px, Xpx" where X = totalLen - 70.
 * stroke-dashoffset starts at 0 (segment at path start = bottom asset) and
 * animates to calc(70px - var(--sf-len)) which places the segment at the
 * top of the path (AMOS end).
 *
 * --sf-dur and --sf-delay are set per-element by JS so each path can have
 * its own speed (proportional to length) and staggered start time.
 */
.defense-facelift .df .sf-highlight {
    stroke: #99fffe;
    stroke-width: 2px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 4px rgba(153, 255, 254, 0.55));
    animation: sf-travel var(--sf-dur, 2s) linear var(--sf-delay, 0s) infinite;
}

@keyframes sf-travel {
    0%   { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: calc(70px - var(--sf-len, 300px)); }
}

@media (prefers-reduced-motion: reduce) {
    .defense-facelift .df .sf-highlight {
        animation: none;
        stroke-dasharray: none;
        stroke-dashoffset: 0;
    }
    .defense-facelift .df .sf-track {
        stroke-opacity: 0.35;
    }
}

/* ---- Diamond markers ---- */
/* Shared base */
.defense-facelift .df .sf-diamond {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #99fffe;
    transform: rotate(45deg) translate(-50%, -50%);
    transform-origin: 0 0;
    animation: ring-pulse 2s ease-in-out infinite;
    z-index: 2;
}

/* Mid-node: sits at the very top-centre of the illustration */
.defense-facelift .df .sf-node__media {
    position: relative;
}

.defense-facelift .sf-node--mid .sf-node__media img {
    position: relative;
    top: 30px;
}

.defense-facelift .df .sf-diamond--top {
    top: 0;
    left: calc(50% - 3px);
}

/* Asset diamonds: sit at the top-centre of each asset image */
.defense-facelift .df .sf-asset {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 14px; /* room for the diamond above the image */
}

.defense-facelift .df .sf-asset .sf-diamond {
    top: 0;
    left: 50%;
}

@media (min-width: 1025px) {
    .defense-facelift .popup-wrapper .bg-color {
        background: rgba(0,0,0,0.9);
    }
}

@media (max-width: 1024px) {
    .defense-facelift .popup-wrapper {
        background: rgba(0,0,0,0.9);
    }
}

/* ---- Body scroll lock ---- */
body.sf-no-scroll {
    overflow: hidden;
}

/* ---- Lightbox overlay ---- */
.defense-facelift .df .sf-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.defense-facelift .df .sf-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

/* ---- Lightbox modal ---- */
.defense-facelift .df .sf-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.defense-facelift .df .sf-lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.defense-facelift .df .sf-lightbox__inner {
    position: relative;
    max-width: 720px;
    width: 100%;
    padding: 48px 48px 52px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);

    border-radius: 10px;
    border: 1px solid #99FFFE;
    background: linear-gradient(180deg, #393939 0%, #0A0A0A 100%);
}

/* Decorative BG image inside the lightbox */
.defense-facelift .df .sf-lightbox__bg {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100%;
    pointer-events: none;
}
.defense-facelift .sf-lightbox__bg_holder {
    width: 280px;
    display: block;
    height: 280px;
    position: absolute;
    right: 0;
    bottom: 0;
}

/* Close button */
.defense-facelift .df .sf-lightbox__close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 6px;
    transition: color 0.2s;
}

.defense-facelift .df .sf-lightbox__close:hover {
    color: #fff;
}

/* Lightbox typography */
.defense-facelift .df .sf-lightbox__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 120%;
    color: #fff;
    margin: 0 0 6px;
}

.defense-facelift .df .sf-lightbox__subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 130%;
    color: #fff;
    margin: 0 0 20px;
    padding-bottom: 30px;
    position: relative;
}

.defense-facelift p.sf-lightbox__subtitle:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #fff;
    left: 0;
    bottom: 0;
}

.defense-facelift .df .sf-lightbox__body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #fff;
    margin: 0 0 20px;
}

.defense-facelift .df .sf-lightbox__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.defense-facelift .df .sf-lightbox__bullets li {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 140%;
    color: #fff;
    padding-left: 22px;
    position: relative;
}

.defense-facelift .df .sf-lightbox__bullets li::before {
    content: '\2713'; /* ✓ */
    position: absolute;
    left: 0;
    color: #99fffe;
    font-weight: 600;
}

.defense-facelift .sf-node.sf-node--mid.sf-node--right .sf-diamond.sf-diamond--top {
    top: 20px;
}

.defense-facelift .sf-node.sf-node--mid.sf-node--left .sf-diamond.sf-diamond--top {
    top: 28px;
}

.defense-facelift .df .sf-asset .sf-diamond {
    left: calc(50% - 5px);
}

.defense-facelift .df .solutions .solutions-text--wrapper {
    width: 100%;
    left: 0;
    padding: 20px;
    margin-bottom: 0;
    margin-top: auto;
    height: 100%;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
}

.defense-facelift figure.solutions-text--image-image:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0.05%, #000 100%);
    position: absolute;
    left: 0;
    top: 0;
}

.defense-facelift .df .solutions .solutions-text--text p {
    padding: 0 20px;
}

.defense-facelift .df .footer:before {
    background: none;
}

.defense-facelift .df .footer h2,
.defense-facelift .df .footer p {
    color: #fff;
}

.defense-facelift .df .footer a {
    border-color: #99FFFE;
}

.defense-facelift .df .footer a:hover {
    background: #99FFFE;
}

.defense-facelift .df .footer:after {
    background: url(../images/df-facelift-footer-bg.png) no-repeat center bottom / 100vw;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .defense-facelift .df .sf-tier--mid {
        max-width: 100%;
        gap: 40px;
    }

    .defense-facelift .df .sf-node--top .sf-node__media img {
        max-width: 480px;
    }

    .defense-facelift .df .stats {
        background: linear-gradient(to bottom, rgba(0,0,0, 0.9) 50%, transparent 73%);
    }
}

@media (max-width: 991px) {
    .defense-facelift .benefits-track {
        display: none;
    }

    .defense-facelift .df-benefits .benefits-text--media-wrapper,
    .defense-facelift .df-benefits .benefits-text--box-single {
        max-width: 100%;
    }

    .defense-facelift .df .solutions h2 {
        color: #FFF;
        text-align: center;
        font-family: "Plus Jakarta Sans";
        font-size: 25px;
        font-weight: 800;
        line-height: 120%; /* 30px */
        text-transform: uppercase;
    }

    .defense-facelift .df .solutions .solutions-text--boxes {
        grid-template-columns: 1fr;
    }

    .defense-facelift .df-benefits .benefits-text--box-single {
        flex-flow: column-reverse !important;
    }

    .defense-facelift .df-benefits .benefits-text--box-single .benefits-text--media-wrapper {
        margin-bottom: 60px !important;
    }

    .defense-facelift .df-benefits .benefits-text--box-single {
        margin-top: 0 !important;
    }

    .defense-facelift .sf-node .sf-diamond {
        display: none;
    }

    .defense-facelift .df .solutions .solutions-text--heading {
        align-self: end;
    }

    .defense-facelift .df .sf-node--mid .sf-node__media img {
        height: auto !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .defense-facelift .df .df-system-flow {
        padding: 60px 0 60px;
    }

    .defense-facelift .df .sf-tier {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .defense-facelift .df .sf-tier--mid,
    .defense-facelift .df .sf-tier--bottom {
        flex-direction: column;
        gap: 40px;
    }

    .defense-facelift .df .sf-lines {
        display: none; /* hide animated lines on mobile — stacked layout doesn't need them */
    }

    .defense-facelift .df .sf-assets-row {
        gap: 20px;
    }

    .defense-facelift .df .sf-asset img {
        max-width: 140px;
    }

    .defense-facelift .df .sf-tier--mid,
    .defense-facelift .df .sf-tier--bottom {
        margin-top: 40px;
    }

    .defense-facelift .df .sf-node__label h3 {
        font-size: 28px;
    }

    .defense-facelift .df .sf-lightbox__inner {
        padding: 32px 28px 36px;
    }

    .defense-facelift .df .sf-lightbox__title {
        font-size: 26px;
    }

    .defense-facelift .df .sf-lightbox__subtitle {
        font-size: 18px;
    }
}
