@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v20-latin-700.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v20-latin-800.woff2') format('woff2')
}

/* =====================================================
           ROOT
        ===================================================== */
:root {
    --gd-navy: #0b1b29;
    --gd-navy-2: #112a3c;
    --gd-navy-3: #18394e;
    --gd-orange: #f58a24;
    --gd-orange-light: #ffb85d;
    --gd-orange-dark: #d96a08;
    --gd-white: #ffffff;
    --gd-light: #f4f7f9;
    --gd-muted: #93a6b4;
    --gd-line: rgba(255, 255, 255, .12);
    --gd-shadow:
        0 30px 80px rgba(0, 0, 0, .35);
}

/* =====================================================
           RESET
        ===================================================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    overflow-x: hidden;
    background:
        var(--gd-navy);
}

a {
    text-decoration: none;
}

svg {
    display: block;
}

/* =====================================================
           HERO
        ===================================================== */
.gd-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    background:
        repeating-linear-gradient(45deg,
            rgba(255, 255, 255, .015) 0,
            rgba(255, 255, 255, .015) 1px,
            transparent 1px,
            transparent 10px),
        radial-gradient(circle at 15% 60%,
            rgba(245, 138, 36, .07),
            transparent 30%),
        linear-gradient(120deg,
            #081722,
            #0d2232 58%,
            #091926);
}

/* texture dots */
.gd-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -5;
    opacity: .35;
    background-image:
        radial-gradient(rgba(255, 255, 255, .09) 1px,
            transparent 1px);
    background-size:
        28px 28px;
    pointer-events: none;
}

/* orange glow */
.gd-hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: 38%;
    top: 20%;
    z-index: -4;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(245, 138, 36, .16),
            transparent 67%);
    filter: blur(20px);
}

/* =====================================================
           NAVBAR
        ===================================================== */
.gd-navbar {
    position: relative;
    z-index: 50;
    padding: 0px 0;
    background: rgba(255, 255, 255, .015);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.gd-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =====================================================
           LOGO
        ===================================================== */
.gd-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color:
        var(--gd-white);
}

.gd-logo-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:
        15px 15px 5px 5px;
    background:
        linear-gradient(135deg,
            var(--gd-orange),
            var(--gd-orange-dark));
    box-shadow:
        0 14px 30px rgba(245, 138, 36, .25);
    transition:
        .4s ease;
}

.gd-logo-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: white;
    stroke-width: 1.8;
}

.gd-logo:hover .gd-logo-icon {
    transform:
        translateY(-4px) rotate(-3deg);
}

.gd-logo-text strong {
    display: block;
    font-size: 16px;
    color:
        white;
    letter-spacing: .3px;
}

.gd-logo-text span {
    display: block;
    margin-top: 4px;
    color:
        var(--gd-muted);
    font-size: 8px;
    letter-spacing: 2px;
}

/* =====================================================
           MENU
        ===================================================== */
#gdMenuToggle {
    display: none;
}

.gd-menu-button {
    display: none;
}

.gd-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gd-menu>li {
    position: relative;
}

.gd-menu>li>a {
    position: relative;
    min-height: 45px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    color:
        rgba(255, 255, 255, .83);
    font-size: 12px;
    font-weight: 700;
    transition:
        .3s ease;
}

.gd-menu>li>a::before {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 3px;
    height: 2px;
    background:
        var(--gd-orange);
    transform:
        scaleX(0);
    transform-origin:
        right;
    transition:
        transform .3s ease;
}

.gd-menu>li>a:hover {
    color:
        var(--gd-white);
    transform:
        translateY(-2px);
}

.gd-menu>li>a:hover::before {
    transform:
        scaleX(1);
    transform-origin:
        left;
}

.gd-arrow {
    width: 13px;
    height: 13px;
    stroke:
        currentColor;
    fill: none;
    stroke-width: 2;
}

/* =====================================================
           DROPDOWN
        ===================================================== */
.gd-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    width: 260px;
    list-style: none;
    margin: 0;
    padding: 10px;
    border-radius: 15px;
    border:
        1px solid rgba(255, 255, 255, .1);
    background:
        rgba(13, 34, 50, .98);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    transform:
        translateY(15px);
    transition:
        .35s ease;
}

.gd-dropdown::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    top: -7px;
    left: 28px;
    transform:
        rotate(45deg);
    background:
        #0d2232;
}

.gd-has-dropdown:hover .gd-dropdown,
.gd-has-dropdown:focus-within .gd-dropdown {
    opacity: 1;
    visibility: visible;
    transform:
        translateY(0);
}

.gd-dropdown a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 13px;
    border-radius: 9px;
    color:
        rgba(255, 255, 255, .75);
    font-size: 12px;
    transition:
        .3s ease;
}

.gd-dropdown a:hover {
    padding-left: 18px;
    color:
        white;
    background:
        rgba(245, 138, 36, .09);
}

/* dropdown icon */
.gd-menu-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background:
        rgba(245, 138, 36, .12);
}

.gd-menu-icon svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke:
        var(--gd-orange);
    stroke-width: 1.8;
}

/* =====================================================
           PHONE BUTTON
        ===================================================== */
.gd-nav-phone {
display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 28px;
  border: 2px solid rgb(245, 138, 36);
  border-radius: 50px;
  color: #0e2434;
  font-size: 12px;
  font-weight: 800;
  transition: .35s ease;
  background: #fff;
}

.gd-nav-phone svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke:
        var(--gd-orange);
    stroke-width: 2;
}

.gd-nav-phone:hover {
    color: white;
    background:
        var(--gd-orange);
    transform:
        translateY(-3px);
    box-shadow:
        0 15px 30px rgba(245, 138, 36, .25);
}

.gd-nav-phone:hover svg {
    stroke: white;
}

/* =====================================================
           DARK DIAGONAL SHAPE
        ===================================================== */
.gd-left-diagonal {
position: absolute;
  z-index: 1;
  top: -15%;
  left: 11%;
  width: 37%;
  height: 135%;
  background: linear-gradient(180deg, rgba(22, 55, 76, .96), rgba(9, 27, 41, .96));
  transform: rotate(-11deg);
  box-shadow: 25px 0 50px rgba(0, 0, 0, .16);
}

/* =====================================================
           ORANGE DIAGONAL LINE
        ===================================================== */
.gd-diagonal-line {
   position: absolute;
  z-index: 3;
  top: -8%;
  left: 48%;
  width: 13px;
  height: 120%;
  background: linear-gradient(to bottom, var(--gd-orange), #ffb85d);
  transform: rotate(-11deg);
  box-shadow: 0 0 25px rgba(245, 138, 36, .45);
}

/* second light glow */
.gd-diagonal-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 13px;
    width: 4px;
    height: 100%;
    background:
        rgba(255, 255, 255, .13);
}

/* =====================================================
           RIGHT IMAGE
        ===================================================== */
.gd-photo-area {
    position: absolute;
    z-index: 2;
    top: 0;
    /* بدل right: 0 */
    right: 5%;
    bottom: 0;
    /* أصغر سنة بسيطة */
    width: 53%;
    overflow: hidden;
    clip-path:
        polygon(14% 0,
            100% 0,
            100% 100%,
            35% 100%);
    background: #dfe4e7;
    animation: gdImageOpen 1.2s ease both;
}

@keyframes gdImageOpen {
    from {
        opacity: 0;
        transform:
            translateX(70px) scale(1.08);
    }

    to {
        opacity: 1;
        transform:
            translateX(0) scale(1);
    }
}

.gd-photo-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position:
        center center;
    transform:
        scale(1.04);
    transition:
        transform 7s ease;
}

.gd-hero:hover .gd-photo-area img {
    transform:
        scale(1.12);
}

.gd-photo-area::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg,
            rgba(8, 23, 34, .35) 0%,
            transparent 28%,
            transparent 75%,
            rgba(8, 23, 34, .12) 100%);
    pointer-events: none;
}

.gd-photo-area::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .08),
            transparent 35%,
            rgba(0, 0, 0, .08));
    pointer-events: none;
}

/* =====================================================
           HERO MAIN
        ===================================================== */
.gd-hero-main {
    position: relative;
    z-index: 10;
    min-height:
        calc(100vh - 92px);
    display: flex;
    align-items: center;
    padding:
        60px 0;
}

/* =====================================================
           CONTENT
        ===================================================== */
.gd-content {
    position: relative;
    z-index: 12;
    max-width: 530px;
    animation:
        gdTextEnter 1s ease both;
}

@keyframes gdTextEnter {
    from {
        opacity: 0;
        transform:
            translateX(-60px);
    }

    to {
        opacity: 1;
        transform:
            translateX(0);
    }
}

.gd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color:
        var(--gd-orange);
    font-size: 10px;
    letter-spacing: 2.3px;
    font-weight: 900;
    text-transform: uppercase;
}

.gd-eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background:
        var(--gd-orange);
}

.gd-title {
    margin:
        0 0 22px;
    color:
        white;
    font-size:
        clamp(47px, 5.4vw, 80px);
    line-height:
        .95;
    letter-spacing:
        -3px;
    font-weight:
        900;
}

.gd-title span {
    display: inline-block;
    color:
        var(--gd-orange);
    animation:
        gdTitleMove 4s ease-in-out infinite;
}

@keyframes gdTitleMove {

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

    50% {
        transform:
            translateY(-7px);
    }
}

.gd-description {
    max-width: 455px;
    margin-bottom: 28px;
    color:
        rgba(255, 255, 255, .66);
    font-size: 14px;
    line-height: 1.8;
}

/* =====================================================
           BUTTONS
        ===================================================== */
.gd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 31px;
}

.gd-btn {
    position: relative;
    min-height: 52px;
    padding:
        0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    border-radius: 3px;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .7px;
    transition:
        .35s ease;
}

.gd-btn svg {
    position: relative;
    z-index: 2;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.gd-btn span {
    position: relative;
    z-index: 2;
}

.gd-btn-primary {
    color:
        white;
    border:
        1px solid var(--gd-orange);
    background:
        var(--gd-orange);
    box-shadow:
        0 13px 30px rgba(245, 138, 36, .25);
}

.gd-btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        var(--gd-orange-dark);
    transform:
        translateX(-101%);
    transition:
        transform .4s ease;
}

.gd-btn-primary:hover {
    color: white;
    transform:
        translateY(-4px);
    box-shadow:
        0 19px 35px rgba(245, 138, 36, .33);
}

.gd-btn-primary:hover::before {
    transform:
        translateX(0);
}

.gd-btn-outline {
    color:
        white;
    border:
        1px solid rgba(255, 255, 255, .25);
    background:
        rgba(255, 255, 255, .025);
}

.gd-btn-outline:hover {
    color:
        white;
    border-color:
        var(--gd-orange);
    transform:
        translateY(-4px);
    background:
        rgba(245, 138, 36, .08);
}

/* =====================================================
           BENEFITS
        ===================================================== */
.gd-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gd-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding:
        9px 11px;
    border-radius:
        30px;
    border:
        1px solid rgba(255, 255, 255, .09);
    background:
        rgba(255, 255, 255, .03);
    color:
        rgba(255, 255, 255, .72);
    font-size: 9px;
    font-weight: 700;
    transition:
        .3s ease;
}

.gd-benefit svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke:
        var(--gd-orange);
    stroke-width: 2;
}

.gd-benefit:hover {
    transform:
        translateY(-4px);
    border-color:
        rgba(245, 138, 36, .5);
    background:
        rgba(245, 138, 36, .05);
}

/* =====================================================
           STATS
        ===================================================== */
.gd-stats {
    max-width: 470px;
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    margin-top: 35px;
    padding-top: 18px;
    border-top:
        1px solid rgba(255, 255, 255, .1);
}

.gd-stat {
    padding:
        0 15px;
    border-right:
        1px solid rgba(255, 255, 255, .09);
}

.gd-stat:first-child {
    padding-left: 0;
}

.gd-stat:last-child {
    border-right: 0;
}

.gd-stat strong {
    display: block;
    color:
        white;
    font-size: 19px;
    font-weight: 900;
}

.gd-stat span {
    color:
        var(--gd-muted);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
           RIGHT INFO
        ===================================================== */
.gd-right-info {
    position: absolute;
    right: 35px;
    top: 145px;
    z-index: 15;
    width: 205px;
    text-align: right;
    animation:
        gdRightEnter 1s .3s ease both;
}

@keyframes gdRightEnter {
    from {
        opacity: 0;
        transform:
            translateX(50px);
    }

    to {
        opacity: 1;
        transform:
            translateX(0);
    }
}

.gd-right-title {
    color:
        white;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
}

.gd-right-title span {
    color:
        var(--gd-orange);
}

.gd-right-phone {
    margin-top: 22px;
    padding-top: 17px;
    border-top:
        1px solid rgba(255, 255, 255, .2);
}

.gd-right-phone small {
    display: block;
    margin-bottom: 7px;
    color:
        rgba(255, 255, 255, .6);
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gd-right-phone a {
    color:
        white;
    font-size: 18px;
    font-weight: 900;
    transition:
        .3s ease;
}

.gd-right-phone a:hover {
    color:
        var(--gd-orange);
}

/* =====================================================
           FLOATING GARAGE ICONS
        ===================================================== */
.gd-floating {
    position: absolute;
    z-index: 20;
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    border:
        1px solid rgba(255, 255, 255, .14);
    background:
        rgba(11, 27, 41, .87);
    box-shadow:
        0 16px 35px rgba(0, 0, 0, .27);
    backdrop-filter:
        blur(10px);
    animation:
        gdFloating 5s ease-in-out infinite;
}

.gd-floating svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke:
        var(--gd-orange);
    stroke-width: 1.8;
}

.gd-floating-1 {
    left: 39%;
    top: 25%;
}

.gd-floating-2 {
    right: 24%;
    bottom: 17%;
    animation-delay:
        -1.5s;
}

.gd-floating-3 {
    right: 5%;
    top: 51%;
    animation-delay:
        -3s;
}

@keyframes gdFloating {

    0%,
    100% {
        transform:
            translateY(0) rotate(0deg);
    }

    50% {
        transform:
            translateY(-14px) rotate(5deg);
    }
}

/* =====================================================
           SIDE TEXT
        ===================================================== */
.gd-side-label {
    position: absolute;
    left:   12px;
    bottom: 30px;
    z-index: 14;
    writing-mode:
        vertical-rl;
    color:
        rgba(255, 255, 255, .09);
    font-size: 39px;
    font-weight: 900;
    letter-spacing: 5px;
}

/* =====================================================
           TABLET
        ===================================================== */
@media (max-width: 1199px) {
    .gd-photo-area {
        width: 60%;
    }

    .gd-left-diagonal {
        left: 23%;
        width: 30%;
    }

    .gd-title {
        font-size:
            59px;
    }

    .gd-nav-phone {
        display: none;
    }

    .gd-right-info {
        right: 22px;
    }
}

/* =====================================================
           TABLET / MOBILE NAV
        ===================================================== */
@media (max-width: 991px) {
    .gd-navbar {
        padding:
            15px 0;
    }

    .gd-menu-button {
        display: flex;
        width: 46px;
        height: 46px;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        border:
            1px solid rgba(255, 255, 255, .18);
        cursor: pointer;
    }

    .gd-menu-button svg {
        width: 23px;
        height: 23px;
        stroke: white;
        fill: none;
        stroke-width: 2;
    }

    .gd-menu-wrap {
        position: absolute;
        top:
            calc(100% + 15px);
        left: 0;
        right: 0;
        background:
            rgba(8, 24, 36, .98);
        border:
            1px solid rgba(255, 255, 255, .09);
        border-radius: 15px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition:
            .45s ease;
        box-shadow:
            0 25px 60px rgba(0, 0, 0, .35);
    }

    #gdMenuToggle:checked~.gd-menu-button+.gd-menu-wrap {
        max-height: 750px;
        opacity: 1;
        visibility: visible;
    }

    .gd-menu {
        display: block;
        padding: 10px;
    }

    .gd-menu>li>a {
        padding:
            0 14px;
    }

    .gd-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        background:
            transparent;
        border: 0;
        box-shadow: none;
        padding:
            0 0 4px 15px;
    }

    .gd-dropdown::before {
        display: none;
    }

    /* remove diagonal on tablet */
    .gd-left-diagonal {
        display: none;
    }

    .gd-hero-main {
        min-height: auto;
        padding:
            80px 0 570px;
    }

    .gd-content {
        max-width: 630px;
    }

    .gd-photo-area {
        top: auto;
        left: -5%;
        right: auto;
        bottom: 0;
        width: 110%;
        height: 525px;
        clip-path:
            polygon(0 20%,
                100% 0,
                100% 100%,
                0 100%);
    }

    .gd-photo-area img {
        object-position:
            center 45%;
    }

    .gd-diagonal-line {
        top: auto;
        left: -10%;
        bottom: 505px;
        width: 120%;
        height: 10px;
        transform:
            rotate(-10deg);
    }

    .gd-diagonal-line::after {
        display: none;
    }

    .gd-right-info {
        top: auto;
        right: 30px;
        bottom: 80px;
        width: 220px;
        padding: 18px;
        border-radius: 13px;
        background:
            rgba(7, 22, 34, .84);
        backdrop-filter:
            blur(10px);
    }

    .gd-floating-1 {
        left: 8%;
        top: auto;
        bottom: 370px;
    }

    .gd-floating-2 {
        right: 10%;
        bottom: 430px;
    }

    .gd-floating-3 {
        display: none;
    }
}

/* =====================================================
           MOBILE
        ===================================================== */
@media (max-width: 767px) {
    .gd-logo-icon {
        width: 44px;
        height: 44px;
    }

    .gd-logo-text strong {
        font-size: 14px;
    }

    .gd-logo-text span {
        font-size: 7px;
    }

    .gd-hero-main {
        padding:
            60px 0 470px;
    }

    .gd-title {
        font-size:
            clamp(42px, 13vw, 57px);
        letter-spacing:
            -2px;
    }

    .gd-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .gd-actions {
        flex-direction: column;
    }

    .gd-btn {
        width: 100%;
    }

    .gd-stats {
        width: 100%;
    }

    .gd-stat {
        padding:
            0 8px;
    }

    .gd-stat strong {
        font-size: 16px;
    }

    .gd-stat span {
        font-size: 7px;
    }

    .gd-photo-area {
        height: 430px;
    }

    .gd-diagonal-line {
        bottom: 413px;
    }

    .gd-right-info {
        left: 20px;
        right: 20px;
        bottom: 22px;
        width: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        text-align: left;
    }

    .gd-right-title {
        font-size: 13px;
    }

    .gd-right-phone {
        margin: 0;
        padding: 0;
        border: 0;
    }

    .gd-right-phone a {
        font-size: 14px;
    }

    .gd-floating-1 {
        bottom: 300px;
    }

    .gd-floating-2 {
        bottom: 365px;
    }

    .gd-side-label {
        display: none;
    }
}

/* =====================================================
           SMALL MOBILE
        ===================================================== */
@media (max-width: 430px) {
    .gd-logo-text span {
        display: none;
    }

    .gd-title {
        font-size: 43px;
    }

    .gd-benefit {
        font-size: 8px;
    }

    .gd-right-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =====================================================
   RIGHT SOCIAL RAIL
===================================================== */
.gd-social-rail {
    position: absolute;
    z-index: 35;
    right: 1.7%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* vertical decorative line */
.gd-social-line {
    width: 1px;
    height: 45px;
    background:
        linear-gradient(to bottom,
            transparent,
            rgba(245, 138, 36, .65),
            transparent);
}

/* icon button */
.gd-social-link {
    position: relative;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border:
        1px solid rgba(255, 255, 255, .15);
    background:
        rgba(255, 255, 255, .025);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

/* SVG */
.gd-social-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke:
        rgba(255, 255, 255, .8);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition:
        stroke .3s ease,
        transform .3s ease;
}

/* facebook needs filled-style shape */
.gd-social-link:first-of-type svg {
    fill:
        rgba(255, 255, 255, .8);
    stroke: none;
}

/* hover */
.gd-social-link:hover {
    transform:
        translateX(-5px);
    border-color:
        var(--gd-orange);
    background:
        rgba(245, 138, 36, .12);
    box-shadow:
        0 10px 25px rgba(245, 138, 36, .18);
}

.gd-social-link:hover svg {
    stroke:
        var(--gd-orange);
    transform:
        scale(1.12);
}

.gd-social-link:first-of-type:hover svg {
    fill:
        var(--gd-orange);
}

/* little orange dot */
.gd-social-link::after {
    content: "";
    position: absolute;
    right: -7px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background:
        var(--gd-orange);
    opacity: 0;
    transition:
        .3s ease;
}

.gd-social-link:hover::after {
    opacity: 1;
}

/* =====================================================
   TABLET
===================================================== */
@media (max-width: 991px) {
    .gd-social-rail {
        right: 18px;
        top: auto;
        bottom: 20px;
        transform: none;
        flex-direction: row;
        gap: 8px;
    }

    .gd-social-line {
        width: 30px;
        height: 1px;
        background:
            linear-gradient(to right,
                transparent,
                rgba(245, 138, 36, .6),
                transparent);
    }
}

/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 575px) {
    .gd-social-rail {
        display: none;
    }
}


/* =========================================================
   WHY CHOOSE US - EDITORIAL
========================================================= */

.gd-why-editorial {
    position: relative;
    overflow: hidden;

    padding:
        120px 0 95px;

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(245,138,36,.07),
            transparent 20%
        ),
        linear-gradient(
            115deg,
            transparent 0 67%,
            rgba(17,42,60,.025) 67% 68%,
            transparent 68%
        ),
        #f7f8f8;
}


/* subtle oversized word */

.gd-why-editorial::before {
    content: "TRUST";

    position: absolute;

    right: -20px;
    top: 10px;

    color:
        rgba(11,27,41,.025);

    font-size:
        clamp(100px,16vw,240px);

    line-height: 1;

    font-weight: 900;

    letter-spacing:
        -10px;

    pointer-events: none;
}


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

.gd-why-editorial-head {
    position: relative;

    max-width: 490px;
}


.gd-editorial-kicker {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 21px;

    color:
        var(--gd-orange);

    font-size: 10px;

    font-weight: 900;

    letter-spacing:
        2.5px;

    text-transform: uppercase;
}


.gd-editorial-kicker::before {
    content: "";

    width: 45px;
    height: 2px;

    background:
        var(--gd-orange);
}


.gd-why-editorial-head h2 {
    margin:
        0 0 25px;

    color:
        var(--gd-navy);

    font-size:
        clamp(42px,5vw,72px);

    line-height:
        .93;

    font-weight:
        900;

    letter-spacing:
        -3px;
}


.gd-why-editorial-head h2 span {
    position: relative;

    display: inline-block;

    color:
        var(--gd-orange);
}


.gd-why-editorial-head h2 span::after {
    content: "";

    position: absolute;

    left: 2px;
    right: -8px;
    bottom: 3px;

    height: 12px;

    z-index: -1;

    background:
        rgba(245,138,36,.12);

    transform:
        skewX(-18deg);
}


.gd-why-editorial-head p {
    max-width: 450px;

    margin-bottom: 30px;

    color:
        #71818b;

    font-size: 14px;

    line-height:
        1.85;
}


/* =========================================================
   TEXT LINK
========================================================= */

.gd-editorial-link {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    color:
        var(--gd-navy);

    font-size: 11px;

    font-weight: 900;

    letter-spacing:
        1px;

    text-transform: uppercase;
}


.gd-editorial-link svg {
    width: 31px;
    height: 31px;

    padding: 8px;

    border-radius: 50%;

    fill: none;

    stroke:
        white;

    stroke-width: 1.8;

    background:
        var(--gd-orange);

    transition:
        transform .35s ease,
        background .35s ease;
}


.gd-editorial-link:hover {
    color:
        var(--gd-orange);
}


.gd-editorial-link:hover svg {
    transform:
        translateX(7px);

    background:
        var(--gd-navy);
}


/* =========================================================
   RIGHT LIST
========================================================= */

.gd-why-lines {
    position: relative;

    border-top:
        1px solid rgba(11,27,41,.11);
}


/* =========================================================
   LINE ITEM
========================================================= */

.gd-why-line-item {
    position: relative;

    display: grid;

    grid-template-columns:
        55px 56px 1fr 38px;

    align-items: center;

    gap: 17px;

    min-height: 120px;

    padding:
        17px 8px;

    border-bottom:
        1px solid rgba(11,27,41,.11);

    overflow: hidden;

    transition:
        padding-left .4s ease;
}


/* sliding background */

.gd-why-line-item::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

    background:
        linear-gradient(
            90deg,
            rgba(245,138,36,.09),
            rgba(245,138,36,.025)
        );

    transform:
        translateX(-102%);

    transition:
        transform .45s ease;
}


.gd-why-line-item:hover::before {
    transform:
        translateX(0);
}


.gd-why-line-item:hover {
    padding-left:
        20px;
}


/* number */

.gd-line-number {
    position: relative;

    z-index: 2;

    color:
        rgba(11,27,41,.32);

    font-size: 10px;

    font-weight: 900;

    letter-spacing:
        1px;
}


/* icon */

.gd-line-icon {
    position: relative;

    z-index: 2;

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius:
        50%;

    border:
        1px solid rgba(11,27,41,.1);

    background:
        white;

    transition:
        transform .4s ease,
        background .4s ease,
        border-color .4s ease;
}


.gd-line-icon svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke:
        var(--gd-orange);

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        stroke .35s ease;
}


.gd-why-line-item:hover
.gd-line-icon {
    transform:
        rotate(-8deg)
        scale(1.07);

    border-color:
        var(--gd-orange);

    background:
        var(--gd-orange);
}


.gd-why-line-item:hover
.gd-line-icon svg {
    stroke:
        white;
}


/* copy */

.gd-line-copy {
    position: relative;

    z-index: 2;
}


.gd-line-copy h3 {
    margin:
        0 0 7px;

    color:
        var(--gd-navy);

    font-size:
        17px;

    font-weight:
        900;

    transition:
        color .3s ease;
}


.gd-line-copy p {
    max-width: 480px;

    margin: 0;

    color:
        #7b8992;

    font-size: 11px;

    line-height:
        1.7;
}


/* arrow */

.gd-line-arrow {
    position: relative;

    z-index: 2;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius:
        50%;

    transition:
        background .35s ease;
}


.gd-line-arrow svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke:
        var(--gd-navy);

    stroke-width:
        1.8;

    transition:
        transform .35s ease,
        stroke .35s ease;
}


.gd-why-line-item:hover
.gd-line-arrow {
    background:
        var(--gd-navy);
}


.gd-why-line-item:hover
.gd-line-arrow svg {
    stroke:
        white;

    transform:
        translateX(3px);
}


/* =========================================================
   EDITORIAL STATS
========================================================= */

.gd-editorial-stats {
    margin-top:
        100px;

    overflow: hidden;

    border-top:
        5px solid var(--gd-orange);

    box-shadow:
        0 22px 60px
        rgba(15,35,50,.1);
}


.gd-editorial-stat {
    position: relative;

    min-height: 170px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        30px;

    background:
        white;

    border-right:
        1px solid rgba(11,27,41,.08);

    overflow: hidden;

    transition:
        background .4s ease,
        transform .4s ease;
}


/* subtle corner */

.gd-editorial-stat::before {
    content: "";

    position: absolute;

    width: 85px;
    height: 85px;

    right: -45px;
    bottom: -45px;

    border:
        18px solid rgba(245,138,36,.055);

    border-radius: 50%;

    transition:
        transform .4s ease;
}


.gd-editorial-stat:hover {
    background:
        #fbf6f1;

    transform:
        translateY(-5px);
}


.gd-editorial-stat:hover::before {
    transform:
        scale(1.5);
}


.gd-editorial-stat strong {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: baseline;

    gap: 5px;

    color:
        var(--gd-navy);

    font-size:
        clamp(32px,3.4vw,53px);

    line-height: 1;

    font-weight:
        900;

    letter-spacing:
        -2px;
}


.gd-editorial-stat strong small {
    font-size:
        15px;

    color:
        var(--gd-orange);

    letter-spacing:
        0;
}


.gd-editorial-stat > span {
    position: relative;

    z-index: 2;

    margin-top:
        11px;

    color:
        #8a969e;

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        1.4px;

    text-transform: uppercase;
}


/* orange stat */

.gd-editorial-stat-orange {
    background:
        var(--gd-orange);
}


.gd-editorial-stat-orange::before {
    border-color:
        rgba(255,255,255,.1);
}


.gd-editorial-stat-orange strong {
    color:
        white;
}


.gd-editorial-stat-orange > span {
    color:
        rgba(255,255,255,.7);
}


.gd-editorial-stat-orange:hover {
    background:
        var(--gd-orange-dark);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gd-why-editorial {
        padding:
            90px 0 75px;
    }


    .gd-why-editorial-head {
        max-width:
            650px;
    }


    .gd-why-editorial-head p {
        max-width:
            650px;
    }


    .gd-why-lines {
        margin-top:
            15px;
    }


    .gd-editorial-stats {
        margin-top:
            70px;
    }


    .gd-editorial-stat {
        border-bottom:
            1px solid rgba(11,27,41,.08);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gd-why-editorial {
        padding:
            75px 0 60px;
    }


    .gd-why-editorial-head h2 {
        font-size:
            clamp(40px,11vw,55px);
    }


    .gd-why-line-item {
        grid-template-columns:
            40px 48px 1fr;

        gap:
            12px;

        min-height:
            125px;
    }


    .gd-line-arrow {
        display:
            none;
    }


    .gd-line-icon {
        width:
            44px;

        height:
            44px;
    }


    .gd-line-copy h3 {
        font-size:
            15px;
    }


    .gd-line-copy p {
        font-size:
            10px;
    }


    .gd-editorial-stat {
        min-height:
            135px;

        padding:
            23px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .gd-why-line-item {
        grid-template-columns:
            33px 43px 1fr;

        padding:
            15px 0;
    }


    .gd-line-number {
        font-size:
            8px;
    }


    .gd-line-icon {
        width:
            40px;

        height:
            40px;
    }


    .gd-line-icon svg {
        width:
            18px;

        height:
            18px;
    }


    .gd-editorial-stat {
        min-height:
            125px;

        padding:
            18px;
    }


    .gd-editorial-stat strong {
        font-size:
            29px;
    }

}

/* =========================================================
   BARGERSVILLE DARK STORY SECTION
========================================================= */

.bg-story {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    padding: 105px 0 95px;

    background:
        radial-gradient(
            circle at 13% 22%,
            rgba(245, 138, 36, .09),
            transparent 24%
        ),
        radial-gradient(
            circle at 89% 65%,
            rgba(24, 57, 78, .75),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #081722 0%,
            var(--gd-navy) 43%,
            var(--gd-navy-2) 100%
        );
}


/* =========================================================
   GRID TEXTURE
========================================================= */

.bg-story::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -5;

    opacity: .42;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size:
        42px 42px;

    pointer-events: none;
}


.bg-story::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    top: 43%;

    z-index: -4;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.025);

    box-shadow:
        0 0 0 100px rgba(255,255,255,.008),
        0 0 0 200px rgba(255,255,255,.005);

    pointer-events: none;
}


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

.bg-story-icons {
    position: absolute;

    inset: 0;

    z-index: -2;

    overflow: hidden;

    pointer-events: none;
}


.bg-story-bgicon {
    position: absolute;

    fill: none;

    stroke:
        rgba(255,255,255,.045);

    stroke-width: .7;

    stroke-linecap: round;
    stroke-linejoin: round;

    animation:
        bgStoryIconFloat
        8s ease-in-out infinite;
}


/* GARAGE DOOR */

.bg-story-bgicon-door {
    width: 220px;
    height: 220px;

    left: -45px;
    top: 25%;

    transform:
        rotate(-8deg);
}


/* GEAR */

.bg-story-bgicon-gear {
    width: 285px;
    height: 285px;

    right: -95px;
    top: 7%;

    stroke:
        rgba(245,138,36,.055);

    animation-delay:
        -2s;
}


/* WRENCH */

.bg-story-bgicon-tool {
    width: 175px;
    height: 175px;

    right: 7%;
    bottom: 3%;

    transform:
        rotate(-25deg);

    animation-delay:
        -4s;
}


/* SPRING */

.bg-story-bgicon-spring {
    width: 260px;
    height: 260px;

    left: 8%;
    bottom: -85px;

    stroke:
        rgba(245,138,36,.045);

    transform:
        rotate(10deg);

    animation-delay:
        -5s;
}


@keyframes bgStoryIconFloat {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -14px;
    }

}


/* =========================================================
   ORANGE GLOW
========================================================= */

.bg-story-glow {
    position: absolute;

    width: 400px;
    height: 400px;

    right: -190px;
    top: 38%;

    z-index: -3;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245,138,36,.1),
            transparent 68%
        );

    filter:
        blur(10px);

    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.bg-story-heading {
    position: relative;

    z-index: 5;

    max-width: 1000px;

    margin:
        0 auto 42px;

    text-align: center;
}


.bg-story-eyebrow {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-bottom: 10px;

    color:
        var(--gd-orange);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.bg-story-eyebrow > span {
    width: 35px;
    height: 1px;

    background:
        var(--gd-orange);
}


/* small garage icon */

.bg-story-heading-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto 4px;
}


.bg-story-heading-icon svg {
    width: 29px;
    height: 29px;

    fill: none;

    stroke:
        var(--gd-orange);

    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.bg-story-heading h2 {
    margin: 0;

    color:
        var(--gd-white);

    font-size:
        clamp(43px, 5.3vw, 75px);

    line-height: .98;

    font-weight: 900;

    letter-spacing: -3px;
}


.bg-story-heading h2 small {
    display: block;

    margin-top: 6px;

    color:
        rgba(255,255,255,.88);

    font-size: .67em;

    font-weight: 500;

    letter-spacing: -2px;
}


.bg-story-heading h2 > span {
    display: block;

    margin-top: 3px;

    color:
        var(--gd-orange);

    font-size: .72em;

    font-weight: 900;
}


/* =========================================================
   IMAGE VISUAL
========================================================= */

.bg-story-visual {
    position: relative;

    padding:
        0 65px 0 30px;
}


/* =========================================================
   ORANGE CIRCLE
========================================================= */

.bg-story-circle {
    position: absolute;

    z-index: 1;

    width: 245px;
    height: 245px;

    left: -65px;
    top: -52px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--gd-orange),
            var(--gd-orange-dark)
        );

    box-shadow:
        0 0 65px rgba(245,138,36,.18);

    transition:
        transform .7s ease;
}


.bg-story-visual:hover
.bg-story-circle {
    transform:
        rotate(12deg)
        scale(1.06);
}


/* =========================================================
   PHOTO
========================================================= */

.bg-story-photo {
    position: relative;

    z-index: 3;

    height: 609px;

    overflow: hidden;

    border:
        4px solid rgba(255,255,255,.12);

    background:
        var(--gd-navy-3);

    box-shadow:
        0 35px 85px rgba(0,0,0,.38);
}


.bg-story-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transform:
        scale(1.02);

    transition:
        transform 7s ease;
}


.bg-story-visual:hover
.bg-story-photo img {
    transform:
        scale(1.08);
}


/* photo overlay */

.bg-story-photo::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(8,23,34,.22),
            transparent 27%,
            transparent 73%,
            rgba(8,23,34,.12)
        );

    pointer-events: none;
}


/* =========================================================
   GARAGE PANEL LINES
========================================================= */

.bg-story-panel {
    position: absolute;

    z-index: 4;

    left: 0;
    right: 0;

    height: 3px;

    background:
        rgba(255,255,255,.85);

    box-shadow:
        0 1px 4px rgba(0,0,0,.2);

    pointer-events: none;
}


.bg-story-panel-one {
    top: 31%;
}


.bg-story-panel-two {
    top: 63%;
}


/* =========================================================
   PHOTO TAG
========================================================= */

.bg-story-photo-tag {
    position: absolute;

    z-index: 6;

    left: 24px;
    bottom: 23px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding:
        10px 15px 10px 10px;

    border:
        1px solid rgba(255,255,255,.18);

    background:
        rgba(8,23,34,.73);

    backdrop-filter:
        blur(12px);

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

    color:
        white;

    font-size: 9px;

    font-weight: 800;

    line-height: 1.35;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.bg-story-photo-tag-icon {
    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        var(--gd-orange);
}


.bg-story-photo-tag-icon svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke:
        white;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   VERTICAL LOCATION
========================================================= */

.bg-story-location {
    position: absolute;

    z-index: 6;

    right: 4px;
    top: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;

    transform:
        translateY(-50%);
}


.bg-story-location > span:nth-child(2) {
    writing-mode:
        vertical-rl;

    color:
        var(--gd-orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 5px;

    text-transform: uppercase;
}


.bg-story-location-line {
    width: 1px;
    height: 55px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--gd-orange)
        );
}


.bg-story-location-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--gd-orange);

    box-shadow:
        0 0 15px rgba(245,138,36,.65);
}


/* =========================================================
   LITTLE PLUS SIGNS
========================================================= */

.bg-story-plus {
    position: absolute;

    z-index: 7;

    color:
        rgba(255,255,255,.35);

    font-size: 21px;

    font-weight: 200;

    line-height: 1;
}


.bg-story-plus-one {
    right: 82px;
    top: -30px;
}


.bg-story-plus-two {
    left: -2px;
    bottom: 15px;

    color:
        var(--gd-orange);
}


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

.bg-story-content {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr 80px 1fr;

    gap: 20px;

    margin-top: 48px;
}


/* =========================================================
   COPY
========================================================= */

.bg-story-copy {
    position: relative;
}


.bg-story-copy-heading {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;
}


.bg-story-number {
    color:
        var(--gd-white);

    font-size: 37px;

    line-height: 1;

    font-weight: 900;
}


.bg-story-slash {
    color:
        var(--gd-orange);

    font-size: 31px;

    font-weight: 300;
}


.bg-story-copy-heading small {
    display: block;

    margin-bottom: 4px;

    color:
        rgba(255,255,255,.32);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.bg-story-copy-heading h3 {
    position: relative;

    margin: 0;

    padding-bottom: 8px;

    color:
        white;

    font-size: 16px;

    font-weight: 900;

    letter-spacing: .5px;

    text-transform: uppercase;
}


.bg-story-copy-heading h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 34px;
    height: 2px;

    background:
        var(--gd-orange);

    transition:
        width .4s ease;
}


.bg-story-copy:hover
.bg-story-copy-heading h3::after {
    width: 75px;
}


/* =========================================================
   COPY BODY
========================================================= */

.bg-story-copy-body {
    display: flex;

    align-items: flex-start;

    gap: 20px;
}


.bg-story-copy-icon {
    width: 61px;
    height: 61px;

    min-width: 61px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(245,138,36,.5);

    background:
        rgba(255,255,255,.025);

    backdrop-filter:
        blur(10px);

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

    transition:
        transform .4s ease,
        background .4s ease,
        box-shadow .4s ease;
}


.bg-story-copy-icon svg {
    width: 28px;
    height: 28px;

    fill: none;

    stroke:
        var(--gd-orange);

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        stroke .4s ease;
}


.bg-story-copy:hover
.bg-story-copy-icon {
    transform:
        translateY(-6px)
        rotate(-5deg);

    background:
        var(--gd-orange);

    box-shadow:
        0 14px 35px rgba(245,138,36,.2);
}


.bg-story-copy:hover
.bg-story-copy-icon svg {
    stroke:
        white;
}


.bg-story-copy-body p {
    margin: 0;

    color:
        rgba(255,255,255,.64);

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   CENTER DIVIDER
========================================================= */

.bg-story-divider {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 10px;
}


.bg-story-divider > span {
    width: 1px;
    height: 60px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255,255,255,.17)
        );
}


.bg-story-divider > span:last-child {
    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.17),
            transparent
        );
}


.bg-story-divider > div {
    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(245,138,36,.45);
}


.bg-story-divider svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke:
        var(--gd-orange);

    stroke-width: 1.8;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .bg-story {
        padding:
            85px 0 75px;
    }


    .bg-story-heading {
        margin-bottom:
            35px;
    }


    .bg-story-visual {
        padding:
            0 50px 0 20px;
    }


    .bg-story-photo {
        height:
            350px;
    }


    .bg-story-circle {
        width:
            200px;

        height:
            200px;

        left:
            -45px;
    }


    .bg-story-content {
        grid-template-columns:
            1fr 50px 1fr;
    }


    .bg-story-copy-body {
        display:
            block;
    }


    .bg-story-copy-icon {
        margin-bottom:
            17px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .bg-story {
        padding:
            70px 0 60px;
    }


    .bg-story-eyebrow {
        gap: 8px;

        font-size: 7px;

        letter-spacing: 2.5px;
    }


    .bg-story-eyebrow > span {
        width: 22px;
    }


    .bg-story-heading h2 {
        font-size:
            clamp(37px, 11vw, 51px);

        letter-spacing:
            -2px;
    }


    .bg-story-heading h2 small {
        font-size:
            .63em;

        line-height:
            1.08;
    }


    .bg-story-heading h2 > span {
        font-size:
            .67em;
    }


    /* image */

    .bg-story-visual {
        padding: 0;
    }


    .bg-story-photo {
        height:
            295px;

        border-width:
            3px;
    }


    .bg-story-circle {
        width:
            145px;

        height:
            145px;

        left:
            -50px;

        top:
            -35px;
    }


    /* location becomes horizontal */

    .bg-story-location {
        right: 13px;
        top: 13px;

        transform: none;

        display: block;

        padding:
            7px 10px;

        background:
            var(--gd-orange);
    }


    .bg-story-location > span:nth-child(2) {
        writing-mode:
            horizontal-tb;

        color:
            white;

        font-size:
            7px;

        letter-spacing:
            2px;
    }


    .bg-story-location-line,
    .bg-story-location-dot {
        display:
            none;
    }


    .bg-story-photo-tag {
        left:
            13px;

        bottom:
            13px;
    }


    /* copy */

    .bg-story-content {
        grid-template-columns:
            1fr;

        gap: 0;

        margin-top:
            40px;
    }


    .bg-story-divider {
        flex-direction:
            row;

        margin:
            32px 0;
    }


    .bg-story-divider > span {
        width:
            100%;

        height:
            1px;

        background:
            linear-gradient(
                to right,
                transparent,
                rgba(255,255,255,.15)
            );
    }


    .bg-story-divider > span:last-child {
        background:
            linear-gradient(
                to right,
                rgba(255,255,255,.15),
                transparent
            );
    }


    .bg-story-copy-body {
        display:
            flex;
    }


    .bg-story-copy-icon {
        margin-bottom: 0;
    }


    /* background icons */

    .bg-story-bgicon-door {
        width: 130px;
        height: 130px;

        left: -50px;
    }


    .bg-story-bgicon-gear {
        width: 170px;
        height: 170px;

        right: -75px;
    }


    .bg-story-bgicon-tool {
        width: 100px;
        height: 100px;
    }


    .bg-story-bgicon-spring {
        width: 160px;
        height: 160px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .bg-story-heading h2 {
        font-size:
            35px;
    }


    .bg-story-photo {
        height:
            240px;
    }


    .bg-story-circle {
        width:
            115px;

        height:
            115px;
    }


    .bg-story-photo-tag {
        padding:
            7px 10px 7px 7px;

        font-size:
            7px;
    }


    .bg-story-photo-tag-icon {
        width:
            31px;

        height:
            31px;
    }


    .bg-story-copy-heading {
        gap:
            9px;
    }


    .bg-story-number {
        font-size:
            30px;
    }


    .bg-story-copy-heading h3 {
        font-size:
            13px;
    }


    .bg-story-copy-body {
        display:
            block;
    }


    .bg-story-copy-icon {
        margin-bottom:
            17px;
    }


    .bg-story-copy-body p {
        font-size:
            12px;

        line-height:
            1.85;
    }

}

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

.gd-transform-section {
    position: relative;
    overflow: hidden;

    padding: 105px 0;

    background:
        radial-gradient(
            circle at 88% 14%,
            rgba(245,138,36,.07),
            transparent 20%
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 48px,
            rgba(11,27,41,.018) 49px
        ),
        #f7f8f8;
}


/* =========================================================
   HEADING
========================================================= */

.gd-transform-kicker {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 17px;

    color: var(--gd-orange);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.gd-transform-kicker::before {
    content: "";

    width: 38px;
    height: 2px;

    background: var(--gd-orange);
}


.gd-transform-heading h2 {
    max-width: 700px;

    margin: 0;

    color: var(--gd-navy);

    font-size: clamp(43px,5.5vw,72px);

    line-height: .95;

    font-weight: 900;

    letter-spacing: -3px;
}


.gd-transform-heading h2 span {
    display: block;

    color: var(--gd-orange);
}


.gd-transform-intro {
    margin: 0;

    color: #74828c;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   BOARD
========================================================= */

.gd-transform-board {
    position: relative;

    min-height: 650px;

    margin-top: 20px;
}


/* =========================================================
   AFTER - BIG MAIN IMAGE
========================================================= */

.gd-transform-after {
    position: absolute;

    z-index: 4;

    right: 0;

    top: 45px;

    width: 78%;

    height: 520px;

    overflow: visible;

    border: 5px solid white;

    background: white;

    box-shadow:
        0 35px 85px rgba(16,36,53,.22);

    transition:
        transform .45s ease;
}


.gd-transform-after:hover {
    transform:
        translateY(-6px);
}


.gd-transform-after > img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    filter:
        saturate(1.08)
        brightness(1.03);

    transition:
        transform 7s ease;
}


.gd-transform-board:hover
.gd-transform-after > img {
    transform:
        scale(1.04);
}


/* =========================================================
   BEFORE - SMALL OVERLAPPING IMAGE
========================================================= */

.gd-transform-before {
    position: absolute;

    z-index: 7;

    left: 0;

    top: 130px;

    width: 40%;

    height: 320px;

    overflow: hidden;

    border: 5px solid white;

    background: #dfe4e7;

    box-shadow:
        0 28px 65px rgba(16,36,53,.20);

    transition:
        transform .45s ease;
}


.gd-transform-before:hover {
    transform:
        translateY(-6px)
        rotate(-1deg);
}


.gd-transform-before img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    filter:
        saturate(.72)
        brightness(.84);

    transition:
        transform 6s ease;
}


.gd-transform-before:hover img {
    transform:
        scale(1.06);
}


/* =========================================================
   ORANGE DIAGONAL
========================================================= */

.gd-transform-slash {
    position: absolute;

    z-index: 6;

    left: 34%;

    top: 60px;

    width: 13px;

    height: 500px;

    transform:
        rotate(-10deg);

    background:
        linear-gradient(
            to bottom,
            var(--gd-orange),
            var(--gd-orange-light)
        );

    box-shadow:
        0 0 25px rgba(245,138,36,.28);
}


/* =========================================================
   LABELS
========================================================= */

.gd-transform-label {
    position: absolute;

    z-index: 9;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        8px 13px;

    color: white;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.gd-transform-label span {
    color:
        rgba(255,255,255,.55);
}


.gd-transform-label-after {
    top: 18px;

    right: 18px;

    background: var(--gd-orange);
}


.gd-transform-label-before {
    top: 17px;

    left: 17px;

    background: var(--gd-navy);
}


/* =========================================================
   RESULT TAG
========================================================= */

.gd-transform-result {
    position: absolute;

    z-index: 10;

    right: 25px;

    bottom: -32px;

    display: flex;

    align-items: center;

    gap: 13px;

    min-width: 255px;

    padding:
        13px 17px;

    background:
        var(--gd-navy);

    box-shadow:
        0 15px 35px rgba(8,23,34,.25);
}


.gd-transform-result-icon {
    width: 42px;

    height: 42px;

    min-width: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--gd-orange);
}


.gd-transform-result-icon svg {
    width: 20px;

    height: 20px;

    fill: none;

    stroke: white;

    stroke-width: 1.8;
}


.gd-transform-result strong {
    display: block;

    color: white;

    font-size: 12px;
}


.gd-transform-result span {
    display: block;

    margin-top: 3px;

    color:
        rgba(255,255,255,.5);

    font-size: 8px;
}


/* =========================================================
   BIG NUMBER
========================================================= */

.gd-transform-big-number {
    position: absolute;

    z-index: 1;

    left: 10px;

    bottom: 3px;

    color:
        rgba(11,27,41,.055);

    font-size:
        clamp(80px,10vw,150px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -7px;
}


/* =========================================================
   BACKGROUND GARAGE ICON
========================================================= */

.gd-transform-bg-icon {
    position: absolute;

    z-index: 1;

    right: -45px;

    top: -5px;

    width: 160px;

    height: 160px;

    opacity: .055;
}


.gd-transform-bg-icon svg {
    width: 100%;

    height: 100%;

    fill: none;

    stroke: var(--gd-navy);

    stroke-width: .8;
}


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

.gd-transform-details {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    margin-top: 10px;

    border-top:
        1px solid rgba(11,27,41,.1);
}


.gd-transform-detail {
    position: relative;

    padding:
        30px 35px;

    border-right:
        1px solid rgba(11,27,41,.1);

    transition:
        background .35s ease;
}


.gd-transform-detail:last-child {
    border-right: 0;
}


.gd-transform-detail > span {
    display: block;

    width: 28px;

    height: 3px;

    margin-bottom: 14px;

    background: var(--gd-orange);

    transition:
        width .35s ease;
}


.gd-transform-detail:hover {
    background:
        rgba(255,255,255,.68);
}


.gd-transform-detail:hover > span {
    width: 60px;
}


.gd-transform-detail strong {
    display: block;

    margin-bottom: 8px;

    color: var(--gd-navy);

    font-size: 14px;
}


.gd-transform-detail p {
    margin: 0;

    color: #7b8992;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gd-transform-section {
        padding:
            85px 0;
    }


    .gd-transform-intro {
        margin-top: 20px;

        max-width: 600px;
    }


    .gd-transform-board {
        min-height: 580px;
    }


    .gd-transform-after {
        width: 80%;

        height: 455px;
    }


    .gd-transform-before {
        width: 42%;

        height: 285px;

        top: 120px;
    }


    .gd-transform-slash {
        left: 35%;

        height: 445px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gd-transform-section {
        padding:
            70px 0;
    }


    .gd-transform-heading h2 {
        font-size:
            clamp(38px,11vw,52px);
    }


    .gd-transform-board {
        min-height: auto;

        display: flex;

        flex-direction: column;

        align-items: flex-end;

        gap: 0;
    }


    /* AFTER stays bigger */

    .gd-transform-after {
        position: relative;

        right: auto;

        top: auto;

        width: 94%;

        height: 360px;

        margin-left: auto;
    }


    /* BEFORE overlaps from left */

    .gd-transform-before {
        position: relative;

        left: auto;

        top: auto;

        width: 63%;

        height: 230px;

        margin-top: -105px;

        margin-right: auto;

        z-index: 8;
    }


    .gd-transform-slash {
        display: none;
    }


    .gd-transform-result {
        right: 15px;

        bottom: -28px;
    }


    .gd-transform-big-number {
        display: none;
    }


    .gd-transform-bg-icon {
        display: none;
    }


    .gd-transform-details {
        margin-top: 75px;

        grid-template-columns:
            1fr;
    }


    .gd-transform-detail {
        border-right: 0;

        border-bottom:
            1px solid rgba(11,27,41,.1);

        padding:
            25px 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .gd-transform-after {
        width: 100%;

        height: 300px;
    }


    .gd-transform-before {
        width: 70%;

        height: 190px;

        margin-top: -75px;
    }


    .gd-transform-result {
        min-width: 215px;

        right: 10px;

        padding:
            10px 13px;
    }


    .gd-transform-label {
        padding:
            6px 9px;

        font-size: 7px;
    }

}

/* =========================================================
   SERVICES EDITORIAL SECTION
========================================================= */

.gd-services-editorial {
    position: relative;
    overflow: hidden;

    padding: 110px 0;

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(245,138,36,.07),
            transparent 22%
        ),
        linear-gradient(
            rgba(11,27,41,.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11,27,41,.02) 1px,
            transparent 1px
        ),
        #f7f8f8;

    background-size:
        auto,
        38px 38px,
        38px 38px,
        auto;
}


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

.gd-services-copy {
    position: relative;

    z-index: 5;
}


.gd-services-kicker {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 19px;

    color:
        var(--gd-orange);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.gd-services-kicker::before {
    content: "";

    width: 38px;
    height: 2px;

    background:
        var(--gd-orange);
}


.gd-services-copy h2 {
    max-width: 530px;

    margin:
        0 0 27px;

    color:
        var(--gd-navy);

    font-size:
        clamp(41px,4.8vw,66px);

    line-height:
        .98;

    font-weight: 900;

    letter-spacing:
        -2.7px;
}


.gd-services-copy h2 span {
    display: block;

    margin-top: 7px;

    color:
        var(--gd-orange);
}


.gd-services-copy p {
    max-width: 525px;

    margin: 0;

    color:
        #687985;

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   VISUAL
========================================================= */

.gd-services-visual {
    position: relative;

    min-height: 620px;

    padding:
        25px 0 30px 65px;
}


/* orange circle */

.gd-services-circle {
    position: absolute;

    z-index: 1;

    width: 230px;
    height: 230px;

    left: 0;
    top: 0;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--gd-orange),
            var(--gd-orange-dark)
        );

    opacity: .95;

    transition:
        transform .6s ease;
}


.gd-services-visual:hover
.gd-services-circle {
    transform:
        rotate(12deg)
        scale(1.07);
}


/* =========================================================
   PHOTO
========================================================= */

.gd-services-photo {
    position: relative;

    z-index: 3;

    height: 565px;

    overflow: hidden;

    border:
        5px solid white;

    background:
        #dfe4e7;

    box-shadow:
        0 32px 80px rgba(11,27,41,.18);
}


.gd-services-photo::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,23,34,.15),
            transparent 30%,
            transparent
        );

    pointer-events: none;
}


.gd-services-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 7s ease;
}


.gd-services-visual:hover
.gd-services-photo img {
    transform:
        scale(1.07);
}


/* =========================================================
   SERVICE STACK
========================================================= */

.gd-service-stack {
    position: absolute;

    z-index: 8;

    left: 0;

    top: 50%;

    width: 430px;

    transform:
        translateY(-50%);

    display: flex;

    flex-direction: column;

    gap: 9px;
}


/* =========================================================
   SERVICE STRIP
========================================================= */

.gd-service-strip {
    position: relative;

    min-height: 75px;

    display: grid;

    grid-template-columns:
        30px 45px 1fr 28px;

    align-items: center;

    gap: 11px;

    padding:
        12px 16px;

    overflow: hidden;

    color:
        var(--gd-navy);

    border:
        1px solid rgba(255,255,255,.7);

    background:
        rgba(255,255,255,.93);

    box-shadow:
        0 13px 32px rgba(11,27,41,.13);

    backdrop-filter:
        blur(10px);

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

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}


.gd-service-strip:nth-child(2) {
    margin-left: 28px;
}


.gd-service-strip:nth-child(3) {
    margin-left: 56px;
}


.gd-service-strip:nth-child(4) {
    margin-left: 84px;
}


.gd-service-strip::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background:
        var(--gd-orange);

    transition:
        width .35s ease;
}


.gd-service-strip:hover {
    color:
        white;

    transform:
        translateX(7px);

    background:
        var(--gd-navy);
}


.gd-service-strip:hover::before {
    width:
        7px;
}


.gd-service-index {
    position: relative;

    z-index: 2;

    color:
        rgba(11,27,41,.3);

    font-size: 8px;

    font-weight: 900;
}


.gd-service-strip:hover
.gd-service-index {
    color:
        rgba(255,255,255,.35);
}


/* icon */

.gd-service-icon {
    position: relative;

    z-index: 2;

    width: 41px;
    height: 41px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(245,138,36,.1);

    transition:
        background .35s ease,
        transform .35s ease;
}


.gd-service-icon svg {
    width: 19px;
    height: 19px;

    fill: none;

    stroke:
        var(--gd-orange);

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.gd-service-strip:hover
.gd-service-icon {
    background:
        var(--gd-orange);

    transform:
        rotate(-6deg);
}


.gd-service-strip:hover
.gd-service-icon svg {
    stroke:
        white;
}


.gd-service-strip strong {
    position: relative;

    z-index: 2;

    font-size: 11px;

    font-weight: 900;

    line-height: 1.3;
}


.gd-service-arrow {
    position: relative;

    z-index: 2;
}


.gd-service-arrow svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke:
        var(--gd-navy);

    stroke-width: 1.8;

    transition:
        stroke .35s ease,
        transform .35s ease;
}


.gd-service-strip:hover
.gd-service-arrow svg {
    stroke:
        var(--gd-orange);

    transform:
        translateX(4px);
}


/* =========================================================
   BOTTOM SERVICES
========================================================= */

.gd-services-bottom {
    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    margin-top:
        70px;

    border-top:
        1px solid rgba(11,27,41,.1);

    border-bottom:
        1px solid rgba(11,27,41,.1);
}


.gd-bottom-service {
    position: relative;

    min-height: 145px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        24px;

    color:
        var(--gd-navy);

    border-right:
        1px solid rgba(11,27,41,.1);

    transition:
        background .35s ease,
        transform .35s ease;
}


.gd-bottom-service:last-child {
    border-right: 0;
}


.gd-bottom-service > span {
    position: absolute;

    right: 16px;
    top: 13px;

    color:
        rgba(11,27,41,.08);

    font-size: 28px;

    font-weight: 900;
}


.gd-bottom-icon {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 13px;

    border-radius: 50%;

    background:
        rgba(245,138,36,.1);

    transition:
        background .35s ease,
        transform .35s ease;
}


.gd-bottom-icon svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke:
        var(--gd-orange);

    stroke-width: 1.7;
}


.gd-bottom-service strong {
    font-size: 11px;

    line-height: 1.35;
}


.gd-bottom-service:hover {
    color:
        var(--gd-navy);

    transform:
        translateY(-5px);

    background:
        white;
}


.gd-bottom-service:hover
.gd-bottom-icon {
    background:
        var(--gd-orange);

    transform:
        rotate(-7deg);
}


.gd-bottom-service:hover
.gd-bottom-icon svg {
    stroke:
        white;
}


/* =========================================================
   DIAGNOSTIC EDITORIAL
========================================================= */

.gd-diagnostic-editorial {
    position: relative;

    margin-top: 90px;

    overflow: hidden;

    padding:
        70px 65px 55px;

    background:
        linear-gradient(
            135deg,
            #071722,
            var(--gd-navy-2)
        );

    box-shadow:
        0 35px 85px rgba(11,27,41,.22);
}


/* texture */

.gd-diagnostic-editorial::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: .4;

    background:
        repeating-linear-gradient(
            135deg,
            transparent 0,
            transparent 26px,
            rgba(255,255,255,.018) 27px,
            transparent 28px
        );

    pointer-events: none;
}


/* =========================================================
   DIAGONAL DECORATION
========================================================= */

.gd-diagnostic-angle {
 position: absolute;
  z-index: 1;
  width: 220px;
  height: 500px;
  right: -92px;
  top: -5px;
  transform: rotate(9deg);
  background: linear-gradient( 180deg, var(--gd-orange), var(--gd-orange-dark) );
  opacity: .88;
}


/* =========================================================
   DIAGNOSTIC TITLE
========================================================= */

.gd-diagnostic-editorial-title {
    position: relative;

    z-index: 4;
}


.gd-diagnostic-editorial-title > span {
    display: block;

    margin-bottom: 14px;

    color:
        var(--gd-orange);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2.7px;

    text-transform: uppercase;
}


.gd-diagnostic-editorial-title h2 {
    margin: 0;

    color:
        white;

    font-size:
        clamp(37px,4vw,56px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -2px;
}


.gd-diagnostic-editorial-title h2 strong {
    display: block;

    color:
        var(--gd-orange);

    font-weight: 900;
}


/* =========================================================
   DIAGNOSTIC COPY
========================================================= */

.gd-diagnostic-editorial-copy {
    position: relative;

    z-index: 4;

    padding-right:
        40px;
}


.gd-diagnostic-editorial-copy p {
    margin: 0;

    color:
        rgba(255,255,255,.67);

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   TAGS
========================================================= */

.gd-diagnostic-tags {
    position: relative;

    z-index: 4;

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top:
        42px;

    padding-top:
        25px;

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


.gd-diagnostic-tags span {
    padding:
        8px 12px;

    color:
        rgba(255,255,255,.64);

    border:
        1px solid rgba(255,255,255,.12);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    transition:
        color .3s ease,
        border-color .3s ease,
        background .3s ease;
}


.gd-diagnostic-tags span:hover {
    color:
        white;

    border-color:
        var(--gd-orange);

    background:
        rgba(245,138,36,.1);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gd-services-editorial {
        padding:
            85px 0;
    }


    .gd-services-copy h2,
    .gd-services-copy p {
        max-width:
            700px;
    }


    .gd-services-visual {
        margin-top:
            15px;

        padding-left:
            45px;
    }


    .gd-service-stack {
        width:
            390px;
    }


    .gd-services-bottom {
        grid-template-columns:
            repeat(2,1fr);
    }


    .gd-bottom-service {
        border-bottom:
            1px solid rgba(11,27,41,.1);
    }


    .gd-diagnostic-editorial {
        padding:
            55px 45px;
    }


    .gd-diagnostic-editorial-copy {
        padding-right: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gd-services-editorial {
        padding:
            70px 0;
    }


    .gd-services-copy h2 {
        font-size:
            clamp(38px,10vw,50px);
    }


    .gd-services-visual {
        min-height: auto;

        padding:
            25px 0 0;
    }


    .gd-services-photo {
        height:
            400px;
    }


    .gd-services-circle {
        width:
            150px;

        height:
            150px;

        left:
            -45px;
    }


    .gd-service-stack {
        position: relative;

        left: auto;
        top: auto;

        width: calc(100% - 30px);

        margin:
            -120px 0 0 auto;

        transform: none;
    }


    .gd-service-strip:nth-child(2),
    .gd-service-strip:nth-child(3),
    .gd-service-strip:nth-child(4) {
        margin-left: 0;
    }


    .gd-services-bottom {
        grid-template-columns:
            1fr;

        margin-top:
            50px;
    }


    .gd-bottom-service {
        min-height: 105px;

        border-right: 0;
    }


    .gd-diagnostic-editorial {
        margin-top:
            65px;

        padding:
            45px 27px;
    }


    .gd-diagnostic-editorial-title h2 {
        font-size:
            clamp(34px,9vw,45px);
    }


    .gd-diagnostic-editorial-copy {
        margin-top:
            12px;
    }


    .gd-diagnostic-angle {
        width:
            130px;

        right:
            -80px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .gd-services-photo {
        height:
            330px;
    }


    .gd-service-stack {
        width:
            calc(100% - 15px);

        margin-top:
            -90px;
    }


    .gd-service-strip {
        grid-template-columns:
            28px 40px 1fr;

        min-height:
            68px;

        padding:
            10px 12px;
    }


    .gd-service-arrow {
        display: none;
    }


    .gd-service-icon {
        width:
            38px;

        height:
            38px;
    }


    .gd-diagnostic-editorial {
        padding:
            40px 22px;
    }


    .gd-diagnostic-editorial-copy p {
        font-size:
            12px;
    }

}
/* =========================================================
   PROCESS SECTION
========================================================= */

.gd-process-section {
    position: relative;
    overflow: hidden;

    padding: 105px 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(245,138,36,.07),
            transparent 22%
        ),
        linear-gradient(
            rgba(11,27,41,.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11,27,41,.02) 1px,
            transparent 1px
        ),
        #f8f9f9;

    background-size:
        auto,
        38px 38px,
        38px 38px,
        auto;
}


/* =========================================================
   HEADING
========================================================= */

.gd-process-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 17px;

    color: var(--gd-orange);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2.6px;

    text-transform: uppercase;
}


.gd-process-kicker::before {
    content: "";

    width: 38px;
    height: 2px;

    background: var(--gd-orange);
}


.gd-process-heading h2 {
    max-width: 760px;

    margin: 0;

    color: var(--gd-navy);

    font-size: clamp(42px,5vw,68px);

    line-height: .98;

    font-weight: 900;

    letter-spacing: -3px;
}


.gd-process-heading h2 span {
    display: block;

    color: var(--gd-orange);
}


.gd-process-intro {
    margin: 0;

    color: #72818b;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   TRACK
========================================================= */

.gd-process-track {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    gap: 22px;

    margin-top: 85px;
}


/* garage track line */

.gd-process-line {
    position: absolute;

    left: 7%;
    right: 7%;

    top: 67px;

    height: 4px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--gd-navy),
            var(--gd-orange),
            var(--gd-navy)
        );

    opacity: .18;
}


.gd-process-line::before,
.gd-process-line::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 16px;
    height: 16px;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background: var(--gd-orange);
}


.gd-process-line::before {
    left: 0;
}


.gd-process-line::after {
    right: 0;
}


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

.gd-process-step {
    position: relative;

    z-index: 3;

    text-align: center;

    padding:
        0 12px;
}


/* number */

.gd-process-number {
    display: block;

    margin-bottom: 16px;

    color:
        rgba(11,27,41,.1);

    font-size: 34px;

    line-height: 1;

    font-weight: 900;

    transition:
        color .35s ease;
}


/* node */

.gd-process-node {
    position: relative;

    width: 72px;
    height: 72px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto 23px;

    border-radius: 50%;

    border:
        5px solid #f8f9f9;

    background: var(--gd-navy);

    box-shadow:
        0 0 0 1px rgba(11,27,41,.08),
        0 15px 35px rgba(11,27,41,.12);

    transition:
        transform .4s ease,
        background .4s ease,
        box-shadow .4s ease;
}


.gd-process-node::after {
    content: "";

    position: absolute;

    width: 86px;
    height: 86px;

    border-radius: 50%;

    border:
        1px dashed rgba(245,138,36,.35);

    transition:
        transform .5s ease;
}


.gd-process-node svg {
    position: relative;

    z-index: 3;

    width: 27px;
    height: 27px;

    fill: none;

    stroke: var(--gd-orange);

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        stroke .35s ease,
        transform .35s ease;
}


.gd-process-step:hover
.gd-process-node {
    transform:
        translateY(-8px);

    background:
        var(--gd-orange);

    box-shadow:
        0 18px 40px rgba(245,138,36,.22);
}


.gd-process-step:hover
.gd-process-node::after {
    transform:
        rotate(35deg)
        scale(1.07);
}


.gd-process-step:hover
.gd-process-node svg {
    stroke: white;

    transform:
        scale(1.08);
}


.gd-process-step:hover
.gd-process-number {
    color:
        rgba(245,138,36,.25);
}


/* =========================================================
   COPY
========================================================= */

.gd-process-copy small {
    display: block;

    margin-bottom: 6px;

    color:
        var(--gd-orange);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.gd-process-copy h3 {
    margin:
        0 0 10px;

    color:
        var(--gd-navy);

    font-size: 18px;

    font-weight: 900;
}


.gd-process-copy p {
    margin: 0;

    color:
        #7a8891;

    font-size: 10px;

    line-height: 1.75;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gd-process-section {
        padding:
            85px 0;
    }


    .gd-process-intro {
        margin-top: 15px;

        max-width: 650px;
    }


    .gd-process-track {
        grid-template-columns:
            repeat(2,1fr);

        gap:
            45px 25px;

        margin-top: 60px;
    }


    .gd-process-line {
        display: none;
    }


    .gd-process-step {
        padding:
            25px 20px;

        border:
            1px solid rgba(11,27,41,.08);

        background:
            rgba(255,255,255,.55);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gd-process-section {
        padding:
            70px 0;
    }


    .gd-process-heading h2 {
        font-size:
            clamp(38px,10vw,51px);
    }


    .gd-process-track {
        grid-template-columns:
            1fr;

        gap: 18px;
    }


    .gd-process-step {
        display: grid;

        grid-template-columns:
            40px 70px 1fr;

        align-items: center;

        gap: 14px;

        text-align: left;

        padding:
            18px;
    }


    .gd-process-number {
        margin: 0;

        font-size: 25px;
    }


    .gd-process-node {
        width: 58px;
        height: 58px;

        margin: 0;
    }


    .gd-process-node::after {
        width: 68px;
        height: 68px;
    }


    .gd-process-node svg {
        width: 23px;
        height: 23px;
    }


    .gd-process-copy h3 {
        font-size: 16px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .gd-process-step {
        grid-template-columns:
            34px 55px 1fr;

        gap: 10px;

        padding:
            15px 12px;
    }


    .gd-process-node {
        width: 50px;
        height: 50px;
    }


    .gd-process-node::after {
        width: 59px;
        height: 59px;
    }


    .gd-process-node svg {
        width: 20px;
        height: 20px;
    }


    .gd-process-copy p {
        font-size: 9px;
    }

}
/* =========================================================
   RESIDENTIAL + COMMERCIAL
========================================================= */

.gd-rescom-section {
    position: relative;
    overflow: hidden;

    padding: 105px 0;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(245,138,36,.06),
            transparent 24%
        ),
        linear-gradient(
            rgba(11,27,41,.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11,27,41,.02) 1px,
            transparent 1px
        ),
        #f7f8f8;

    background-size:
        auto,
        38px 38px,
        38px 38px,
        auto;
}


/* =========================================================
   HEADING
========================================================= */

.gd-rescom-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 17px;

    color: var(--gd-orange);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2.6px;

    text-transform: uppercase;
}


.gd-rescom-kicker::before,
.gd-rescom-kicker::after {
    content: "";

    width: 32px;
    height: 1px;

    background: var(--gd-orange);
}


.gd-rescom-heading h2 {
    max-width: 900px;

    margin: 0 auto;

    color: var(--gd-navy);

    font-size: clamp(42px,5vw,69px);

    line-height: .98;

    font-weight: 900;

    letter-spacing: -3px;
}


.gd-rescom-heading h2 span {
    color: var(--gd-orange);
}


/* =========================================================
   MAIN SPLIT
========================================================= */

.gd-rescom-wrap {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr 76px 1fr;

    align-items: center;

    max-width: 1150px;

    margin:
        70px auto 0;
}


/* =========================================================
   SIDE
========================================================= */

.gd-rescom-side {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    background: var(--gd-navy);

    box-shadow:
        0 30px 75px rgba(11,27,41,.16);

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}


.gd-rescom-side:hover {
    transform:
        translateY(-8px);

    box-shadow:
        0 38px 85px rgba(11,27,41,.23);
}


.gd-rescom-residential {
    border-radius:
        38px 4px 38px 4px;
}


.gd-rescom-commercial {
    border-radius:
        4px 38px 4px 38px;
}


/* photo */

.gd-rescom-side-bg {
    position: absolute;

    inset: 0;
}


.gd-rescom-side-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 7s ease;
}


.gd-rescom-side:hover
.gd-rescom-side-bg img {
    transform:
        scale(1.08);
}


/* overlay */

.gd-rescom-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(8,23,34,.08),
            rgba(8,23,34,.28) 48%,
            rgba(8,23,34,.88)
        );
}


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

.gd-rescom-content {
    position: absolute;

    z-index: 5;

    left: 0;
    right: 0;
    bottom: 0;

    padding:
        35px;
}


.gd-rescom-index {
    position: absolute;

    right: 25px;
    top: -80px;

    color:
        rgba(255,255,255,.12);

    font-size: 68px;

    line-height: 1;

    font-weight: 900;
}


.gd-rescom-icon {
    width: 53px;
    height: 53px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    border-radius: 50%;

    background:
        var(--gd-orange);

    box-shadow:
        0 12px 30px rgba(245,138,36,.28);

    transition:
        transform .4s ease;
}


.gd-rescom-side:hover
.gd-rescom-icon {
    transform:
        rotate(-8deg)
        translateY(-4px);
}


.gd-rescom-icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: white;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.gd-rescom-content small {
    display: block;

    margin-bottom: 6px;

    color:
        var(--gd-orange);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2.2px;

    text-transform: uppercase;
}


.gd-rescom-content h3 {
    margin:
        0 0 17px;

    color: white;

    font-size: 27px;

    font-weight: 900;
}


/* =========================================================
   TAGS
========================================================= */

.gd-rescom-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}


.gd-rescom-tags span {
    padding:
        7px 10px;

    border:
        1px solid rgba(255,255,255,.16);

    color:
        rgba(255,255,255,.7);

    background:
        rgba(255,255,255,.04);

    backdrop-filter:
        blur(7px);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: .8px;

    text-transform: uppercase;
}


/* =========================================================
   CENTER CONNECTOR
========================================================= */

.gd-rescom-center {
    position: relative;

    z-index: 8;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;
}


.gd-rescom-center > span {
    width: 1px;
    height: 155px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(11,27,41,.16)
        );
}


.gd-rescom-center > span:last-child {
    background:
        linear-gradient(
            to bottom,
            rgba(11,27,41,.16),
            transparent
        );
}


.gd-rescom-center-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--gd-orange);

    border:
        7px solid #f7f8f8;
}


.gd-rescom-center-icon svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: white;

    stroke-width: 2;
}


/* =========================================================
   PARAGRAPH
========================================================= */

.gd-rescom-copy {
    position: relative;

    display: grid;

    grid-template-columns:
        70px 1fr;

    gap: 25px;

    margin-top: 55px;

    padding-top: 32px;

    border-top:
        1px solid rgba(11,27,41,.1);
}


.gd-rescom-copy-line {
    display: block;

    width: 70px;
    height: 4px;

    margin-top: 10px;

    background:
        linear-gradient(
            90deg,
            var(--gd-orange),
            rgba(245,138,36,.1)
        );
}


.gd-rescom-copy p {
    margin: 0;

    color:
        #667985;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   EXPERT SERVICE
========================================================= */

.gd-expert-section {
    position: relative;
    overflow: hidden;

    padding:
        100px 0;

    background:
        linear-gradient(
            135deg,
            #081722,
            var(--gd-navy-2)
        );
}


/* subtle texture */

.gd-expert-section::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            135deg,
            transparent 0,
            transparent 28px,
            rgba(255,255,255,.018) 29px,
            transparent 30px
        );

    pointer-events: none;
}


/* orange top edge */

.gd-expert-section::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 38%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--gd-orange),
            transparent
        );
}


/* =========================================================
   LARGE BACKGROUND ICON
========================================================= */

.gd-expert-bg-icon {
    position: absolute;

    right: -100px;
    top: -80px;

    width: 380px;
    height: 380px;

    opacity: .035;
}


.gd-expert-bg-icon svg {
    width: 100%;
    height: 100%;

    fill: none;

    stroke: white;

    stroke-width: .6;
}


/* =========================================================
   EXPERT HEADING
========================================================= */

.gd-expert-heading {
    position: relative;

    z-index: 4;
}


.gd-expert-kicker {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 17px;

    color:
        var(--gd-orange);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2.6px;

    text-transform: uppercase;
}


.gd-expert-kicker::before {
    content: "";

    width: 37px;
    height: 2px;

    background:
        var(--gd-orange);
}


.gd-expert-heading h2 {
    margin: 0;

    color: white;

    font-size:
        clamp(39px,4.6vw,63px);

    line-height:
        .98;

    font-weight: 900;

    letter-spacing:
        -2.5px;
}


.gd-expert-heading h2 span {
    display: block;

    color:
        var(--gd-orange);
}


/* =========================================================
   EXPERT COPY
========================================================= */

.gd-expert-copy {
    position: relative;

    z-index: 4;
}


.gd-expert-copy p {
    margin: 0;

    color:
        rgba(255,255,255,.64);

    font-size: 13px;

    line-height: 1.95;
}


/* =========================================================
   FACTORS
========================================================= */

.gd-expert-factors {
    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    margin-top: 60px;

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

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


.gd-expert-factor {
    position: relative;

    min-height: 155px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        24px;

    border-right:
        1px solid rgba(255,255,255,.1);

    transition:
        background .35s ease;
}


.gd-expert-factor:last-child {
    border-right: 0;
}


.gd-expert-factor:hover {
    background:
        rgba(255,255,255,.035);
}


.gd-expert-factor > span {
    position: absolute;

    right: 15px;
    top: 12px;

    color:
        rgba(255,255,255,.09);

    font-size: 30px;

    font-weight: 900;
}


.gd-expert-factor-icon {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 13px;

    border-radius: 50%;

    border:
        1px solid rgba(245,138,36,.35);

    background:
        rgba(255,255,255,.025);

    transition:
        transform .35s ease,
        background .35s ease;
}


.gd-expert-factor-icon svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke:
        var(--gd-orange);

    stroke-width: 1.7;
}


.gd-expert-factor:hover
.gd-expert-factor-icon {
    transform:
        translateY(-5px);

    background:
        var(--gd-orange);
}


.gd-expert-factor:hover
.gd-expert-factor-icon svg {
    stroke: white;
}


.gd-expert-factor strong {
    color:
        rgba(255,255,255,.82);

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gd-rescom-section,
    .gd-expert-section {
        padding:
            85px 0;
    }


    .gd-rescom-wrap {
        grid-template-columns:
            1fr 50px 1fr;
    }


    .gd-rescom-side {
        min-height:
            430px;
    }


    .gd-rescom-content {
        padding:
            27px;
    }


    .gd-expert-factors {
        grid-template-columns:
            repeat(2,1fr);
    }


    .gd-expert-factor {
        border-bottom:
            1px solid rgba(255,255,255,.1);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gd-rescom-section,
    .gd-expert-section {
        padding:
            70px 0;
    }


    .gd-rescom-heading {
        text-align: left !important;
    }


    .gd-rescom-kicker::after {
        display: none;
    }


    .gd-rescom-heading h2 {
        font-size:
            clamp(38px,10vw,51px);
    }


    .gd-rescom-wrap {
        grid-template-columns:
            1fr;

        gap: 18px;

        margin-top:
            50px;
    }


    .gd-rescom-side {
        min-height:
            380px;
    }


    .gd-rescom-center {
        flex-direction: row;
    }


    .gd-rescom-center > span {
        width: 100%;
        height: 1px;

        background:
            linear-gradient(
                to right,
                transparent,
                rgba(11,27,41,.15)
            );
    }


    .gd-rescom-center > span:last-child {
        background:
            linear-gradient(
                to right,
                rgba(11,27,41,.15),
                transparent
            );
    }


    .gd-rescom-copy {
        grid-template-columns:
            1fr;

        gap: 15px;

        margin-top:
            40px;
    }


    .gd-expert-heading h2 {
        font-size:
            clamp(36px,9vw,48px);
    }


    .gd-expert-copy {
        margin-top:
            12px;
    }


    .gd-expert-factors {
        grid-template-columns:
            1fr;

        margin-top:
            45px;
    }


    .gd-expert-factor {
        min-height:
            115px;

        border-right: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .gd-rescom-side {
        min-height:
            330px;
    }


    .gd-rescom-content {
        padding:
            22px;
    }


    .gd-rescom-content h3 {
        font-size:
            22px;
    }


    .gd-rescom-copy p,
    .gd-expert-copy p {
        font-size:
            12px;
    }

}

/* =========================================================
   ARCHITECTURAL GALLERY
========================================================= */

.gd-arch-gallery {
    position: relative;
    overflow: hidden;

    padding: 100px 0 0;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(245,138,36,.06),
            transparent 22%
        ),
        #f7f8f8;
}


/* =========================================================
   HEADING
========================================================= */

.gd-arch-heading {
    padding-bottom: 55px;
}


.gd-arch-kicker {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 17px;

    color: var(--gd-orange);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.gd-arch-kicker::before {
    content: "";

    width: 38px;
    height: 2px;

    background: var(--gd-orange);
}


.gd-arch-heading h2 {
    margin: 0;

    color: var(--gd-navy);

    font-size: clamp(42px,5vw,68px);

    line-height: .98;

    font-weight: 900;

    letter-spacing: -3px;
}


.gd-arch-heading h2 span {
    display: block;

    color: var(--gd-orange);
}


.gd-arch-intro {
    max-width: 470px;

    margin: 0 0 55px auto;

    color: #71818b;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   FULL WIDTH MOSAIC
========================================================= */

.gd-arch-grid {
    display: grid;

    grid-template-columns:
        repeat(12, 1fr);

    grid-template-rows:
        repeat(2, 320px);

    gap: 3px;

    width: 100%;
}


/* =========================================================
   ITEM POSITIONS
========================================================= */

.gd-arch-item-1 {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
}

.gd-arch-item-2 {
    grid-column: 6 / 9;
    grid-row: 1;
}

.gd-arch-item-3 {
    grid-column: 9 / 13;
    grid-row: 1;
}

.gd-arch-item-4 {
    grid-column: 8 / 13;
    grid-row: 2;
}

.gd-arch-item-5 {
    grid-column: 6 / 8;
    grid-row: 2;
}

.gd-arch-item-6 {
    grid-column: 5 / 6;
    grid-row: 2;
}


/* =========================================================
   ITEM
========================================================= */

.gd-arch-item {
    position: relative;

    overflow: hidden;

    background: var(--gd-navy);

    isolation: isolate;
}


/* =========================================================
   IMAGE
========================================================= */

.gd-arch-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform: scale(1.01);

    transition:
        transform 6s ease,
        filter .4s ease;
}


.gd-arch-item:hover img {
    transform: scale(1.07);

    filter:
        saturate(1.08)
        contrast(1.03);
}


/* =========================================================
   OVERLAY
========================================================= */

.gd-arch-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(8,23,34,.12) 58%,
            rgba(8,23,34,.9) 100%
        );

    transition:
        background .4s ease;
}


.gd-arch-item:hover
.gd-arch-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(245,138,36,.02),
            rgba(8,23,34,.08) 55%,
            rgba(8,23,34,.94) 100%
        );
}


/* =========================================================
   ORANGE ACCENT
========================================================= */

.gd-arch-item::before {
    content: "";

    position: absolute;

    z-index: 7;

    left: 0;
    top: 0;

    width: 0;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--gd-orange),
            var(--gd-orange-light)
        );

    transition: width .45s ease;
}


.gd-arch-item:hover::before {
    width: 100%;
}


/* =========================================================
   INFO
========================================================= */

.gd-arch-info {
    position: absolute;

    z-index: 6;

    left: 20px;
    right: 20px;
    bottom: 20px;

    display: flex;
    align-items: flex-end;

    gap: 12px;

    transform: translateY(6px);

    transition: transform .35s ease;
}


.gd-arch-item:hover
.gd-arch-info {
    transform: translateY(0);
}


.gd-arch-info > span {
    color:
        rgba(255,255,255,.26);

    font-size: 30px;

    line-height: 1;

    font-weight: 900;
}


.gd-arch-info small {
    display: block;

    margin-bottom: 5px;

    color: var(--gd-orange);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}


.gd-arch-info strong {
    display: block;

    color: white;

    font-size: 13px;

    line-height: 1.3;

    font-weight: 900;
}


/* =========================================================
   MAIN PHOTO TITLE
========================================================= */

.gd-arch-item-1
.gd-arch-info strong {
    font-size: 22px;
}


/* =========================================================
   SMALL ITEM TEXT
========================================================= */

.gd-arch-item-6
.gd-arch-info {
    left: 10px;
    right: 10px;
    bottom: 12px;

    gap: 7px;
}


.gd-arch-item-6
.gd-arch-info > span {
    font-size: 19px;
}


.gd-arch-item-6
.gd-arch-info strong {
    font-size: 8px;
}


.gd-arch-item-6
.gd-arch-info small {
    font-size: 5px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gd-arch-gallery {
        padding-top: 85px;
    }


    .gd-arch-heading {
        padding-bottom: 10px;
    }


    .gd-arch-intro {
        margin:
            10px 0 45px;

        max-width: 650px;
    }


    .gd-arch-grid {
        grid-template-columns:
            repeat(2, 1fr);

        grid-template-rows:
            none;

        grid-auto-rows:
            320px;
    }


    .gd-arch-item-1,
    .gd-arch-item-2,
    .gd-arch-item-3,
    .gd-arch-item-4,
    .gd-arch-item-5,
    .gd-arch-item-6 {
        grid-column: auto;
        grid-row: auto;
    }


    .gd-arch-item-1 {
        grid-column:
            span 2;

        height: 450px;
    }


    .gd-arch-item-6
    .gd-arch-info {
        left: 20px;
        right: 20px;
        bottom: 20px;

        gap: 12px;
    }


    .gd-arch-item-6
    .gd-arch-info > span {
        font-size: 30px;
    }


    .gd-arch-item-6
    .gd-arch-info strong {
        font-size: 13px;
    }


    .gd-arch-item-6
    .gd-arch-info small {
        font-size: 7px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gd-arch-gallery {
        padding-top: 70px;
    }


    .gd-arch-heading h2 {
        font-size:
            clamp(38px,10vw,51px);

        letter-spacing:
            -2px;
    }


    .gd-arch-grid {
        grid-template-columns:
            1fr;

        grid-auto-rows:
            300px;
    }


    .gd-arch-item-1,
    .gd-arch-item-2,
    .gd-arch-item-3,
    .gd-arch-item-4,
    .gd-arch-item-5,
    .gd-arch-item-6 {
        grid-column: auto;
        grid-row: auto;

        height: auto;
    }


    .gd-arch-item-1 {
        height: 380px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .gd-arch-grid {
        grid-auto-rows:
            260px;
    }


    .gd-arch-item-1 {
        height: 320px;
    }


    .gd-arch-info {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }


    .gd-arch-info > span {
        font-size: 24px;
    }


    .gd-arch-info strong,
    .gd-arch-item-1
    .gd-arch-info strong {
        font-size: 12px;
    }

}
/* =========================================================
   GARAGE DOOR BRANDS
========================================================= */

.gd-brands-section {
    position: relative;
    overflow: hidden;

    padding: 105px 0 85px;

    background:
        radial-gradient(
            circle at 7% 15%,
            rgba(245, 138, 36, .08),
            transparent 22%
        ),
        radial-gradient(
            circle at 93% 80%,
            rgba(17, 42, 60, .06),
            transparent 25%
        ),
        linear-gradient(
            rgba(11, 27, 41, .025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11, 27, 41, .025) 1px,
            transparent 1px
        ),
        #f7f8f8;

    background-size:
        auto,
        auto,
        45px 45px,
        45px 45px,
        auto;
}


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

.gd-brands-bg-icon {
    position: absolute;

    color: var(--gd-navy);

    opacity: .025;

    pointer-events: none;
}


.gd-brands-bg-icon-1 {
    left: -40px;
    bottom: -70px;

    font-size: 260px;

    transform: rotate(-8deg);
}


.gd-brands-bg-icon-2 {
    right: -30px;
    top: -50px;

    font-size: 220px;

    transform: rotate(10deg);
}


/* =========================================================
   HEADING
========================================================= */

.gd-brands-heading {
    position: relative;
    z-index: 2;
}


.gd-brands-kicker {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 17px;

    color: var(--gd-orange);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.gd-brands-kicker::before {
    content: "";

    width: 38px;
    height: 2px;

    background: var(--gd-orange);
}


.gd-brands-heading h2 {
    margin: 0;

    color: var(--gd-navy);

    font-size: clamp(42px, 5vw, 68px);

    line-height: .98;

    font-weight: 900;

    letter-spacing: -3px;
}


.gd-brands-heading h2 span {
    display: block;

    color: var(--gd-orange);
}


/* =========================================================
   INTRO
========================================================= */

.gd-brands-intro {
    max-width: 470px;

    margin: 0 0 5px auto;

    color: #71818b;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   BRAND RAIL
========================================================= */

.gd-brands-rail {
    position: relative;
    z-index: 4;

    display: grid;

    grid-template-columns:
        repeat(11, minmax(145px, 1fr));

    width: 100%;

    margin-top: 65px;

    border-top:
        1px solid rgba(11, 27, 41, .09);

    border-bottom:
        1px solid rgba(11, 27, 41, .09);

    background:
        rgba(255, 255, 255, .55);

    overflow-x: auto;

    scrollbar-width: none;
}


.gd-brands-rail::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   BRAND
========================================================= */

.gd-brand-item {
    position: relative;

    min-height: 205px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 30px 14px;

    border-right:
        1px solid rgba(11, 27, 41, .08);

    transition:
        background .4s ease,
        transform .4s ease;
}


.gd-brand-item:last-child {
    border-right: 0;
}


.gd-brand-item:hover {
    background:
        var(--gd-navy);
}


/* =========================================================
   NUMBER
========================================================= */

.gd-brand-number {
    position: absolute;

    left: 11px;
    top: 11px;

    color:
        rgba(11, 27, 41, .25);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;

    transition:
        color .35s ease;
}


.gd-brand-item:hover
.gd-brand-number {
    color:
        rgba(255, 255, 255, .35);
}


/* =========================================================
   BRAND MARK
========================================================= */

.gd-brand-mark {
    position: relative;

    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(11, 27, 41, .12);

    color:
        var(--gd-navy);

    background:
        #fff;

    font-size: 17px;

    font-weight: 900;

    letter-spacing: -1px;

    box-shadow:
        0 10px 30px rgba(11, 27, 41, .07);

    transition:
        color .4s ease,
        background .4s ease,
        border-color .4s ease,
        transform .4s ease;
}


/* ORANGE DOT */

.gd-brand-mark::after {
    content: "";

    position: absolute;

    right: 3px;
    bottom: 6px;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    border:
        2px solid white;

    background:
        var(--gd-orange);
}


.gd-brand-item:hover
.gd-brand-mark {
    transform:
        translateY(-5px)
        rotate(-4deg);

    color:
        white;

    border-color:
        var(--gd-orange);

    background:
        var(--gd-orange);
}


/* =========================================================
   BRAND NAME
========================================================= */

.gd-brand-item > strong {
    color:
        var(--gd-navy);

    font-size: 11px;

    font-weight: 900;

    text-align: center;

    letter-spacing: .3px;

    transition:
        color .35s ease;
}


.gd-brand-item:hover > strong {
    color:
        white;
}


/* =========================================================
   ORANGE BOTTOM LINE
========================================================= */

.gd-brand-item::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 4px;

    transform:
        translateX(-50%);

    background:
        var(--gd-orange);

    transition:
        width .4s ease;
}


.gd-brand-item:hover::after {
    width: 100%;
}


/* =========================================================
   BOTTOM STRIP
========================================================= */

.gd-brands-bottom {
    position: relative;
    z-index: 3;

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;
}


.gd-brands-bottom-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    background:
        var(--gd-orange);

    font-size: 14px;

    box-shadow:
        0 10px 25px rgba(245, 138, 36, .2);
}


.gd-brands-bottom > span {
    color:
        var(--gd-navy);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}


.gd-brands-line {
    flex: 1;

    height: 1px;

    background:
        rgba(11, 27, 41, .1);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gd-brands-section {
        padding:
            85px 0 70px;
    }


    .gd-brands-intro {
        max-width: 650px;

        margin:
            15px 0 0;
    }


    .gd-brands-rail {
        margin-top:
            50px;

        grid-template-columns:
            repeat(11, 155px);
    }


    .gd-brand-item {
        min-height:
            190px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gd-brands-section {
        padding:
            70px 0 60px;
    }


    .gd-brands-heading h2 {
        font-size:
            clamp(38px, 10vw, 51px);

        letter-spacing:
            -2px;
    }


    .gd-brands-rail {
        grid-template-columns:
            repeat(11, 145px);

        margin-top:
            42px;
    }


    .gd-brand-item {
        min-height:
            175px;
    }


    .gd-brand-mark {
        width:
            58px;

        height:
            58px;

        font-size:
            14px;
    }


    .gd-brands-bottom {
        flex-wrap: wrap;

        gap: 10px;

        margin-top:
            25px;
    }


    .gd-brands-line {
        min-width:
            20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .gd-brands-rail {
        grid-template-columns:
            repeat(11, 135px);
    }


    .gd-brand-item {
        min-height:
            165px;
    }


    .gd-brands-bottom-icon {
        width:
            36px;

        height:
            36px;

        flex-basis:
            36px;
    }

}
/* =========================================================
   OWNERSHIP CARE - BLUEPRINT
========================================================= */

.gd-care-blueprint {
    position: relative;
    overflow: hidden;
    padding: 110px 0;

    background:
        linear-gradient(
            rgba(11,27,41,.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11,27,41,.022) 1px,
            transparent 1px
        ),
        #f7f8f8;

    background-size:
        42px 42px,
        42px 42px,
        auto;
}


/* =========================================================
   HUGE BACKGROUND WORD
========================================================= */

.gd-care-bg-word {
    position: absolute;

    right: -30px;
    bottom: -75px;

    color: rgba(11,27,41,.025);

    font-size: clamp(170px,22vw,380px);
    font-weight: 900;

    line-height: .8;

    letter-spacing: -25px;

    pointer-events: none;
}


/* =========================================================
   LEFT
========================================================= */

.gd-care-left {
    position: relative;
    height: 100%;

    padding-right: 45px;
}


/* kicker */

.gd-care-kicker {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 18px;

    color: var(--gd-orange);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.gd-care-kicker::before {
    content: "";

    width: 38px;
    height: 2px;

    background: var(--gd-orange);
}


/* heading */

.gd-care-left h2 {
    max-width: 520px;

    margin: 0;

    color: var(--gd-navy);

    font-size: clamp(42px,4.8vw,67px);

    line-height: .97;

    font-weight: 900;

    letter-spacing: -3px;
}


.gd-care-left h2 span {
    display: block;

    color: var(--gd-orange);
}


/* orange line */

.gd-care-orange-line {
    width: 80px;
    height: 5px;

    margin: 29px 0;

    background:
        linear-gradient(
            90deg,
            var(--gd-orange),
            var(--gd-orange-light)
        );
}


/* intro */

.gd-care-intro {
    max-width: 500px;

    margin: 0;

    color: #687985;

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   GARAGE DOOR DRAWING
========================================================= */

.gd-care-door-art {
    position: relative;

    width: 310px;
    max-width: 82%;

    margin:
        55px auto 0;

    opacity: .13;
}


.gd-care-door-art svg {
    display: block;

    width: 100%;
}


.gd-care-door-art path,
.gd-care-door-art rect {
    fill: none;

    stroke: var(--gd-navy);

    stroke-linecap: round;
    stroke-linejoin: round;
}


.door-house {
    stroke-width: 2;
}


.door-frame {
    stroke-width: 2;
}


.door-panel {
    stroke-width: 1.4;
}


.door-middle {
    stroke-width: 1.4;
}


/* dots */

.gd-care-art-dot {
    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--gd-orange);

    box-shadow:
        0 0 0 7px rgba(245,138,36,.12);
}


.gd-care-dot-1 {
    left: 19%;
    top: 39%;
}


.gd-care-dot-2 {
    right: 19%;
    bottom: 8%;
}


/* =========================================================
   RIGHT SYSTEM
========================================================= */

.gd-care-system {
    position: relative;

    padding:
        8px 0 0 42px;
}


/* main vertical rail */

.gd-care-rail {
    position: absolute;

    z-index: 0;

    left: 76px;
    top: 45px;
    bottom: 95px;

    width: 2px;

    background:
        linear-gradient(
            180deg,
            var(--gd-orange),
            rgba(245,138,36,.18)
        );
}


/* =========================================================
   STAGE
========================================================= */

.gd-care-stage {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        105px 1fr;

    align-items: center;

    min-height: 145px;

    border-bottom:
        1px solid rgba(11,27,41,.09);

    transition:
        padding .4s ease,
        border-color .4s ease;
}


.gd-care-stage:first-of-type {
    border-top:
        1px solid rgba(11,27,41,.09);
}


.gd-care-stage:hover {
    padding-left: 12px;

    border-color:
        rgba(245,138,36,.35);
}


/* =========================================================
   MARKER
========================================================= */

.gd-care-stage-marker {
    position: relative;

    height: 100%;

    display: flex;

    align-items: center;
}


.gd-care-stage-number {
    position: absolute;

    left: -34px;
    top: 16px;

    color: rgba(11,27,41,.13);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;
}


/* =========================================================
   ICON
========================================================= */

.gd-care-stage-icon {
    position: relative;
    z-index: 3;

    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        7px solid #f7f8f8;

    background:
        var(--gd-navy);

    box-shadow:
        0 0 0 1px rgba(11,27,41,.09);

    transition:
        transform .4s ease,
        background .4s ease,
        box-shadow .4s ease;
}


.gd-care-stage-icon svg {
    width: 26px;
    height: 26px;

    fill: none;

    stroke: var(--gd-orange);

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        stroke .35s ease,
        transform .35s ease;
}


.gd-care-stage:hover
.gd-care-stage-icon {
    transform:
        scale(1.08)
        rotate(-5deg);

    background:
        var(--gd-orange);

    box-shadow:
        0 12px 30px rgba(245,138,36,.22);
}


.gd-care-stage:hover
.gd-care-stage-icon svg {
    stroke: white;

    transform: scale(1.08);
}


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

.gd-care-stage-content {
    position: relative;

    padding:
        24px 15px 24px 8px;
}


.gd-care-stage-label {
    display: block;

    margin-bottom: 5px;

    color: var(--gd-orange);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.gd-care-stage-content h3 {
    margin:
        0 0 8px;

    color: var(--gd-navy);

    font-size: 20px;
    font-weight: 900;

    letter-spacing: -.5px;
}


.gd-care-stage-content p {
    max-width: 500px;

    margin: 0;

    color: #768690;

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   HOVER ARROW
========================================================= */

.gd-care-stage-content::after {
    content: "→";

    position: absolute;

    right: 10px;
    top: 50%;

    color: var(--gd-orange);

    font-size: 25px;

    opacity: 0;

    transform:
        translate(-15px,-50%);

    transition:
        opacity .35s ease,
        transform .35s ease;
}


.gd-care-stage:hover
.gd-care-stage-content::after {
    opacity: 1;

    transform:
        translate(0,-50%);
}


/* =========================================================
   FINAL MESSAGE
========================================================= */

.gd-care-final {
    position: relative;

    display: grid;

    grid-template-columns:
        55px 1fr;

    align-items: center;

    gap: 17px;

    margin-top: 30px;

    padding:
        22px 25px;

    overflow: hidden;

    background:
        var(--gd-navy);

    box-shadow:
        0 20px 50px rgba(11,27,41,.13);
}


.gd-care-final::after {
    content: "";

    position: absolute;

    right: -40px;
    top: -80px;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    border:
        30px solid rgba(245,138,36,.05);
}


/* icon */

.gd-care-final-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(245,138,36,.12);
}


.gd-care-final-icon svg {
    width: 24px;
    height: 24px;

    fill: none;

    stroke: var(--gd-orange);

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.gd-care-final p {
    position: relative;
    z-index: 2;

    max-width: 570px;

    margin: 0;

    color:
        rgba(255,255,255,.8);

    font-size: 12px;

    line-height: 1.7;

    font-weight: 700;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gd-care-blueprint {
        padding:
            85px 0;
    }


    .gd-care-left {
        padding-right: 0;
    }


    .gd-care-intro {
        max-width: 700px;
    }


    .gd-care-door-art {
        display: none;
    }


    .gd-care-system {
        margin-top: 20px;

        padding-left: 30px;
    }


    .gd-care-rail {
        left: 64px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gd-care-blueprint {
        padding:
            70px 0;
    }


    .gd-care-left h2 {
        font-size:
            clamp(38px,10vw,51px);

        letter-spacing:
            -2px;
    }


    .gd-care-system {
        padding-left: 0;
    }


    .gd-care-rail {
        left: 30px;

        top: 45px;
        bottom: 120px;
    }


    .gd-care-stage {
        grid-template-columns:
            76px 1fr;

        min-height:
            150px;
    }


    .gd-care-stage-number {
        display: none;
    }


    .gd-care-stage-icon {
        width: 60px;
        height: 60px;

        border-width: 6px;
    }


    .gd-care-stage-icon svg {
        width: 22px;
        height: 22px;
    }


    .gd-care-stage-content {
        padding:
            22px 5px 22px 5px;
    }


    .gd-care-stage-content h3 {
        font-size: 17px;
    }


    .gd-care-stage-content::after {
        display: none;
    }


    .gd-care-final {
        margin-top: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .gd-care-stage {
        grid-template-columns:
            65px 1fr;
    }


    .gd-care-rail {
        left: 26px;
    }


    .gd-care-stage-icon {
        width: 52px;
        height: 52px;

        border-width: 5px;
    }


    .gd-care-stage-content h3 {
        font-size: 15px;
    }


    .gd-care-stage-content p {
        font-size: 10px;
    }


    .gd-care-final {
        grid-template-columns: 1fr;

        padding: 20px;
    }

}
/* =========================================================
   LUXURY COUPON
========================================================= */

.gd-luxury-coupon {
    position: relative;
    overflow: hidden;

    padding: 105px 0;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(245,138,36,.07),
            transparent 22%
        ),
        #f7f8f8;
}


/* =========================================================
   WRAP
========================================================= */

.gd-luxury-wrap {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    padding: 75px 70px 0;

    background:
        linear-gradient(
            135deg,
            #081722,
            var(--gd-navy) 48%,
            var(--gd-navy-2)
        );

    box-shadow:
        0 35px 90px rgba(11,27,41,.24);
}


/* top orange line */

.gd-luxury-wrap::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 45%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--gd-orange),
            var(--gd-orange-light),
            transparent
        );
}


/* texture */

.gd-luxury-wrap::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -4;

    background:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );

    background-size:
        42px 42px;
}


/* =========================================================
   ORANGE GLOW
========================================================= */

.gd-luxury-glow {
    position: absolute;

    z-index: -2;

    width: 450px;
    height: 450px;

    left: -190px;
    bottom: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245,138,36,.22),
            rgba(245,138,36,.06) 35%,
            transparent 68%
        );

    filter: blur(7px);
}


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

.gd-luxury-bg-word {
    position: absolute;

    z-index: -1;

    right: -25px;
    top: 5px;

    color:
        rgba(255,255,255,.025);

    font-size:
        clamp(130px,16vw,250px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -13px;

    pointer-events: none;
}


/* =========================================================
   LEFT
========================================================= */

.gd-luxury-left {
    position: relative;

    z-index: 5;

    padding-bottom: 65px;
}


.gd-luxury-kicker {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 30px;

    color:
        var(--gd-orange);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.gd-luxury-kicker::before {
    content: "";

    width: 40px;
    height: 2px;

    background:
        var(--gd-orange);
}


/* =========================================================
   DISCOUNT
========================================================= */

.gd-luxury-discount {
    display: flex;

    align-items: flex-start;

    gap: 7px;

    margin-bottom: 30px;
}


.gd-luxury-dollar {
    margin-top: 12px;

    color:
        var(--gd-orange);

    font-size: 29px;

    font-weight: 900;
}


.gd-luxury-discount > strong {
    color:
        white;

    font-size:
        clamp(100px,10vw,150px);

    line-height: .75;

    font-weight: 900;

    letter-spacing: -8px;
}


.gd-luxury-discount > div {
    padding-top: 10px;
}


.gd-luxury-discount > div > span {
    display: block;

    color:
        var(--gd-orange);

    font-size: 32px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: 1px;
}


.gd-luxury-discount small {
    display: block;

    max-width: 95px;

    margin-top: 8px;

    color:
        rgba(255,255,255,.38);

    font-size: 7px;

    line-height: 1.4;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* =========================================================
   LEFT TITLE
========================================================= */

.gd-luxury-left h2 {
    max-width: 560px;

    margin:
        0 0 18px;

    color:
        white;

    font-size:
        clamp(40px,4.6vw,63px);

    line-height: .96;

    font-weight: 900;

    letter-spacing: -2.7px;
}


.gd-luxury-left h2 span {
    display: block;

    color:
        var(--gd-orange);
}


.gd-luxury-left p {
    max-width: 450px;

    margin: 0;

    color:
        rgba(255,255,255,.55);

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   RIGHT
========================================================= */

.gd-luxury-right {
    position: relative;

    z-index: 5;

    padding:
        5px 0 65px 35px;

    border-left:
        1px solid rgba(255,255,255,.1);
}


/* =========================================================
   COUPON CODE
========================================================= */

.gd-luxury-code {
    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 20px;

    margin-bottom: 30px;

    padding-bottom: 25px;

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


.gd-luxury-code > div > span {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(255,255,255,.4);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


.gd-luxury-code strong {
    color:
        var(--gd-orange);

    font-size: 21px;

    letter-spacing: 4px;
}


.gd-luxury-code-line {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.05),
            rgba(245,138,36,.5),
            rgba(255,255,255,.05)
        );
}


.gd-luxury-code small {
    color:
        rgba(255,255,255,.3);

    font-size: 7px;

    letter-spacing: 1px;
}


/* =========================================================
   SERVICES
========================================================= */

.gd-luxury-services {
    margin-bottom: 30px;
}


.gd-luxury-service {
    position: relative;

    display: grid;

    grid-template-columns:
        35px 1fr;

    align-items: center;

    min-height: 52px;

    border-bottom:
        1px solid rgba(255,255,255,.08);

    transition:
        padding-left .35s ease,
        border-color .35s ease;
}


.gd-luxury-service:hover {
    padding-left: 8px;

    border-color:
        rgba(245,138,36,.35);
}


.gd-luxury-service > span {
    color:
        var(--gd-orange);

    font-size: 8px;

    font-weight: 900;
}


.gd-luxury-service strong {
    color:
        rgba(255,255,255,.75);

    font-size: 10px;

    font-weight: 800;

    transition:
        color .35s ease;
}


.gd-luxury-service:hover strong {
    color:
        white;
}


/* orange dot */

.gd-luxury-service::after {
    content: "";

    position: absolute;

    right: 2px;
    top: 50%;

    width: 5px;
    height: 5px;

    transform:
        translateY(-50%)
        scale(0);

    border-radius: 50%;

    background:
        var(--gd-orange);

    transition:
        transform .35s ease;
}


.gd-luxury-service:hover::after {
    transform:
        translateY(-50%)
        scale(1);
}


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

.gd-luxury-btn {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    min-height: 62px;

    padding:
        0 7px 0 22px;

    color:
        white;

    background:
        var(--gd-orange);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    transition:
        background .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}


.gd-luxury-btn:hover {
    color:
        white;

    transform:
        translateY(-4px);

    background:
        var(--gd-orange-dark);

    box-shadow:
        0 17px 35px rgba(245,138,36,.22);
}


/* button circle */

.gd-luxury-btn-circle {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--gd-navy);

    transition:
        transform .35s ease;
}


.gd-luxury-btn-circle svg {
    width: 19px;
    height: 19px;

    fill: none;

    stroke:
        white;

    stroke-width: 1.8;
}


.gd-luxury-btn:hover
.gd-luxury-btn-circle {
    transform:
        translateX(3px)
        rotate(-5deg);
}


/* =========================================================
   NOTE
========================================================= */

.gd-luxury-note {
    margin:
        16px 0 0;

    color:
        rgba(255,255,255,.28);

    font-size: 7px;

    line-height: 1.6;
}


/* =========================================================
   BOTTOM STRIP
========================================================= */

.gd-luxury-bottom {
    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        auto 1fr auto auto auto;

    align-items: center;

    gap: 18px;

    min-height: 65px;

    margin:
        0 -70px;

    padding:
        0 70px;

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

    background:
        rgba(255,255,255,.025);
}


.gd-luxury-bottom > div {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.05),
            rgba(245,138,36,.42),
            rgba(255,255,255,.05)
        );
}


.gd-luxury-bottom span {
    color:
        rgba(255,255,255,.36);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


.gd-luxury-bottom span:first-child {
    color:
        var(--gd-orange);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gd-luxury-coupon {
        padding:
            85px 0;
    }


    .gd-luxury-wrap {
        padding:
            60px 50px 0;
    }


    .gd-luxury-left {
        padding-bottom:
            20px;
    }


    .gd-luxury-right {
        padding:
            40px 0 55px;

        border-left: 0;

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


    .gd-luxury-bottom {
        margin:
            0 -50px;

        padding:
            0 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gd-luxury-coupon {
        padding:
            70px 0;
    }


    .gd-luxury-wrap {
        padding:
            45px 27px 0;
    }


    .gd-luxury-discount > strong {
        font-size:
            95px;
    }


    .gd-luxury-left h2 {
        font-size:
            clamp(35px,9vw,47px);
    }


    .gd-luxury-right {
        padding-bottom:
            45px;
    }


    .gd-luxury-code {
        grid-template-columns:
            1fr;
    }


    .gd-luxury-code-line {
        display: none;
    }


    .gd-luxury-bottom {
        margin:
            0 -27px;

        padding:
            20px 27px;

        grid-template-columns:
            1fr 1fr;

        min-height:
            auto;
    }


    .gd-luxury-bottom > div {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .gd-luxury-wrap {
        padding:
            40px 20px 0;
    }


    .gd-luxury-discount > strong {
        font-size:
            80px;

        letter-spacing:
            -5px;
    }


    .gd-luxury-discount > div > span {
        font-size:
            25px;
    }


    .gd-luxury-btn {
        min-height:
            57px;

        padding-left:
            16px;

        font-size:
            9px;
    }


    .gd-luxury-btn-circle {
        width:
            43px;

        height:
            43px;
    }


    .gd-luxury-bottom {
        margin:
            0 -20px;

        padding:
            18px 20px;

        grid-template-columns:
            1fr;
    }

}
/* =========================================================
   DIAGNOSTIC FAQ
========================================================= */

.gd-diagnostic-faq {
    position: relative;
    overflow: hidden;

    padding: 110px 0;

    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(245,138,36,.08),
            transparent 22%
        ),
        radial-gradient(
            circle at 95% 85%,
            rgba(17,43,61,.06),
            transparent 25%
        ),
        linear-gradient(
            rgba(11,27,41,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11,27,41,.025) 1px,
            transparent 1px
        ),
        #f7f8f8;

    background-size:
        auto,
        auto,
        46px 46px,
        46px 46px,
        auto;
}


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

.gd-diagnostic-word {
    position: absolute;

    right: -30px;
    top: 40px;

    color:
        rgba(11,27,41,.025);

    font-size:
        clamp(170px,25vw,400px);

    font-weight: 900;

    line-height: .8;

    letter-spacing: -25px;

    pointer-events: none;
}


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

.gd-diagnostic-head {
    position: relative;
    z-index: 3;

    margin-bottom: 80px;
}


.gd-diagnostic-kicker {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 18px;

    color: var(--gd-orange);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.gd-diagnostic-kicker::before {
    content: "";

    width: 40px;
    height: 2px;

    background:
        var(--gd-orange);
}


.gd-diagnostic-head h2 {
    max-width: 700px;

    margin: 0;

    color: var(--gd-navy);

    font-size:
        clamp(45px,5.5vw,75px);

    line-height: .94;

    font-weight: 900;

    letter-spacing: -3.5px;
}


.gd-diagnostic-head h2 span {
    display: block;

    color: var(--gd-orange);
}


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

.gd-diagnostic-head-note {
    position: relative;

    display: grid;

    grid-template-columns:
        70px 1fr;

    align-items: center;

    gap: 20px;

    padding-left: 30px;

    border-left:
        1px solid rgba(11,27,41,.12);
}


.gd-diagnostic-head-number {
    color:
        rgba(11,27,41,.08);

    font-size: 62px;

    line-height: 1;

    font-weight: 900;
}


.gd-diagnostic-head-note p {
    margin: 0;

    color: #71818b;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   FAQ SYSTEM
========================================================= */

.gd-diagnostic-system {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr 90px 1fr;

    row-gap: 35px;

    align-items: start;
}


/* =========================================================
   CENTRAL RAIL
========================================================= */

.gd-diagnostic-rail {
    position: absolute;

    z-index: 0;

    left: 50%;
    top: 0;
    bottom: 0;

    width: 2px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(245,138,36,.45) 10%,
            var(--gd-orange) 50%,
            rgba(245,138,36,.45) 90%,
            transparent
        );
}


/* dots */

.gd-rail-dot {
    position: absolute;

    left: 50%;

    width: 14px;
    height: 14px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    border:
        4px solid #f7f8f8;

    background:
        var(--gd-orange);

    box-shadow:
        0 0 0 1px rgba(245,138,36,.3),
        0 0 20px rgba(245,138,36,.25);
}


.gd-rail-dot-1 {
    top: 10%;
}


.gd-rail-dot-2 {
    top: 35%;
}


.gd-rail-dot-3 {
    top: 62%;
}


.gd-rail-dot-4 {
    top: 88%;
}


/* =========================================================
   FAQ POSITIONS
========================================================= */

.gd-diagnostic-item {
    position: relative;

    z-index: 3;

    overflow: hidden;

    border:
        1px solid rgba(11,27,41,.09);

    background:
        rgba(255,255,255,.72);

    box-shadow:
        0 20px 55px rgba(11,27,41,.06);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}


.gd-diagnostic-left {
    grid-column: 1;
}


.gd-diagnostic-right {
    grid-column: 3;
}


/* staggered positioning */

.gd-diagnostic-item:nth-of-type(2) {
    margin-top: 95px;
}


.gd-diagnostic-item:nth-of-type(3) {
    margin-top: -20px;
}


.gd-diagnostic-item:nth-of-type(4) {
    margin-top: 75px;
}


/* hover */

.gd-diagnostic-item:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(245,138,36,.28);

    box-shadow:
        0 28px 65px rgba(11,27,41,.1);
}


/* active */

.gd-diagnostic-item[open] {
    border-color:
        rgba(245,138,36,.25);

    background:
        #fff;
}


/* orange corner */

.gd-diagnostic-item::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 4px;

    background:
        var(--gd-orange);

    transition:
        width .4s ease;
}


.gd-diagnostic-item[open]::after,
.gd-diagnostic-item:hover::after {
    width: 100%;
}


/* =========================================================
   SUMMARY
========================================================= */

.gd-diagnostic-item summary {
    cursor: pointer;

    list-style: none;
}


.gd-diagnostic-item summary::-webkit-details-marker {
    display: none;
}


.gd-diagnostic-summary {
    position: relative;

    display: grid;

    grid-template-columns:
        50px 62px 1fr 35px;

    align-items: center;

    gap: 13px;

    min-height: 150px;

    padding:
        25px 22px;
}


/* =========================================================
   NUMBER
========================================================= */

.gd-diagnostic-no {
    align-self: start;

    padding-top: 4px;

    color:
        rgba(11,27,41,.16);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

    transition:
        color .35s ease;
}


.gd-diagnostic-item[open]
.gd-diagnostic-no {
    color:
        var(--gd-orange);
}


/* =========================================================
   ICON
========================================================= */

.gd-diagnostic-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--gd-orange);

    background:
        var(--gd-navy);

    box-shadow:
        0 12px 28px rgba(11,27,41,.14);

    transition:
        background .4s ease,
        transform .4s ease;
}


.gd-diagnostic-icon svg {
    width: 30px;
    height: 30px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform .4s ease;
}


.gd-diagnostic-item:hover
.gd-diagnostic-icon,
.gd-diagnostic-item[open]
.gd-diagnostic-icon {
    color: white;

    background:
        var(--gd-orange);

    transform:
        rotate(-5deg);
}


.gd-diagnostic-item:hover
.gd-diagnostic-icon svg {
    transform:
        scale(1.08);
}


/* =========================================================
   QUESTION
========================================================= */

.gd-diagnostic-title small {
    display: block;

    margin-bottom: 7px;

    color:
        var(--gd-orange);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


.gd-diagnostic-title h3 {
    margin: 0;

    color:
        var(--gd-navy);

    font-size: 16px;

    line-height: 1.42;

    font-weight: 900;
}


/* =========================================================
   PLUS
========================================================= */

.gd-diagnostic-plus {
    position: relative;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    border:
        1px solid rgba(11,27,41,.12);

    transition:
        background .35s ease,
        transform .35s ease;
}


.gd-diagnostic-plus::before,
.gd-diagnostic-plus::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 10px;
    height: 2px;

    transform:
        translate(-50%,-50%);

    background:
        var(--gd-navy);
}


.gd-diagnostic-plus::after {
    transform:
        translate(-50%,-50%)
        rotate(90deg);

    transition:
        transform .35s ease;
}


.gd-diagnostic-item[open]
.gd-diagnostic-plus {
    transform:
        rotate(180deg);

    background:
        var(--gd-orange);

    border-color:
        var(--gd-orange);
}


.gd-diagnostic-item[open]
.gd-diagnostic-plus::before,
.gd-diagnostic-item[open]
.gd-diagnostic-plus::after {
    background:
        white;
}


.gd-diagnostic-item[open]
.gd-diagnostic-plus::after {
    transform:
        translate(-50%,-50%)
        rotate(0);
}


/* =========================================================
   ANSWER
========================================================= */

.gd-diagnostic-answer {
    position: relative;

    padding:
        0 30px 32px 85px;
}


.gd-diagnostic-answer::before {
    content: "";

    position: absolute;

    left: 30px;
    top: 4px;
    bottom: 32px;

    width: 1px;

    background:
        linear-gradient(
            var(--gd-orange),
            transparent
        );
}


.gd-answer-label {
    display: block;

    margin-bottom: 9px;

    color:
        rgba(11,27,41,.35);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.gd-diagnostic-answer p {
    margin: 0;

    color:
        #71818b;

    font-size: 11px;

    line-height: 1.85;
}


/* =========================================================
   CONNECTORS TO CENTER
========================================================= */

.gd-diagnostic-left::before,
.gd-diagnostic-right::before {
    content: "";

    position: absolute;

    z-index: -1;

    top: 72px;

    width: 46px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(245,138,36,.2),
            var(--gd-orange)
        );
}


.gd-diagnostic-left::before {
    right: -46px;
}


.gd-diagnostic-right::before {
    left: -46px;

    transform:
        rotate(180deg);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.gd-diagnostic-bottom {
    position: relative;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 25px;

    margin-top: 75px;

    padding:
        22px 25px;

    border-top:
        1px solid rgba(11,27,41,.1);

    border-bottom:
        1px solid rgba(11,27,41,.1);
}


/* title */

.gd-diagnostic-bottom-title {
    display: flex;

    align-items: center;

    gap: 12px;
}


.gd-bottom-status {
    position: relative;

    width: 11px;
    height: 11px;

    flex: 0 0 11px;

    border-radius: 50%;

    background:
        var(--gd-orange);

    box-shadow:
        0 0 0 6px rgba(245,138,36,.1);
}


.gd-diagnostic-bottom-title small {
    display: block;

    margin-bottom: 3px;

    color:
        var(--gd-orange);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.gd-diagnostic-bottom-title strong {
    color:
        var(--gd-navy);

    font-size: 13px;

    font-weight: 900;
}


/* line */

.gd-diagnostic-bottom-line {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(11,27,41,.08),
            rgba(245,138,36,.4),
            rgba(11,27,41,.08)
        );
}


/* button */

.gd-diagnostic-btn {
    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding:
        0 19px;

    color: white;

    background:
        var(--gd-navy);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    transition:
        background .35s ease,
        transform .35s ease;
}


.gd-diagnostic-btn svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke:
        var(--gd-orange);

    stroke-width: 1.8;

    transition:
        transform .35s ease,
        stroke .35s ease;
}


.gd-diagnostic-btn:hover {
    color: white;

    background:
        var(--gd-orange);

    transform:
        translateY(-3px);
}


.gd-diagnostic-btn:hover svg {
    stroke: white;

    transform:
        translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gd-diagnostic-faq {
        padding:
            85px 0;
    }


    .gd-diagnostic-head {
        margin-bottom:
            55px;
    }


    .gd-diagnostic-head-note {
        max-width:
            650px;

        padding-left: 0;

        border-left: 0;
    }


    .gd-diagnostic-system {
        grid-template-columns:
            55px 1fr;

        row-gap: 18px;
    }


    .gd-diagnostic-rail {
        left: 27px;

        transform: none;
    }


    .gd-diagnostic-left,
    .gd-diagnostic-right {
        grid-column: 2;

        margin-top: 0 !important;
    }


    .gd-diagnostic-left::before,
    .gd-diagnostic-right::before {
        left: -29px;
        right: auto;

        width: 29px;

        transform: none;
    }


    .gd-rail-dot {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gd-diagnostic-faq {
        padding:
            70px 0;
    }


    .gd-diagnostic-head h2 {
        font-size:
            clamp(39px,11vw,54px);

        letter-spacing:
            -2.5px;
    }


    .gd-diagnostic-head-note {
        grid-template-columns:
            50px 1fr;
    }


    .gd-diagnostic-head-number {
        font-size:
            45px;
    }


    .gd-diagnostic-system {
        display: block;
    }


    .gd-diagnostic-rail,
    .gd-diagnostic-left::before,
    .gd-diagnostic-right::before {
        display: none;
    }


    .gd-diagnostic-item {
        margin:
            0 0 14px !important;
    }


    .gd-diagnostic-summary {
        grid-template-columns:
            50px 1fr 34px;

        min-height:
            125px;

        padding:
            20px 17px;
    }


    .gd-diagnostic-no {
        display: none;
    }


    .gd-diagnostic-icon {
        width: 48px;
        height: 48px;
    }


    .gd-diagnostic-icon svg {
        width: 25px;
        height: 25px;
    }


    .gd-diagnostic-title h3 {
        font-size:
            14px;
    }


    .gd-diagnostic-answer {
        padding:
            0 20px 27px 78px;
    }


    .gd-diagnostic-answer::before {
        left: 52px;
    }


    .gd-diagnostic-bottom {
        grid-template-columns:
            1fr auto;

        margin-top:
            45px;
    }


    .gd-diagnostic-bottom-line {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .gd-diagnostic-summary {
        grid-template-columns:
            1fr 32px;

        min-height: auto;

        padding:
            22px 16px;
    }


    .gd-diagnostic-icon {
        display: none;
    }


    .gd-diagnostic-title h3 {
        font-size:
            13px;
    }


    .gd-diagnostic-answer {
        padding:
            0 16px 23px;
    }


    .gd-diagnostic-answer::before {
        display: none;
    }


    .gd-diagnostic-bottom {
        grid-template-columns:
            1fr;

        padding:
            20px 0;
    }


    .gd-diagnostic-btn {
        width: 100%;
    }

}

/* =========================================================
   EMERGENCY CTA
========================================================= */

.gd-emergency-cta {
    position: relative;
    overflow: hidden;

    padding: 95px 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(245,138,36,.08),
            transparent 25%
        ),
        #f7f8f8;
}


/* =========================================================
   WRAPPER
========================================================= */

.gd-emergency-wrap {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    padding: 65px 65px;

    background:
        linear-gradient(
            135deg,
            #071722,
            var(--gd-navy) 48%,
            var(--gd-navy-2)
        );

    box-shadow:
        0 35px 85px rgba(11,27,41,.22);
}


/* top orange line */

.gd-emergency-wrap::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 42%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--gd-orange),
            var(--gd-orange-light),
            transparent
        );
}


/* grid texture */

.gd-emergency-wrap::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -3;

    background:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}


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

.gd-emergency-content {
    position: relative;
    z-index: 4;
}


.gd-emergency-kicker {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: var(--gd-orange);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.gd-emergency-kicker::before {
    content: "";

    width: 38px;
    height: 2px;

    background: var(--gd-orange);
}


.gd-emergency-content h2 {
    max-width: 650px;

    margin: 0 0 21px;

    color: white;

    font-size: clamp(43px,5vw,70px);

    line-height: .96;

    font-weight: 900;

    letter-spacing: -3px;
}


.gd-emergency-content h2 span {
    display: block;

    color: var(--gd-orange);
}


.gd-emergency-content p {
    max-width: 590px;

    margin: 0;

    color: rgba(255,255,255,.62);

    font-size: 13px;

    line-height: 1.85;
}


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

.gd-emergency-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}


/* CALL */

.gd-emergency-call {
    display: flex;
    align-items: center;

    gap: 13px;

    min-height: 61px;

    padding:
        7px 19px 7px 7px;

    color: white;

    border:
        1px solid rgba(255,255,255,.13);

    background:
        rgba(255,255,255,.035);

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;
}


.gd-emergency-call:hover {
    color: white;

    transform:
        translateY(-4px);

    border-color:
        rgba(245,138,36,.5);

    background:
        rgba(245,138,36,.07);
}


.gd-emergency-call-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gd-orange);
}


.gd-emergency-call-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: white;

    stroke-width: 1.7;
}


.gd-emergency-call small {
    display: block;

    margin-bottom: 2px;

    color: rgba(255,255,255,.4);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.gd-emergency-call strong {
    display: block;

    color: white;

    font-size: 14px;
    font-weight: 900;
}


/* BUTTON */

.gd-emergency-btn {
    min-height: 61px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 23px;

    color: white;

    background: var(--gd-orange);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.1px;

    text-transform: uppercase;

    transition:
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}


.gd-emergency-btn svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: white;

    stroke-width: 1.8;

    transition: transform .35s ease;
}


.gd-emergency-btn:hover {
    color: white;

    transform:
        translateY(-4px);

    background:
        var(--gd-orange-dark);

    box-shadow:
        0 16px 32px rgba(245,138,36,.22);
}


.gd-emergency-btn:hover svg {
    transform:
        translateX(5px);
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.gd-emergency-visual {
    position: relative;

    min-height: 360px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   GARAGE DOOR
========================================================= */

.gd-emergency-door {
    position: relative;

    width: 300px;
    max-width: 88%;

    padding: 22px;

    border:
        2px solid rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.025);

    box-shadow:
        inset 0 0 40px rgba(255,255,255,.015);
}


.gd-emergency-door-top {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 7px;

    margin-bottom: 8px;
}


.gd-emergency-door-top span {
    height: 34px;

    background:
        rgba(245,138,36,.75);
}


.gd-emergency-door-body {
    display: grid;

    gap: 7px;
}


.gd-emergency-door-body span {
    height: 55px;

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

    background:
        rgba(255,255,255,.035);
}


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

.gd-emergency-alert {
    position: absolute;

    z-index: 5;

    left: 0;
    top: 25px;

    min-width: 190px;

    padding:
        13px 16px 13px 42px;

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

    background:
        rgba(7,23,34,.82);

    backdrop-filter: blur(10px);

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


.gd-emergency-pulse {
    position: absolute;

    left: 17px;
    top: 50%;

    width: 9px;
    height: 9px;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background:
        var(--gd-orange);

    box-shadow:
        0 0 0 0 rgba(245,138,36,.5);

    animation:
        gdEmergencyPulse 1.8s infinite;
}


@keyframes gdEmergencyPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(245,138,36,.5);
    }

    70% {
        box-shadow:
            0 0 0 12px rgba(245,138,36,0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(245,138,36,0);
    }

}


.gd-emergency-alert small {
    display: block;

    margin-bottom: 3px;

    color: var(--gd-orange);

    font-size: 6px;
    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.gd-emergency-alert strong {
    color: white;

    font-size: 11px;

    font-weight: 900;
}


/* =========================================================
   WARNING
========================================================= */

.gd-emergency-warning {
    position: absolute;

    right: 5px;
    bottom: 35px;

    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--gd-orange);

    border:
        7px solid var(--gd-navy-2);

    box-shadow:
        0 16px 35px rgba(245,138,36,.2);

    transition:
        transform .4s ease;
}


.gd-emergency-visual:hover
.gd-emergency-warning {
    transform:
        rotate(-8deg)
        scale(1.06);
}


.gd-emergency-warning svg {
    width: 29px;
    height: 29px;

    fill: none;
    stroke: white;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   VERTICAL LABEL
========================================================= */

.gd-emergency-side-text {
    position: absolute;

    right: -9px;
    top: 50%;

    writing-mode:
        vertical-rl;

    transform:
        translateY(-50%);

    color:
        rgba(255,255,255,.25);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gd-emergency-cta {
        padding: 85px 0;
    }


    .gd-emergency-wrap {
        padding: 55px 45px;
    }


    .gd-emergency-content p {
        max-width: 700px;
    }


    .gd-emergency-visual {
        margin-top: 20px;

        min-height: 320px;
    }


    .gd-emergency-door {
        width: 350px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gd-emergency-cta {
        padding: 70px 0;
    }


    .gd-emergency-wrap {
        padding: 42px 27px;
    }


    .gd-emergency-content h2 {
        font-size:
            clamp(38px,10vw,51px);

        letter-spacing: -2px;
    }


    .gd-emergency-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .gd-emergency-call,
    .gd-emergency-btn {
        width: 100%;
    }


    .gd-emergency-visual {
        min-height: 285px;
    }


    .gd-emergency-door {
        width: 280px;
    }


    .gd-emergency-alert {
        left: 0;

        top: 5px;
    }


    .gd-emergency-side-text {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .gd-emergency-wrap {
        padding: 37px 20px;
    }


    .gd-emergency-visual {
        min-height: 250px;
    }


    .gd-emergency-door {
        width: 230px;

        padding: 16px;
    }


    .gd-emergency-door-top span {
        height: 27px;
    }


    .gd-emergency-door-body span {
        height: 44px;
    }


    .gd-emergency-alert {
        min-width: 165px;

        padding:
            11px 12px 11px 37px;
    }


    .gd-emergency-warning {
        width: 60px;
        height: 60px;

        right: 0;
        bottom: 15px;
    }

}
/* =========================================================
   CONTACT HUB
========================================================= */

.gd-contact-hub {
    position: relative;
    overflow: hidden;

    padding: 110px 0;

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(245,138,36,.08),
            transparent 22%
        ),
        radial-gradient(
            circle at 94% 85%,
            rgba(17,43,61,.06),
            transparent 25%
        ),
        linear-gradient(
            rgba(11,27,41,.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11,27,41,.022) 1px,
            transparent 1px
        ),
        #f7f8f8;

    background-size:
        auto,
        auto,
        44px 44px,
        44px 44px,
        auto;
}


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

.gd-contact-bg-word {
    position: absolute;

    right: -30px;
    top: 20px;

    color: rgba(11,27,41,.022);

    font-size:
        clamp(130px,18vw,280px);

    line-height: .8;

    font-weight: 900;

    letter-spacing: -15px;

    pointer-events: none;
}


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

.gd-contact-hub-head {
    position: relative;
    z-index: 3;

    margin-bottom: 60px;
}


.gd-contact-hub-kicker {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--gd-orange);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.gd-contact-hub-kicker::before {
    content: "";

    width: 40px;
    height: 2px;

    background: var(--gd-orange);
}


.gd-contact-hub-title h2 {
    max-width: 760px;

    margin: 0;

    color: var(--gd-navy);

    font-size:
        clamp(43px,5vw,70px);

    line-height: .96;

    font-weight: 900;

    letter-spacing: -3px;
}


.gd-contact-hub-title h2 span {
    display: block;

    color: var(--gd-orange);
}


.gd-contact-hub-intro {
    max-width: 470px;

    margin: 0 0 4px auto;

    color: #71818b;

    font-size: 13px;

    line-height: 1.85;
}


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

.gd-contact-console {
    position: relative;

    height: 100%;

    overflow: hidden;

    padding: 0 42px 42px;

    border:
        1px solid rgba(11,27,41,.08);

    background: #fff;

    box-shadow:
        0 30px 80px rgba(11,27,41,.10);
}


/* orange top line */

.gd-contact-console::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 145px;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--gd-orange),
            var(--gd-orange-light)
        );
}


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

.gd-contact-console-head {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    min-height: 92px;

    margin:
        0 -42px 32px;

    padding:
        0 42px;

    border-bottom:
        1px solid rgba(11,27,41,.08);

    background:
        rgba(247,248,248,.72);
}


.gd-contact-console-head-left {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.gd-console-status {
    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--gd-orange);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.gd-console-status i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gd-orange);

    box-shadow:
        0 0 0 5px rgba(245,138,36,.1);

    animation:
        gdContactPulse 2s infinite;
}


@keyframes gdContactPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(245,138,36,.10);
    }

    50% {
        box-shadow:
            0 0 0 9px rgba(245,138,36,0);
    }

}


.gd-contact-console-head-left strong {
    color: var(--gd-navy);

    font-size: 16px;
    font-weight: 900;
}


.gd-console-garage-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gd-navy);
}


.gd-console-garage-icon svg {
    width: 23px;
    height: 23px;

    fill: none;

    stroke: var(--gd-orange);

    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}


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

.gd-service-form {
    position: relative;
}


.gd-service-form fieldset {
    min-width: 0;

    margin: 0;
    padding: 0;

    border: 0;
}


/* =========================================================
   LEGEND
========================================================= */

.gd-service-form legend {
    display: flex;
    align-items: center;

    gap: 13px;

    width: 100%;

    margin:
        0 0 12px;

    padding: 0;

    color: var(--gd-navy);

    font-size: 24px;
    font-weight: 900;

    letter-spacing: -.7px;
}


.gd-form-legend-num {
    color:
        rgba(11,27,41,.12);

    font-size: 34px;
    font-weight: 900;
}


/* =========================================================
   RESPONSE
========================================================= */

.gd-form-response {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 25px;

    color: #87939a;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.gd-form-response > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gd-orange);
}


/* =========================================================
   FIELD
========================================================= */

.gd-field {
    position: relative;
}


.gd-field label {
    display: block;

    margin-bottom: 7px;

    color: var(--gd-navy);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* =========================================================
   INPUT
========================================================= */

.gd-field .form-control {
    width: 100%;

    min-height: 53px;

    padding:
        0 15px;

    border:
        1px solid rgba(11,27,41,.09);

    border-radius: 0;

    outline: 0;

    color: var(--gd-navy);

    background: #f8f9f9;

    font-size: 11px;

    box-shadow: none;

    transition:
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}


.gd-field textarea.form-control {
    min-height: 115px;

    padding:
        15px;

    resize: vertical;
}


.gd-field .form-control::placeholder {
    color: #9da7ad;
}


.gd-field .form-control:focus {
    border-color:
        rgba(245,138,36,.65);

    background: #fff;

    box-shadow:
        0 0 0 4px rgba(245,138,36,.055);

    transform:
        translateY(-1px);
}


/* selects */

.gd-field select.form-control {
    cursor: pointer;
}


/* =========================================================
   DIVIDER
========================================================= */

.gd-form-divider {
    display: grid;

    grid-template-columns:
        auto 1fr;

    align-items: center;

    gap: 15px;

    margin:
        30px 0 22px;
}


.gd-form-divider span {
    color: var(--gd-orange);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.gd-form-divider i {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(245,138,36,.5),
            rgba(11,27,41,.06)
        );
}


/* =========================================================
   SUBMIT
========================================================= */

.gd-submit-wrap {
    position: relative;

    height: 100%;

    min-height: 78px;

    display: flex;

    align-items: flex-end;
}


.gd-submit-wrap .btn-submit {
    width: 100%;

    min-height: 53px;

    padding:
        0 60px 0 18px;

    border: 0;

    color: white;

    background: var(--gd-navy);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.1px;

    text-align: left;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}


.gd-submit-wrap > span {
    position: absolute;

    right: 6px;
    bottom: 6px;

    width: 41px;
    height: 41px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    background: var(--gd-orange);

    font-size: 18px;

    pointer-events: none;

    transition:
        background .35s ease,
        transform .35s ease;
}


.gd-submit-wrap:hover
.btn-submit {
    transform:
        translateY(-3px);

    background: var(--gd-orange);

    box-shadow:
        0 14px 30px rgba(245,138,36,.20);
}


.gd-submit-wrap:hover > span {
    transform:
        rotate(45deg);

    background: var(--gd-navy);
}


/* =========================================================
   HONEYPOT
========================================================= */

.gd-service-form .subject {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    opacity: 0 !important;

    pointer-events: none !important;
}


/* =========================================================
   LOCATION CONSOLE
========================================================= */

.gd-location-console {
    position: relative;

    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background:
        var(--gd-navy);

    box-shadow:
        0 30px 80px rgba(11,27,41,.15);
}


/* =========================================================
   LOCATION TOP
========================================================= */

.gd-location-top {
    min-height: 135px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        30px;

    background:
        linear-gradient(
            135deg,
            #081722,
            var(--gd-navy-2)
        );
}


.gd-location-kicker {
    display: block;

    margin-bottom: 7px;

    color: var(--gd-orange);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.gd-location-top h3 {
    max-width: 300px;

    margin: 0;

    color: white;

    font-size: 25px;
    line-height: 1.05;

    font-weight: 900;
}


.gd-location-top h3 strong {
    display: block;

    color: var(--gd-orange);

    font-weight: 900;
}


/* pin */

.gd-location-pin {
    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(245,138,36,.35);

    background:
        rgba(255,255,255,.03);
}


.gd-location-pin svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: var(--gd-orange);

    stroke-width: 1.7;
}


/* =========================================================
   MAP
========================================================= */

.gd-location-map {
    position: relative;

    height: 440px;

    overflow: hidden;

    background: #dfe4e7;
}


.gd-location-map iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;

    filter:
        grayscale(.15)
        contrast(1.03);
}


/* floating map label */

.gd-map-floating-label {
    position: absolute;

    z-index: 5;

    left: 20px;
    bottom: 20px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        12px 15px;

    border:
        1px solid rgba(255,255,255,.18);

    background:
        rgba(8,23,34,.88);

    backdrop-filter: blur(12px);

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

    box-shadow:
        0 15px 35px rgba(8,23,34,.17);
}


.gd-map-live-dot {
    width: 10px;
    height: 10px;

    flex: 0 0 10px;

    border-radius: 50%;

    background: var(--gd-orange);

    box-shadow:
        0 0 0 6px rgba(245,138,36,.12);
}


.gd-map-floating-label small {
    display: block;

    margin-bottom: 3px;

    color: var(--gd-orange);

    font-size: 6px;
    font-weight: 900;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.gd-map-floating-label strong {
    color: white;

    font-size: 10px;

    font-weight: 900;
}


/* =========================================================
   LOCATION DATA
========================================================= */

.gd-location-data {
    background:
        linear-gradient(
            135deg,
            var(--gd-navy),
            var(--gd-navy-2)
        );
}


.gd-location-data-row {
    position: relative;

    display: grid;

    grid-template-columns:
        28px 44px 1fr;

    align-items: center;

    gap: 10px;

    min-height: 88px;

    padding:
        15px 24px;

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

    transition:
        padding-left .35s ease,
        background .35s ease;
}


.gd-location-data-row:hover {
    padding-left: 31px;

    background:
        rgba(255,255,255,.025);
}


.gd-location-data-number {
    color:
        rgba(255,255,255,.22);

    font-size: 7px;

    font-weight: 900;
}


.gd-location-data-icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(245,138,36,.30);
}


.gd-location-data-icon svg {
    width: 19px;
    height: 19px;

    fill: none;

    stroke: var(--gd-orange);

    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.gd-location-data-row small {
    display: block;

    margin-bottom: 3px;

    color:
        rgba(255,255,255,.35);

    font-size: 6px;

    font-weight: 900;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


.gd-location-data-row strong {
    color: white;

    font-size: 10px;

    font-weight: 900;
}


/* =========================================================
   LOCATION BOTTOM
========================================================= */

.gd-location-bottom {
    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 12px;

    min-height: 55px;

    padding:
        0 25px;

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

    background:
        #071722;
}


.gd-location-bottom span,
.gd-location-bottom i {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(245,138,36,.35)
        );
}


.gd-location-bottom i {
    transform:
        rotate(180deg);
}


.gd-location-bottom small {
    color:
        rgba(255,255,255,.30);

    font-size: 6px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gd-contact-hub {
        padding:
            85px 0;
    }


    .gd-contact-hub-head {
        margin-bottom:
            50px;
    }


    .gd-contact-hub-intro {
        max-width: 650px;

        margin:
            10px 0 0;
    }


    .gd-contact-console {
        padding:
            0 34px 34px;
    }


    .gd-contact-console-head {
        margin:
            0 -34px 30px;

        padding:
            0 34px;
    }


    .gd-location-console {
        margin-top: 10px;
    }


    .gd-location-map {
        height:
            480px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gd-contact-hub {
        padding:
            70px 0;
    }


    .gd-contact-hub-title h2 {
        font-size:
            clamp(38px,10vw,51px);

        letter-spacing: -2px;
    }


    .gd-contact-console {
        padding:
            0 22px 25px;
    }


    .gd-contact-console-head {
        min-height:
            80px;

        margin:
            0 -22px 26px;

        padding:
            0 22px;
    }


    .gd-service-form legend {
        font-size:
            20px;
    }


    .gd-form-legend-num {
        font-size:
            28px;
    }


    .gd-submit-wrap {
        min-height:
            53px;
    }


    .gd-location-top {
        min-height:
            115px;

        padding:
            24px 20px;
    }


    .gd-location-top h3 {
        font-size:
            21px;
    }


    .gd-location-pin {
        width:
            52px;

        height:
            52px;

        flex-basis:
            52px;
    }


    .gd-location-map {
        height:
            390px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .gd-contact-console {
        padding:
            0 17px 22px;
    }


    .gd-contact-console-head {
        margin:
            0 -17px 23px;

        padding:
            0 17px;
    }


    .gd-console-garage-icon {
        width:
            42px;

        height:
            42px;
    }


    .gd-location-top {
        align-items:
            flex-start;
    }


    .gd-location-pin {
        width:
            46px;

        height:
            46px;

        flex-basis:
            46px;
    }


    .gd-location-map {
        height:
            330px;
    }


    .gd-map-floating-label {
        left:
            12px;

        right:
            12px;

        bottom:
            12px;
    }


    .gd-location-data-row {
        grid-template-columns:
            22px 38px 1fr;

        padding:
            14px 17px;
    }


    .gd-location-data-row:hover {
        padding-left:
            20px;
    }


    .gd-location-data-icon {
        width:
            36px;

        height:
            36px;
    }

}

/* =========================================================
   CONTACT INFO BOARD
========================================================= */

.gd-info-board {
    position: relative;
    overflow: hidden;

    padding: 90px 0;

    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(245, 138, 36, .08),
            transparent 24%
        ),
        linear-gradient(
            rgba(11, 27, 41, .022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11, 27, 41, .022) 1px,
            transparent 1px
        ),
        #f6f8f9;

    background-size:
        auto,
        40px 40px,
        40px 40px,
        auto;
}


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

.gd-info-shell {
    position: relative;

    overflow: hidden;

    background: #fff;

    border:
        1px solid rgba(11, 27, 41, .08);

    box-shadow:
        0 35px 85px rgba(11, 27, 41, .11);
}


/* =========================================================
   LEFT
========================================================= */

.gd-info-intro {
    position: relative;

    height: 100%;
    min-height: 580px;

    overflow: hidden;

    padding: 55px 45px;

    color: #fff;

    background:
        radial-gradient(
            circle at 15% 85%,
            rgba(245, 138, 36, .13),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #071722,
            var(--gd-navy-2)
        );
}


/* orange top */

.gd-info-intro::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 115px;
    height: 5px;

    background: var(--gd-orange);
}


/* texture */

.gd-info-intro::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 8px,
            rgba(255,255,255,.012) 8px,
            rgba(255,255,255,.012) 9px
        );

    pointer-events: none;
}


/* =========================================================
   INTRO COPY
========================================================= */

.gd-info-eyebrow {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: var(--gd-orange);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2.3px;

    text-transform: uppercase;
}


.gd-info-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--gd-orange);
}


.gd-info-intro h2 {
    position: relative;
    z-index: 2;

    margin: 0 0 20px;

    color: #fff;

    font-size:
        clamp(43px, 4.5vw, 59px);

    line-height: .92;

    letter-spacing: -3px;

    font-weight: 900;
}


.gd-info-intro h2 span {
    display: block;

    color: var(--gd-orange);
}


.gd-info-intro p {
    position: relative;
    z-index: 2;

    max-width: 330px;

    margin: 0;

    color:
        rgba(255,255,255,.55);

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   BIG 05
========================================================= */

.gd-info-big-number {
    position: absolute;
    z-index: 2;

    left: 43px;
    bottom: 45px;

    display: flex;
    align-items: flex-end;

    gap: 14px;

    color:
        rgba(255,255,255,.10);

    font-size: 95px;
    line-height: .75;

    font-weight: 900;

    letter-spacing: -7px;
}


.gd-info-big-number small {
    margin-bottom: 2px;

    color: var(--gd-orange);

    font-size: 7px;
    line-height: 1.45;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   DECORATIVE GARAGE
========================================================= */

.gd-info-garage {
    position: absolute;

    z-index: 1;

    right: -42px;
    bottom: -25px;

    width: 185px;
    height: 150px;

    opacity: .08;

    transform: rotate(-7deg);
}


.gd-info-garage-roof {
    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 50px;

    border:
        5px solid #fff;

    border-bottom: 0;

    transform: perspective(200px) rotateX(8deg);
}


.gd-info-garage-door {
    position: absolute;

    left: 17px;
    right: 17px;
    top: 45px;
    bottom: 0;

    border:
        5px solid #fff;
}


.gd-info-garage-door i {
    display: block;

    height: 25%;

    border-bottom:
        3px solid #fff;
}


.gd-info-garage-door i:last-child {
    border-bottom: 0;
}


/* =========================================================
   RIGHT LIST
========================================================= */

.gd-info-list {
    height: 100%;

    display: flex;
    flex-direction: column;

    background: #fff;
}


/* =========================================================
   ROW
========================================================= */

.gd-info-row {
    position: relative;

    flex: 1;

    min-height: 116px;

    display: grid;

    grid-template-columns:
        38px 55px 1fr auto;

    align-items: center;

    gap: 18px;

    padding:
        20px 30px;

    color: inherit;

    text-decoration: none;

    border-bottom:
        1px solid rgba(11,27,41,.08);

    transition:
        padding-left .35s ease,
        background .35s ease;
}


.gd-info-row-last {
    border-bottom: 0;
}


a.gd-info-row:hover {
    padding-left: 38px;

    background:
        rgba(245,138,36,.035);
}


/* left accent */

.gd-info-row::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 0;

    transform:
        translateY(-50%);

    background:
        var(--gd-orange);

    transition:
        height .35s ease;
}


.gd-info-row:hover::before {
    height: 58%;
}


/* =========================================================
   NUMBER
========================================================= */

.gd-info-row-number {
    color:
        rgba(11,27,41,.22);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================================
   ICON
========================================================= */

.gd-info-row-icon {
    width: 51px;
    height: 51px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(245,138,36,.09);

    border:
        1px solid rgba(245,138,36,.13);

    transition:
        background .35s ease,
        transform .35s ease;
}


.gd-info-row-icon svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke:
        var(--gd-orange);

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.gd-info-row:hover
.gd-info-row-icon {
    background:
        var(--gd-orange);

    transform:
        rotate(-7deg)
        scale(1.06);
}


.gd-info-row:hover
.gd-info-row-icon svg {
    stroke: #fff;
}


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

.gd-info-row-content {
    min-width: 0;
}


.gd-info-row-content small {
    display: block;

    margin-bottom: 5px;

    color:
        #8c999f;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.gd-info-row-content strong {
    display: block;

    color:
        var(--gd-navy);

    font-size: 15px;

    line-height: 1.35;

    font-weight: 900;

    word-break: break-word;
}


.gd-info-row-content strong b {
    margin-left: 8px;

    color:
        var(--gd-orange);

    font-weight: 900;
}


/* ZIP */

.gd-info-row-content
.gd-info-zip {
color: #0b1b29;
  font-size: 12px;
 
  font-weight: bold;
}


/* =========================================================
   ARROW
========================================================= */

.gd-info-row-arrow {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color:
        var(--gd-orange);

    border:
        1px solid rgba(11,27,41,.10);

    font-size: 15px;

    transition:
        color .35s ease,
        background .35s ease,
        border-color .35s ease,
        transform .35s ease;
}


.gd-info-row:hover
.gd-info-row-arrow {
    color: #fff;

    border-color:
        var(--gd-orange);

    background:
        var(--gd-orange);

    transform:
        rotate(45deg);
}


/* =========================================================
   TAG
========================================================= */

.gd-info-row-tag {
    min-width: 55px;

    padding:
        7px 10px;

    color:
        var(--gd-orange);

    background:
        rgba(245,138,36,.08);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.3px;

    text-align: center;

    text-transform: uppercase;
}


/* =========================================================
   OPEN STATUS
========================================================= */

.gd-info-open {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding:
        7px 10px;

    color:
        var(--gd-navy);

    background:
        rgba(11,27,41,.04);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.gd-info-open i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--gd-orange);

    box-shadow:
        0 0 0 4px rgba(245,138,36,.10);

    animation:
        gdInfoPulse 2s infinite;
}


@keyframes gdInfoPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 3px rgba(245,138,36,.12);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(245,138,36,0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gd-info-board {
        padding:
            75px 0;
    }


    .gd-info-intro {
        min-height:
            400px;

        padding:
            45px 35px;
    }


    .gd-info-big-number {
        left:
            35px;

        bottom:
            40px;
    }


    .gd-info-row {
        min-height:
            105px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gd-info-board {
        padding:
            60px 0;
    }


    .gd-info-intro {
        min-height:
            370px;

        padding:
            38px 25px;
    }


    .gd-info-intro h2 {
        font-size:
            clamp(42px,12vw,56px);
    }


    .gd-info-big-number {
        left:
            25px;

        bottom:
            35px;

        font-size:
            75px;
    }


    .gd-info-row {
        grid-template-columns:
            25px 46px 1fr auto;

        gap:
            11px;

        min-height:
            100px;

        padding:
            18px 16px;
    }


    a.gd-info-row:hover {
        padding-left:
            20px;
    }


    .gd-info-row-icon {
        width:
            44px;

        height:
            44px;
    }


    .gd-info-row-content strong {
        font-size:
            12px;
    }


    .gd-info-row-content strong b {
        display:
            block;

        margin:
            3px 0 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .gd-info-row {
        grid-template-columns:
            42px 1fr auto;

        gap:
            10px;
    }


    .gd-info-row-number {
        display:
            none;
    }


    .gd-info-row-tag,
    .gd-info-open {
        font-size:
            6px;

        min-width:
            auto;
    }


    .gd-info-row-arrow {
        width:
            34px;

        height:
            34px;
    }


    .gd-info-row-content strong {
        font-size:
            11px;
    }

}
/* =========================================================
   PARTS WORKSHOP
========================================================= */

.gd-parts-workshop {
    position: relative;
    overflow: hidden;

    padding: 110px 0;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(245,138,36,.07),
            transparent 28%
        ),
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            135deg,
            #071722,
            var(--gd-navy-2)
        );

    background-size:
        auto,
        44px 44px,
        44px 44px,
        auto;
}


/* =========================================================
   HEADING
========================================================= */

.gd-workshop-kicker {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--gd-orange);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.gd-workshop-kicker::before {
    content: "";

    width: 40px;
    height: 2px;

    background: var(--gd-orange);
}


.gd-workshop-heading h2 {
    margin: 0;

    color: white;

    font-size: clamp(43px,5vw,70px);

    line-height: .96;

    font-weight: 900;

    letter-spacing: -3px;
}


.gd-workshop-heading h2 span {
    display: block;

    color: var(--gd-orange);
}


.gd-workshop-intro {
    max-width: 430px;

    margin: 0 0 4px auto;

    color: rgba(255,255,255,.55);

    font-size: 12px;

    line-height: 1.85;
}


/* =========================================================
   STAGE
========================================================= */

.gd-workshop-stage {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr 1.45fr 1fr;

    align-items: center;

    gap: 32px;

    margin-top: 75px;
}


/* =========================================================
   SIDE
========================================================= */

.gd-workshop-side {
    position: relative;

    z-index: 6;

    display: flex;

    flex-direction: column;

    gap: 18px;
}


/* =========================================================
   PART ITEM
========================================================= */

.gd-workshop-part {
    position: relative;

    min-height: 105px;

    display: grid;

    grid-template-columns:
        30px 1fr 50px;

    align-items: center;

    gap: 12px;

    padding: 17px;

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

    border-bottom:
        1px solid rgba(255,255,255,.09);

    background:
        rgba(255,255,255,.025);

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;
}


.gd-workshop-part:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(245,138,36,.35);

    background:
        rgba(255,255,255,.05);
}


/* side connector */

.gd-workshop-side-left
.gd-workshop-part::after {
    content: "";

    position: absolute;

    right: -34px;
    top: 50%;

    width: 34px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(245,138,36,.15),
            var(--gd-orange)
        );
}


.gd-workshop-side-right
.gd-workshop-part::before {
    content: "";

    position: absolute;

    left: -34px;
    top: 50%;

    width: 34px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--gd-orange),
            rgba(245,138,36,.15)
        );
}


/* =========================================================
   NUMBER
========================================================= */

.gd-workshop-number {
    color:
        rgba(255,255,255,.20);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

    transition: color .35s ease;
}


.gd-workshop-part:hover
.gd-workshop-number {
    color: var(--gd-orange);
}


/* =========================================================
   COPY
========================================================= */

.gd-workshop-part-copy small {
    display: block;

    margin-bottom: 4px;

    color:
        rgba(255,255,255,.35);

    font-size: 6px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.gd-workshop-part-copy strong {
    display: block;

    color: white;

    font-size: 14px;

    font-weight: 900;
}


/* =========================================================
   ICON
========================================================= */

.gd-workshop-part-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(245,138,36,.30);

    background:
        rgba(245,138,36,.07);

    transition:
        background .35s ease,
        transform .35s ease;
}


.gd-workshop-part-icon svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: var(--gd-orange);

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.gd-workshop-part:hover
.gd-workshop-part-icon {
    transform:
        rotate(-7deg)
        scale(1.06);

    background: var(--gd-orange);
}


.gd-workshop-part:hover
.gd-workshop-part-icon svg {
    stroke: white;
}


/* =========================================================
   CENTER VISUAL
========================================================= */

.gd-workshop-visual {
    position: relative;

    z-index: 4;

    min-height: 590px;
}


/* =========================================================
   PHOTO
========================================================= */

.gd-workshop-photo {
    position: absolute;

    inset: 25px 0;

    overflow: hidden;

    border:
        5px solid rgba(255,255,255,.08);

    background: #122735;

    box-shadow:
        0 35px 80px rgba(0,0,0,.30);
}


.gd-workshop-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 7s ease,
        filter .5s ease;
}


.gd-workshop-visual:hover
.gd-workshop-photo img {
    transform:
        scale(1.07);

    filter:
        saturate(1.05);
}


/* overlay */

.gd-workshop-photo-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7,23,34,.06),
            rgba(7,23,34,.08) 45%,
            rgba(7,23,34,.7) 100%
        );
}


/* =========================================================
   LARGE WORD
========================================================= */

.gd-workshop-big-number {
    position: absolute;

    left: 50%;
    top: 50%;

    z-index: 5;

    transform:
        translate(-50%,-50%)
        rotate(-90deg);

    color:
        rgba(255,255,255,.055);

    font-size: 80px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: 8px;

    pointer-events: none;
}


/* =========================================================
   BADGE
========================================================= */

.gd-workshop-badge {
    position: absolute;

    z-index: 8;

    left: 25px;
    right: 25px;
    bottom: 0;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 15px 18px;

    border:
        1px solid rgba(255,255,255,.12);

    background:
        rgba(7,23,34,.9);

    backdrop-filter: blur(12px);

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


.gd-workshop-badge-dot {
    width: 10px;
    height: 10px;

    flex: 0 0 10px;

    border-radius: 50%;

    background: var(--gd-orange);

    box-shadow:
        0 0 0 6px rgba(245,138,36,.1);
}


.gd-workshop-badge small {
    display: block;

    margin-bottom: 3px;

    color: var(--gd-orange);

    font-size: 6px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.gd-workshop-badge strong {
    color: white;

    font-size: 11px;

    font-weight: 900;
}


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

.gd-workshop-bottom {
    display: grid;

    grid-template-columns:
        1fr auto;

    align-items: center;

    gap: 35px;

    margin-top: 65px;

    padding-top: 30px;

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


.gd-workshop-bottom-copy {
    display: grid;

    grid-template-columns:
        180px 1fr;

    align-items: start;

    gap: 25px;
}


.gd-workshop-bottom-copy > span {
    color: var(--gd-orange);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.gd-workshop-bottom-copy p {
    max-width: 650px;

    margin: 0;

    color:
        rgba(255,255,255,.5);

    font-size: 11px;

    line-height: 1.8;
}


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

.gd-workshop-btn {
    min-width: 225px;
    min-height: 57px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding:
        5px 6px 5px 18px;

    color: white;

    background: var(--gd-orange);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition:
        background .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}


.gd-workshop-btn > span {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gd-navy);

    transition:
        transform .35s ease;
}


.gd-workshop-btn svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: white;

    stroke-width: 1.8;
}


.gd-workshop-btn:hover {
    color: white;

    transform:
        translateY(-4px);

    background:
        var(--gd-orange-dark);

    box-shadow:
        0 16px 32px rgba(245,138,36,.18);
}


.gd-workshop-btn:hover > span {
    transform:
        translateX(3px)
        rotate(-5deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gd-parts-workshop {
        padding:
            85px 0;
    }


    .gd-workshop-intro {
        max-width: 650px;

        margin:
            10px 0 0;
    }


    .gd-workshop-stage {
        grid-template-columns:
            1fr 1fr;

        gap: 20px;
    }


    .gd-workshop-visual {
        grid-column:
            1 / -1;

        grid-row: 1;

        min-height: 500px;
    }


    .gd-workshop-side {
        grid-row: 2;
    }


    .gd-workshop-side-left
    .gd-workshop-part::after,
    .gd-workshop-side-right
    .gd-workshop-part::before {
        display: none;
    }


    .gd-workshop-bottom {
        grid-template-columns:
            1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gd-parts-workshop {
        padding:
            70px 0;
    }


    .gd-workshop-heading h2 {
        font-size:
            clamp(38px,10vw,51px);

        letter-spacing:
            -2px;
    }


    .gd-workshop-stage {
        display: flex;

        flex-direction: column;

        margin-top:
            50px;
    }


    .gd-workshop-visual {
        width: 100%;

        min-height: 420px;

        order: 1;
    }


    .gd-workshop-side-left {
        order: 2;
    }


    .gd-workshop-side-right {
        order: 3;
    }


    .gd-workshop-photo {
        inset:
            0 0 35px;
    }


    .gd-workshop-big-number {
        font-size:
            55px;
    }


    .gd-workshop-part {
        grid-template-columns:
            30px 1fr 48px;
    }


    .gd-workshop-side-right
    .gd-workshop-part {
        grid-template-columns:
            48px 1fr 30px;
    }


    .gd-workshop-bottom-copy {
        grid-template-columns:
            1fr;

        gap: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .gd-workshop-visual {
        min-height:
            340px;
    }


    .gd-workshop-badge {
        left:
            12px;

        right:
            12px;

        padding:
            12px;
    }


    .gd-workshop-part {
        min-height:
            90px;

        padding:
            14px 12px;
    }


    .gd-workshop-part-copy strong {
        font-size:
            12px;
    }


    .gd-workshop-btn {
        width: 100%;
    }

}
/* =========================================================
   FOOTER
========================================================= */

.gd-footer {
    position: relative;
    overflow: hidden;

    padding: 85px 0 0;

    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(245,138,36,.08),
            transparent 22%
        ),
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            135deg,
            #071722,
            var(--gd-navy-2)
        );

    background-size:
        auto,
        44px 44px,
        44px 44px,
        auto;
}


.gd-footer::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 36%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--gd-orange),
            var(--gd-orange-light),
            transparent
        );
}


/* =========================================================
   BRAND
========================================================= */

.gd-footer-logo {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: #fff;

    text-decoration: none;

    font-size: 18px;
    font-weight: 900;

    line-height: 1.05;
}


.gd-footer-logo strong {
    display: block;

    color: var(--gd-orange);

    font-weight: 900;
}


.gd-footer-logo-mark {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(245,138,36,.12);

    border:
        1px solid rgba(245,138,36,.35);
}


.gd-footer-logo-mark svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: var(--gd-orange);

    stroke-width: 1.6;
}


.gd-footer-brand p {
    max-width: 380px;

    margin:
        24px 0 26px;

    color:
        rgba(255,255,255,.50);

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   SOCIAL
========================================================= */

.gd-footer-social {
    display: flex;
    gap: 9px;
}


.gd-footer-social a {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--gd-orange);

    border:
        1px solid rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.025);

    text-decoration: none;

    font-size: 8px;
    font-weight: 900;

    text-transform: uppercase;

    transition:
        color .35s ease,
        background .35s ease,
        transform .35s ease,
        border-color .35s ease;
}


.gd-footer-social a:hover {
    color: white;

    border-color: var(--gd-orange);

    background: var(--gd-orange);

    transform: translateY(-4px);
}


/* =========================================================
   BLOCKS
========================================================= */

.gd-footer-title {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 22px;

    color: #fff;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


.gd-footer-title::before {
    content: "";

    width: 17px;
    height: 2px;

    background: var(--gd-orange);
}


.gd-footer-block ul {
    list-style: none;

    margin: 0;
    padding: 0;
}


.gd-footer-block li + li {
    margin-top: 10px;
}


.gd-footer-block li a {
    position: relative;

    display: inline-block;

    padding-left: 13px;

    color:
        rgba(255,255,255,.48);

    text-decoration: none;

    font-size: 14px;

    transition:
        color .3s ease,
        padding-left .3s ease;
}


.gd-footer-block li a::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background: var(--gd-orange);
}


.gd-footer-block li a:hover {
    color: white;

    padding-left: 17px;
}


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

.gd-footer-contact-row {
    display: grid;

    grid-template-columns:
        39px 1fr;

    align-items: center;

    gap: 10px;

    min-height: 62px;

    padding:
        9px 0;

    color: inherit;

    text-decoration: none;

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


.gd-footer-contact-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(245,138,36,.09);
}


.gd-footer-contact-icon svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: var(--gd-orange);

    stroke-width: 1.6;
}


.gd-footer-contact-row small {
    display: block;

    margin-bottom: 2px;

    color:
        rgba(255,255,255,.30);

    font-size: 6px;

    font-weight: 900;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


.gd-footer-contact-row strong {
    display: block;

    color:
        rgba(255,255,255,.72);

    font-size: 9px;

    line-height: 1.4;

    font-weight: 800;
}


a.gd-footer-contact-row:hover strong {
    color: var(--gd-orange);
}


/* =========================================================
   SERVICE STRIP
========================================================= */

.gd-footer-service-strip {
    display: grid;

    grid-template-columns:
        auto 1fr repeat(5,auto);

    align-items: center;

    gap: 18px;

    margin-top: 60px;

    padding:
        20px 0;

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

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


.gd-footer-service-strip > span {
    color: var(--gd-orange);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


.gd-footer-service-strip > div {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.04),
            rgba(245,138,36,.4),
            rgba(255,255,255,.04)
        );
}


.gd-footer-service-strip strong {
    color:
        rgba(255,255,255,.44);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


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

.gd-footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    min-height: 72px;
}


.gd-footer-bottom p {
    margin: 0;

    color:
        rgba(255,255,255,.28);

    font-size: 7px;

    letter-spacing: .5px;
}


.gd-footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 18px;
}


.gd-footer-bottom-links a {
    color:
        rgba(255,255,255,.30);

    text-decoration: none;

    font-size: 7px;

    transition: color .3s ease;
}


.gd-footer-bottom-links a:hover {
    color: var(--gd-orange);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gd-footer {
        padding-top: 70px;
    }


    .gd-footer-service-strip {
        grid-template-columns:
            repeat(3,1fr);

        gap: 12px;
    }


    .gd-footer-service-strip > div {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gd-footer {
        padding-top: 60px;
    }


    .gd-footer-service-strip {
        grid-template-columns:
            repeat(2,1fr);

        margin-top: 45px;
    }


    .gd-footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        padding: 20px 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .gd-footer-service-strip {
        grid-template-columns: 1fr;
    }


    .gd-footer-bottom-links {
        flex-wrap: wrap;

        gap: 12px;
    }

}

/* =========================================================
   ABOUT 3 - SPLIT WORKSHOP STORY
========================================================= */

.gd-about3-section {
    position: relative;
    overflow: hidden;

    padding:
        110px
        0
        125px;

    background:
        #ffffff;
}


/* TEXTURE */

.gd-about3-section::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(15, 76, 92, .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 76, 92, .035) 1px,
            transparent 1px
        );

    background-size:
        58px 58px;
}


.gd-about3-section::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -190px;
    top: -160px;

    border-radius: 50%;

    border:
        55px solid
        rgba(217, 119, 87, .05);
}


/* =========================================================
   TOP
========================================================= */

.gd-about3-top {
    position: relative;
    z-index: 5;

    margin-bottom: 48px;
}


.gd-about3-heading-wrap {
    max-width: 730px;
}


/* KICKER */

.gd-about3-kicker {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color:
        var(--gd-copper);

    font-size: 12px;
    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 1.4px;
}


.gd-about3-kicker::before {
    content: "";

    width: 52px;
    height: 2px;

    background:
        var(--gd-copper);
}


/* TITLE */

.gd-about3-title {
    margin: 0;

    color:
        var(--gd-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(46px, 5vw, 72px);

    font-weight: 700;

    line-height: .96;

    letter-spacing: -2.5px;
}


.gd-about3-title span {
    display: block;

    margin-top: 8px;

    color:
        var(--gd-teal-dark);

    font-style: italic;

    font-weight: 400;
}


/* INTRO */

.gd-about3-intro {
    max-width: 440px;

    margin-left: auto;
}


.gd-about3-intro p {
    margin:
        0
        0
        18px;

    color:
        var(--gd-muted);

    font-size: 15px;

    line-height: 1.8;
}


.gd-about3-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color:
        var(--gd-teal-dark);

    font-size: 13px;

    font-weight: 900;

    transition:
        .3s ease;
}


.gd-about3-link span {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color:
        var(--gd-white);

    background:
        var(--gd-copper);

    transition:
        .3s ease;
}


.gd-about3-link:hover {
    color:
        var(--gd-copper);
}


.gd-about3-link:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   MAIN STAGE
========================================================= */

.gd-about3-stage {
    position: relative;
    z-index: 5;

    min-height: 560px;

    margin-top: 15px;
}


/* IMAGE */

.gd-about3-image {
    position: absolute;

    left: 0;
    top: 0;

    width: 76%;
    height: 500px;

    overflow: hidden;

    border-radius:
        6px
        52px
        6px
        52px;

    box-shadow:
        var(--gd-shadow-dark);
}


.gd-about3-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(15, 76, 92, .12),
            transparent 50%
        );

    pointer-events: none;
}


.gd-about3-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .8s ease;
}


.gd-about3-stage:hover
.gd-about3-image img {
    transform:
        scale(1.035);
}


/* =========================================================
   DARK STORY PANEL
========================================================= */

.gd-about3-story {
    position: absolute;

    z-index: 7;

    right: 0;
    top: 70px;

    width: 39%;

    min-height: 320px;

    padding:
        42px
        38px;

    border-radius:
        5px
        34px
        5px
        34px;

    color:
        var(--gd-white);

    background:
        var(--gd-gradient);

    box-shadow:
        var(--gd-shadow-dark);

    overflow: hidden;
}


.gd-about3-story::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    border:
        35px solid
        rgba(255, 255, 255, .04);
}


.gd-about3-story::after {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, .10) 1px,
            transparent 1.1px
        );

    background-size:
        16px 16px;

    opacity: .45;

    pointer-events: none;
}


/* NUMBER */

.gd-about3-story-num {
    position: relative;
    z-index: 2;

    display: block;

    margin-bottom: 20px;

    color:
        var(--gd-copper);

    font-family:
        Georgia,
        serif;

    font-size: 42px;

    font-weight: 700;

    line-height: 1;
}


/* STORY TITLE */

.gd-about3-story h3 {
    position: relative;
    z-index: 2;

    margin:
        0
        0
        17px;

    max-width: 330px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(26px, 2.7vw, 37px);

    line-height: 1.05;
}


/* STORY TEXT */

.gd-about3-story p {
    position: relative;
    z-index: 2;

    margin: 0;

    color:
        rgba(255, 255, 255, .75);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   COPPER BAR
========================================================= */

.gd-about3-bar {
    position: absolute;

    z-index: 9;

    left: 80px;
    bottom: 0;

    width: 68%;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    overflow: hidden;

    border-radius:
        4px
        22px
        4px
        22px;

    background:
        var(--gd-copper-gradient);

    box-shadow:
        0 22px 45px
        rgba(217, 119, 87, .28);
}


.gd-about3-bar-item {
    position: relative;

    padding:
        22px
        25px;

    color:
        var(--gd-white);

    transition:
        .35s ease;
}


.gd-about3-bar-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 25%;
    bottom: 25%;

    width: 1px;

    background:
        rgba(255, 255, 255, .25);
}


.gd-about3-bar-item:hover {
    background:
        rgba(15, 76, 92, .15);
}


.gd-about3-bar-item strong {
    display: block;

    margin-bottom: 5px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
}


.gd-about3-bar-item span {
    display: block;

    font-size: 11px;

    line-height: 1.4;

    opacity: .85;
}


/* =========================================================
   TRACK
========================================================= */

.gd-about3-track {
    position: absolute;

    z-index: 8;

    left: 28px;
    top: 80px;

    width: 4px;
    height: 330px;

    border-radius: 20px;

    background:
        var(--gd-copper);
}


.gd-about3-track span {
    position: absolute;

    left: 50%;

    width: 18px;
    height: 18px;

    border:
        4px solid
        var(--gd-copper);

    border-radius: 50%;

    background:
        var(--gd-white);

    transform:
        translateX(-50%);
}


.gd-about3-track span:nth-child(1) {
    top: 6%;
}


.gd-about3-track span:nth-child(2) {
    top: 47%;
}


.gd-about3-track span:nth-child(3) {
    bottom: 5%;
}


/* =========================================================
   TOOL BADGE
========================================================= */

.gd-about3-tool {
    position: absolute;

    z-index: 10;

    left: 7px;
    top: 5px;

    width: 72px;
    height: 72px;

    display: grid;
    place-items: center;

    border:
        6px solid
        var(--gd-white);

    border-radius: 50%;

    color:
        var(--gd-white);

    background:
        var(--gd-teal-dark);

    box-shadow:
        0 15px 30px
        rgba(18, 26, 33, .18);

    animation:
        gdAbout3Tool 4.5s ease-in-out infinite;
}


.gd-about3-tool svg {
    width: 30px;
    height: 30px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes gdAbout3Tool {

    0%,
    100% {
        transform:
            rotate(-7deg)
            translateY(0);
    }

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

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .gd-about3-section {
        padding:
            90px
            0
            100px;
    }


    .gd-about3-intro {
        max-width: 650px;

        margin-left: 0;
    }


    .gd-about3-stage {
        min-height: 760px;
    }


    .gd-about3-image {
        position: relative;

        width: 90%;
        height: 480px;
    }


    .gd-about3-story {
        top: 375px;

        width: 58%;
    }


    .gd-about3-bar {
        left: 40px;

        width: 78%;
    }


    .gd-about3-track {
        left: 18px;
    }


    .gd-about3-tool {
        left: 0;
    }

}


@media (max-width: 767.98px) {

    .gd-about3-section {
        padding:
            75px
            0
            85px;
    }


    .gd-about3-title {
        font-size:
            clamp(40px, 10vw, 54px);

        letter-spacing: -1.8px;
    }


    .gd-about3-stage {
        min-height: auto;

        display: flex;
        flex-direction: column;

        gap: 18px;
    }


    .gd-about3-image {
        position: relative;

        width: 100%;
        height: 390px;

        border-radius:
            5px
            34px
            5px
            34px;
    }


    .gd-about3-story {
        position: relative;

        top: auto;
        right: auto;

        width: 92%;

        margin:
            -80px
            0
            0
            auto;

        min-height: auto;

        padding:
            32px
            28px;
    }


    .gd-about3-bar {
        position: relative;

        left: auto;
        bottom: auto;

        width: 94%;

        margin:
            -7px
            auto
            0;
    }


    .gd-about3-track {
        display: none;
    }


    .gd-about3-tool {
        top: 20px;
        left: 15px;
    }

}


@media (max-width: 575.98px) {

    .gd-about3-section {
        padding:
            65px
            0
            75px;
    }


    .gd-about3-title {
        font-size: 38px;
    }


    .gd-about3-image {
        height: 330px;
    }


    .gd-about3-story {
        width: 94%;

        margin-top: -55px;

        padding:
            28px
            22px;
    }


    .gd-about3-story h3 {
        font-size: 27px;
    }


    .gd-about3-bar {
        grid-template-columns: 1fr;
    }


    .gd-about3-bar-item {
        padding:
            17px
            20px;
    }


    .gd-about3-bar-item:not(:last-child)::after {
        top: auto;
        bottom: 0;
        left: 20px;
        right: 20px;

        width: auto;
        height: 1px;
    }


    .gd-about3-tool {
        width: 60px;
        height: 60px;

        border-width: 5px;
    }


    .gd-about3-tool svg {
        width: 25px;
        height: 25px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .gd-about3-tool {
        animation: none;
    }

}
/* =========================================================
   ABOUT US
   GARAGE DOOR PANEL CONCEPT
========================================================= */

.gd-panel-about {
    position: relative;
    overflow: hidden;

    padding:
        115px
        0;

    background:
        linear-gradient(
            rgba(242, 242, 242, .965),
            rgba(242, 242, 242, .965)
        ),
        linear-gradient(
            rgba(15, 76, 92, .045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 76, 92, .045) 1px,
            transparent 1px
        );

    background-size:
        auto,
        58px 58px,
        58px 58px;
}


/* LARGE BACKGROUND DETAIL */

.gd-panel-about::before {
    content: "";

    position: absolute;

    width: 440px;
    height: 440px;

    left: -270px;
    bottom: -230px;

    border:
        60px solid
        rgba(15, 76, 92, .035);

    border-radius: 50%;
}


.gd-panel-about::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -170px;
    right: -120px;

    border-radius: 50%;

    background:
        rgba(217, 119, 87, .055);
}


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

.gd-panel-about-content {
    position: relative;
    z-index: 5;

    max-width: 520px;
}


/* EYEBROW */

.gd-panel-eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 19px;

    color:
        var(--gd-copper);

    font-size: 11px;
    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


.gd-panel-eyebrow-line {
    width: 48px;
    height: 2px;

    display: block;

    background:
        var(--gd-copper);
}


/* TITLE */

.gd-panel-title {
    margin:
        0
        0
        25px;

    color:
        var(--gd-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(45px, 4.7vw, 67px);

    font-weight: 700;

    line-height: .98;

    letter-spacing: -2.2px;
}


.gd-panel-title span {
    display: block;

    margin-top: 8px;

    color:
        var(--gd-teal-dark);

    font-weight: 400;
    font-style: italic;
}


/* TEXT */

.gd-panel-lead {
    margin:
        0
        0
        16px;

    color:
        var(--gd-dark);

    font-size: 16px;

    font-weight: 600;

    line-height: 1.75;
}


.gd-panel-text {
    margin:
        0
        0
        27px;

    color:
        var(--gd-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   TRUST LINE
========================================================= */

.gd-panel-trust {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 28px;

    padding:
        16px
        0;

    border-top:
        1px solid
        var(--gd-line);

    border-bottom:
        1px solid
        var(--gd-line);
}


.gd-panel-trust-icon {
    width: 46px;
    height: 46px;

    flex:
        0 0
        46px;

    display: grid;
    place-items: center;

    border-radius:
        50%
        50%
        5px
        50%;

    color:
        var(--gd-white);

    background:
        var(--gd-teal-dark);
}


.gd-panel-trust-icon svg {
    width: 22px;
    height: 22px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.gd-panel-trust strong {
    display: block;

    margin-bottom: 4px;

    color:
        var(--gd-teal-dark);

    font-family:
        Georgia,
        serif;

    font-size: 17px;
}


.gd-panel-trust span {
    color:
        var(--gd-muted);

    font-size: 11px;
}


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

.gd-panel-about-btn {
    min-height: 53px;

    display: inline-flex;
    align-items: center;

    gap: 18px;

    padding:
        0
        7px
        0
        22px;

    border-radius:
        4px
        20px
        4px
        20px;

    color:
        var(--gd-white);

    background:
        var(--gd-teal-dark);

    font-size: 12px;
    font-weight: 900;

    text-decoration: none;

    box-shadow:
        0 15px 30px
        rgba(15, 76, 92, .17);

    transition:
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}


.gd-panel-about-btn > span {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius:
        50%
        50%
        5px
        50%;

    color:
        var(--gd-white);

    background:
        var(--gd-copper);

    transition:
        transform .35s ease;
}


.gd-panel-about-btn svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.gd-panel-about-btn:hover {
    color:
        var(--gd-white);

    background:
        var(--gd-teal);

    transform:
        translateY(-4px);

    box-shadow:
        0 20px 38px
        rgba(15, 76, 92, .23);
}


.gd-panel-about-btn:hover > span {
    transform:
        translateX(3px)
        rotate(-5deg);
}


/* =========================================================
   MACHINE VISUAL
========================================================= */

.gd-panel-machine {
    position: relative;

    z-index: 5;

    width: 100%;
    max-width: 680px;

    min-height: 620px;

    margin:
        0
        auto;
}


/* BACK NUMBER */

.gd-panel-back-number {
    position: absolute;

    z-index: 0;

    right: -5px;
    top: -75px;

    color:
        rgba(15, 76, 92, .055);

    font-family:
        Georgia,
        serif;

    font-size: 180px;

    font-weight: 700;

    line-height: 1;

    pointer-events: none;
}


/* =========================================================
   DOOR STRUCTURE
========================================================= */

.gd-panel-door {
    position: absolute;

    z-index: 2;

    left: 0;
    top: 45px;

    width: 82%;
    height: 510px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, .11);

    border-radius:
        8px
        38px
        8px
        38px;

    background:
        var(--gd-teal-dark);

    box-shadow:
        var(--gd-shadow-dark);
}


/* BLUEPRINT TEXTURE */

.gd-panel-door::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .35;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, .045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .045) 1px,
            transparent 1px
        );

    background-size:
        36px 36px;
}


/* =========================================================
   DOOR HEAD
========================================================= */

.gd-panel-door-head {
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 2;

    padding:
        0
        25px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .12);

    color:
        rgba(255, 255, 255, .60);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}


.gd-panel-door-head-left {
    display: flex;
    align-items: center;

    gap: 8px;
}


.gd-panel-status-dot {
    width: 7px;
    height: 7px;

    display: inline-block;

    border-radius: 50%;

    background:
        var(--gd-copper);

    box-shadow:
        0 0 0 5px
        rgba(217, 119, 87, .12);
}


/* =========================================================
   GARAGE PANELS
========================================================= */

.gd-panel-row {
    min-height: 110px;

    display: flex;
    align-items: center;

    position: relative;
    z-index: 2;

    gap: 17px;

    padding:
        18px
        165px
        18px
        25px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .11);

    transition:
        background .35s ease,
        padding-left .35s ease;
}


.gd-panel-row:last-child {
    border-bottom: 0;
}


.gd-panel-row:hover {
    padding-left: 33px;

    background:
        rgba(255, 255, 255, .055);
}


.gd-panel-row-number {
    width: 35px;
    height: 35px;

    flex:
        0 0
        35px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(255, 255, 255, .17);

    border-radius: 50%;

    color:
        var(--gd-copper);

    font-size: 9px;

    font-weight: 900;

    transition:
        color .35s ease,
        background .35s ease,
        border-color .35s ease;
}


.gd-panel-row:hover
.gd-panel-row-number {
    color:
        var(--gd-white);

    border-color:
        var(--gd-copper);

    background:
        var(--gd-copper);
}


.gd-panel-row strong {
    display: block;

    margin-bottom: 3px;

    color:
        var(--gd-white);

    font-family:
        Georgia,
        serif;

    font-size: 19px;
}


.gd-panel-row small {
    display: block;

    color:
        rgba(255, 255, 255, .55);

    font-size: 10px;
}


.gd-panel-row-line {
    width: 48px;
    height: 1px;

    display: block;

    margin-left: auto;

    background:
        rgba(255, 255, 255, .16);

    transition:
        width .35s ease,
        background .35s ease;
}


.gd-panel-row:hover
.gd-panel-row-line {
    width: 70px;

    background:
        var(--gd-copper);
}


/* =========================================================
   PHOTO CUTOUT
========================================================= */

.gd-panel-photo {
    position: absolute;

    z-index: 6;

    right: 0;
    top: 115px;

    width: 45%;
    height: 385px;

    overflow: hidden;

    border:
        8px solid
        var(--gd-light);

    border-radius:
        5px
        42px
        5px
        42px;

    background:
        #d7e0e1;

    box-shadow:
        0 25px 55px
        rgba(18, 26, 33, .24);

    transform:
        rotate(1.5deg);

    transition:
        transform .55s ease;
}


.gd-panel-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(15, 76, 92, .16),
            transparent 50%
        );
}


.gd-panel-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform .75s ease;
}


.gd-panel-machine:hover
.gd-panel-photo {
    transform:
        rotate(0)
        translateY(-7px);
}


.gd-panel-machine:hover
.gd-panel-photo img {
    transform:
        scale(1.045);
}


/* =========================================================
   VERTICAL TRACK
========================================================= */

.gd-panel-track {
    position: absolute;

    z-index: 8;

    right: 17px;
    top: 160px;

    width: 3px;
    height: 275px;

    border-radius: 20px;

    background:
        var(--gd-copper);
}


.gd-panel-track::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: -5px;

    width: 13px;

    border:
        1px solid
        rgba(217, 119, 87, .28);

    border-radius: 20px;
}


.gd-panel-wheel {
    position: absolute;

    left: 50%;

    width: 17px;
    height: 17px;

    border:
        4px solid
        var(--gd-copper);

    border-radius: 50%;

    background:
        var(--gd-light);

    transform:
        translateX(-50%);
}


.gd-panel-wheel-one {
    top: 8%;
}


.gd-panel-wheel-two {
    top: 48%;
}


.gd-panel-wheel-three {
    bottom: 7%;
}


/* =========================================================
   TOOL BADGE
========================================================= */

.gd-panel-tool {
    position: absolute;

    z-index: 10;

    left: 38px;
    top: 17px;

    width: 73px;
    height: 73px;

    display: grid;
    place-items: center;

    border:
        6px solid
        var(--gd-light);

    border-radius:
        50%
        50%
        8px
        50%;

    color:
        var(--gd-white);

    background:
        var(--gd-copper);

    box-shadow:
        0 16px 35px
        rgba(217, 119, 87, .25);

    animation:
        gdPanelTool
        4.5s
        ease-in-out
        infinite;
}


.gd-panel-tool svg {
    width: 30px;
    height: 30px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   BOTTOM NOTE
========================================================= */

.gd-panel-bottom-note {
    position: absolute;

    z-index: 9;

    left: 105px;
    bottom: 10px;

    min-width: 300px;

    padding:
        16px
        22px;

    border-left:
        4px solid
        var(--gd-copper);

    background:
        var(--gd-white);

    box-shadow:
        var(--gd-shadow);
}


.gd-panel-bottom-note span {
    display: block;

    margin-bottom: 3px;

    color:
        var(--gd-copper);

    font-size: 9px;
    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.gd-panel-bottom-note strong {
    display: block;

    color:
        var(--gd-teal-dark);

    font-family:
        Georgia,
        serif;

    font-size: 16px;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes gdPanelTool {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-6deg);
    }

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

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {

    .gd-panel-row {
        padding-right:
            135px;
    }


    .gd-panel-photo {
        width: 43%;
    }

}


@media (max-width: 991.98px) {

    .gd-panel-about {
        padding:
            90px
            0;
    }


    .gd-panel-about-content {
        max-width: 700px;

        margin:
            0
            auto;
    }


    .gd-panel-machine {
        max-width: 650px;

        margin-top: 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .gd-panel-about {
        padding:
            75px
            0;
    }


    .gd-panel-title {
        font-size:
            clamp(39px, 9vw, 52px);

        letter-spacing:
            -1.6px;
    }


    .gd-panel-machine {
        min-height: 735px;

        max-width: 500px;
    }


    .gd-panel-door {
        position: relative;

        top: auto;
        left: auto;

        width: 100%;
        height: auto;

        padding-bottom:
            10px;
    }


    .gd-panel-door-head {
        height: 62px;
    }


    .gd-panel-row {
        min-height: 93px;

        padding:
            16px
            20px;
    }


    .gd-panel-photo {
        top: auto;
        right: 22px;
        bottom: 85px;

        width: 68%;
        height: 290px;
    }


    .gd-panel-track {
        display: none;
    }


    .gd-panel-tool {
        left: -8px;
        top: -25px;
    }


    .gd-panel-bottom-note {
        left: 15px;
        bottom: 0;

        min-width: 0;

        width: 78%;
    }


    .gd-panel-back-number {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .gd-panel-about {
        padding:
            65px
            0;
    }


    .gd-panel-title {
        font-size:
            38px;
    }


    .gd-panel-lead {
        font-size:
            14px;
    }


    .gd-panel-text {
        font-size:
            13px;
    }


    .gd-panel-about-btn {
        width: 100%;

        justify-content:
            space-between;
    }


    .gd-panel-machine {
        min-height:
            675px;

        margin-top:
            35px;
    }


    .gd-panel-door {
        border-radius:
            5px
            27px
            5px
            27px;
    }


    .gd-panel-door-head {
        padding:
            0
            17px;

        font-size:
            7px;
    }


    .gd-panel-row {
        min-height:
            85px;

        gap:
            12px;
    }


    .gd-panel-row strong {
        font-size:
            17px;
    }


    .gd-panel-row-line {
        display: none;
    }


    .gd-panel-photo {
        right: 12px;
        bottom: 82px;

        width: 76%;
        height: 255px;

        border-width:
            6px;

        border-radius:
            4px
            29px
            4px
            29px;
    }


    .gd-panel-tool {
        width: 60px;
        height: 60px;

        left: -4px;
        top: -23px;

        border-width:
            5px;
    }


    .gd-panel-tool svg {
        width: 24px;
        height: 24px;
    }


    .gd-panel-bottom-note {
        left: 5px;

        width: 88%;

        padding:
            13px
            17px;
    }


    .gd-panel-bottom-note strong {
        font-size:
            14px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .gd-panel-tool {
        animation: none;
    }


    .gd-panel-photo,
    .gd-panel-photo img,
    .gd-panel-row,
    .gd-panel-row-number,
    .gd-panel-row-line,
    .gd-panel-about-btn,
    .gd-panel-about-btn > span {
        transition: none;
    }

}
:root {

    /* Used as the main dark color */
    --gd-teal-dark: #0b1b29;

    /* Used as the secondary dark color */
    --gd-teal: #112a3c;

    /* Used for orange accents */
    --gd-copper: #f58a24;

    /* Main text */
    --gd-dark: #0b1b29;
    --gd-text: #172431;

    /* Background */
    --gd-light: #f4f7f9;
    --gd-white: #ffffff;

    /* Paragraph text */
    --gd-muted: #6f7f8b;

    /* Borders */
    --gd-line: rgba(11, 27, 41, .12);

    /* Shadows */
    --gd-shadow:
        0 24px 60px rgba(11, 27, 41, .16);

    --gd-shadow-dark:
        0 30px 80px rgba(0, 0, 0, .35);
}

.gd-faq-service {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.gd-faq-service small {
    width: 100%;
    padding-left: 43px;
    margin-top: -8px;
    color: var(--gd-muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .4px;
}/* =========================================================
   FAQ TECHNICAL MANUAL
========================================================= */

.gd-faq-tech-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;

    background:
        linear-gradient(
            rgba(244, 247, 249, .97),
            rgba(244, 247, 249, .97)
        ),
        linear-gradient(
            rgba(11, 27, 41, .04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11, 27, 41, .04) 1px,
            transparent 1px
        );

    background-size:
        auto,
        60px 60px,
        60px 60px;
}


/* ORANGE DECORATION */

.gd-faq-tech-section::before {
    content: "";

    position: absolute;

    top: -170px;
    right: -170px;

    width: 340px;
    height: 340px;

    border: 55px solid rgba(245, 138, 36, .07);

    border-radius: 50%;
}


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

.gd-faq-tech-kicker {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: var(--gd-orange);

    font-size: 11px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.gd-faq-tech-kicker::before {
    content: "";

    width: 45px;
    height: 2px;

    background: var(--gd-orange);
}


.gd-faq-tech-title {
    margin: 0;

    color: var(--gd-navy);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(44px, 5vw, 68px);

    line-height: .98;

    letter-spacing: -2px;
}


.gd-faq-tech-title span {
    display: block;

    color: var(--gd-orange);

    font-style: italic;
    font-weight: 400;
}


.gd-faq-tech-intro {
    margin: 0;

    color: #6d7d88;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   SERVICE INDEX
========================================================= */

.gd-faq-tech-index {
    display: flex;
    align-items: center;

    gap: 7px;

    overflow-x: auto;

    padding: 11px;

    border-radius: 5px 24px 5px 24px;

    background: var(--gd-navy);

    box-shadow: 0 18px 45px rgba(11, 27, 41, .15);

    scrollbar-width: thin;
}


.gd-faq-tech-index span {
    flex: 0 0 auto;

    padding: 9px 13px;

    border-right: 1px solid rgba(255, 255, 255, .1);

    color: rgba(255, 255, 255, .7);

    font-size: 9px;
    font-weight: 800;

    white-space: nowrap;

    transition: .3s ease;
}


.gd-faq-tech-index span:last-child {
    border-right: 0;
}


.gd-faq-tech-index span:hover {
    color: var(--gd-white);

    background: var(--gd-orange);

    border-radius: 3px 12px 3px 12px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.gd-faq-tech-item {
    position: relative;

    height: 100%;

    overflow: hidden;

    border:
        1px solid
        rgba(11, 27, 41, .09);

    border-radius:
        5px 25px 5px 25px;

    background:
        var(--gd-white);

    box-shadow:
        0 14px 35px
        rgba(11, 27, 41, .07);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.gd-faq-tech-item:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(245, 138, 36, .3);

    box-shadow:
        0 22px 48px
        rgba(11, 27, 41, .11);
}


/* ORANGE EDGE */

.gd-faq-tech-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 18px;
    bottom: 18px;

    width: 3px;

    border-radius:
        0 5px 5px 0;

    background:
        var(--gd-orange);

    transform:
        scaleY(.25);

    transition:
        transform .35s ease;
}


.gd-faq-tech-item[open]::before {
    transform:
        scaleY(1);
}


/* =========================================================
   SUMMARY
========================================================= */

.gd-faq-tech-item summary {
    min-height: 125px;

    display: flex;
    align-items: center;

    gap: 17px;

    padding:
        23px
        22px;

    list-style: none;

    cursor: pointer;
}


.gd-faq-tech-item summary::-webkit-details-marker {
    display: none;
}


/* NUMBER */

.gd-faq-tech-code {
    width: 55px;
    height: 55px;

    flex: 0 0 55px;

    display: grid;
    place-items: center;

    border-radius:
        50%
        50%
        5px
        50%;

    color:
        var(--gd-orange);

    background:
        rgba(245, 138, 36, .09);

    font-family:
        Georgia,
        serif;

    font-size: 17px;

    font-weight: 700;

    transition: .3s ease;
}


.gd-faq-tech-item[open]
.gd-faq-tech-code {
    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    transform:
        rotate(-6deg);
}


/* HEADING */

.gd-faq-tech-heading {
    flex: 1;
}


.gd-faq-tech-heading small {
    display: block;

    margin-bottom: 6px;

    color:
        var(--gd-orange);

    font-size: 8px;
    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.gd-faq-tech-heading strong {
    display: block;

    color:
        var(--gd-navy);

    font-family:
        Georgia,
        serif;

    font-size: 17px;

    line-height: 1.4;
}


/* =========================================================
   PLUS
========================================================= */

.gd-faq-tech-plus {
    position: relative;

    width: 38px;
    height: 38px;

    flex:
        0 0
        38px;

    border:
        1px solid
        rgba(11, 27, 41, .12);

    border-radius:
        50%;

    transition:
        background .3s ease,
        transform .3s ease;
}


.gd-faq-tech-plus::before,
.gd-faq-tech-plus::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 12px;
    height: 2px;

    border-radius: 10px;

    background:
        var(--gd-navy);

    transform:
        translate(-50%, -50%);
}


.gd-faq-tech-plus::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);

    transition:
        transform .3s ease;
}


.gd-faq-tech-item[open]
.gd-faq-tech-plus {
    background:
        var(--gd-navy);

    transform:
        rotate(180deg);
}


.gd-faq-tech-item[open]
.gd-faq-tech-plus::before,
.gd-faq-tech-item[open]
.gd-faq-tech-plus::after {
    background:
        var(--gd-white);
}


.gd-faq-tech-item[open]
.gd-faq-tech-plus::after {
    transform:
        translate(-50%, -50%)
        rotate(0);
}


/* =========================================================
   ANSWER
========================================================= */

.gd-faq-tech-answer {
    margin:
        0
        22px
        22px
        94px;

    padding:
        17px
        0
        0;

    border-top:
        1px solid
        rgba(11, 27, 41, .08);

    color:
        #6d7d88;

    font-size: 13px;

    line-height: 1.8;
}


/* WIDE LAST ITEM */

.gd-faq-tech-wide summary {
    min-height: 105px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .gd-faq-tech-section {
        padding:
            85px
            0;
    }

    .gd-faq-tech-intro {
        max-width: 650px;
    }

}


@media (max-width: 767.98px) {

    .gd-faq-tech-section {
        padding:
            70px
            0;
    }


    .gd-faq-tech-title {
        font-size:
            44px;
    }


    .gd-faq-tech-item summary {
        min-height:
            110px;
    }

}


@media (max-width: 575.98px) {

    .gd-faq-tech-title {
        font-size:
            37px;

        letter-spacing:
            -1px;
    }


    .gd-faq-tech-index {
        border-radius:
            4px 18px 4px 18px;
    }


    .gd-faq-tech-item summary {
        min-height:
            100px;

        gap:
            11px;

        padding:
            17px
            14px;
    }


    .gd-faq-tech-code {
        width:
            42px;

        height:
            42px;

        flex-basis:
            42px;

        font-size:
            14px;
    }


    .gd-faq-tech-heading strong {
        font-size:
            14px;
    }


    .gd-faq-tech-plus {
        width:
            31px;

        height:
            31px;

        flex-basis:
            31px;
    }


    .gd-faq-tech-answer {
        margin:
            0
            14px
            18px
            67px;

        padding-top:
            14px;

        font-size:
            12px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .gd-faq-tech-item,
    .gd-faq-tech-code,
    .gd-faq-tech-plus,
    .gd-faq-tech-plus::after {
        transition: none;
    }

}