/* =========================================================
   WEBSITE DEVELOPMENT — PREMIUM HERO
   Heptagon Global Services
========================================================= */

.wd-hero {
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
    color: #fff;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 110px 0 100px;
}

/* =========================================================
   CONTAINER
========================================================= */

.wd-container {
    width: 92%;
    max-width: 1380px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

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

.wd-hero-bg {
    position: absolute;
    width: 700px;
    height: 700px;
    right: -180px;
    top: -250px;
    background: radial-gradient(
        circle,
        rgba(225, 0, 1, 0.22) 0%,
        rgba(225, 0, 1, 0.08) 35%,
        transparent 70%
    );
    filter: blur(20px);
    pointer-events: none;
}

.wd-hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -300px;
    bottom: -250px;
    border-radius: 50%;
    background: rgba(225, 0, 1, 0.07);
    filter: blur(80px);
}

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

.wd-hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 70px;
    align-items: center;
}

/* =========================================================
   EYEBROW
========================================================= */

.wd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #d7d7d7;
    margin-bottom: 25px;
}

.wd-eyebrow-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e00101;
    box-shadow: 0 0 15px rgba(225, 0, 1, 0.8);
}

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

.wd-hero-content h1 {
    margin: 0;
    font-size: clamp(52px, 5.8vw, 60px);
    line-height: 0.98;
    letter-spacing: -4px;
    font-weight: 600;
    max-width: 760px;
}

.wd-hero-content h1 span {
    color: #e00101;
}

.wd-hero-text {
    max-width: 620px;
    margin: 30px 0 0;
    color: #bcbcbc;
    font-size: 18px;
    line-height: 1.75;
}

/* =========================================================
   BUTTONS
========================================================= */

.wd-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 38px;
}

.wd-btn {
    min-height: 56px;
    padding: 0 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.wd-btn-primary {
    background: #e00101;
    color: #fff;
    box-shadow: 0 12px 35px rgba(225, 0, 1, 0.25);
}

.wd-btn-primary span {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.wd-btn-primary:hover {
    background: #ff1717;
    color: #fff;
    transform: translateY(-3px);
}

.wd-btn-primary:hover span {
    transform: translate(3px, -3px);
}

.wd-btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.03);
}

.wd-btn-outline:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
    transform: translateY(-3px);
}

/* =========================================================
   TRUST
========================================================= */

.wd-hero-trust {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 55px;
}

.wd-trust-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wd-trust-item strong {
    font-size: 25px;
    font-weight: 800;
}

.wd-trust-item span {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.wd-trust-line {
    width: 1px;
    height: 42px;
    background: rgba(255,255,255,0.18);
}

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

.wd-hero-visual {
    min-height: 540px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(225, 0, 1, 0.18);
    filter: blur(90px);
}

/* =========================================================
   BROWSER
========================================================= */

.wd-browser {
    position: relative;
    z-index: 3;
    width: min(610px, 100%);
    border-radius: 20px;
    overflow: hidden;
    background: #191919;
    border: 1px solid rgba(255,255,255,0.13);
    box-shadow:
        0 40px 100px rgba(0,0,0,0.65),
        0 0 80px rgba(225,0,1,0.12);
    transform: perspective(1200px) rotateY(-7deg) rotateX(3deg);
    transition: transform 0.6s ease;
}

.wd-browser:hover {
    transform:
        perspective(1200px)
        rotateY(0deg)
        rotateX(0deg)
        translateY(-8px);
}

/* Browser header */

.wd-browser-top {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 17px;
    background: #222;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wd-browser-dots {
    display: flex;
    gap: 6px;
}

.wd-browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
}

.wd-browser-url {
    flex: 1;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #151515;
    color: #777;
    font-size: 10px;
}

/* Browser screen */

.wd-browser-screen {
    min-height: 390px;
    background:
        linear-gradient(
            135deg,
            #181818 0%,
            #252525 50%,
            #111 100%
        );
    position: relative;
    overflow: hidden;
}

.wd-browser-screen::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -130px;
    bottom: -180px;
    background: rgba(225,0,1,0.28);
    border-radius: 50%;
    filter: blur(60px);
}

/* Screen navigation */

.wd-screen-nav {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
}

.wd-screen-logo {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e00101;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.wd-screen-menu {
    display: flex;
    gap: 7px;
}

.wd-screen-menu span {
    display: block;
    width: 20px;
    height: 3px;
    border-radius: 3px;
    background: #777;
}

/* Screen content */

.wd-screen-content {
    padding: 50px 50px;
    position: relative;
    z-index: 2;
}

.wd-screen-label {
    font-size: 9px;
    letter-spacing: 2px;
    color: #999;
    font-weight: 700;
}

.wd-screen-heading {
    margin-top: 15px;
    font-size: 52px;
    line-height: 0.92;
    font-weight: 800;
    letter-spacing: -2px;
}

.wd-screen-heading em {
    color: #e00101;
    font-style: normal;
}

.wd-screen-line {
    width: 80px;
    height: 4px;
    background: #e00101;
    margin-top: 28px;
}

/* Mini cards */

.wd-screen-cards {
    display: flex;
    gap: 10px;
    margin-top: 45px;
}

.wd-screen-cards div {
    width: 70px;
    height: 35px;
    border-radius: 7px;
    background: rgba(255,255,255,0.08);
}

/* =========================================================
   FLOATING CARDS
========================================================= */

.wd-floating-card {
    position: absolute;
    z-index: 8;
    background: rgba(25,25,25,0.92);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.13);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    border-radius: 14px;
}

/* Card 1 */

.wd-card-performance {
    left: -15px;
    top: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 17px;
}

.wd-card-performance strong,
.wd-card-mobile strong {
    display: block;
    font-size: 12px;
}

.wd-card-performance span,
.wd-card-mobile span {
    display: block;
    color: #888;
    font-size: 9px;
    margin-top: 3px;
}

.wd-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(225,0,1,0.15);
    color: #ff2424;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* Card 2 */

.wd-card-mobile {
    right: -20px;
    bottom: 95px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 17px;
}

/* Card 3 */

.wd-card-speed {
    right: 20px;
    top: 45px;
    padding: 13px 18px;
    transform: rotate(5deg);
}

.wd-card-speed strong {
    display: block;
    color: #e00101;
    font-size: 20px;
    line-height: 1;
}

.wd-card-speed span {
    display: block;
    margin-top: 4px;
    color: #888;
    font-size: 9px;
}

/* =========================================================
   FLOATING ANIMATION
========================================================= */

.wd-card-performance {
    animation: wdFloatOne 4s ease-in-out infinite;
}

.wd-card-mobile {
    animation: wdFloatTwo 5s ease-in-out infinite;
}

.wd-card-speed {
    animation: wdFloatThree 4.5s ease-in-out infinite;
}

@keyframes wdFloatOne {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes wdFloatTwo {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes wdFloatThree {
    0%,100% {
        transform: rotate(5deg) translateY(0);
    }
    50% {
        transform: rotate(5deg) translateY(-8px);
    }
}

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

@media (max-width: 1050px) {

    .wd-hero-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .wd-hero-content {
        text-align: center;
    }

    .wd-hero-content h1,
    .wd-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .wd-hero-actions,
    .wd-hero-trust {
        justify-content: center;
    }

    .wd-hero-visual {
        min-height: 500px;
    }

    .wd-browser {
        max-width: 650px;
    }

}

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

@media (max-width: 700px) {

    .wd-hero {
        min-height: auto;
        padding: 80px 0 70px;
    }

    .wd-container {
        width: 90%;
    }

    .wd-hero-grid {
        gap: 50px;
    }

    .wd-eyebrow {
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .wd-hero-content h1 {
        font-size: clamp(42px, 12vw, 62px);
        letter-spacing: -2.5px;
        line-height: 1;
    }

    .wd-hero-text {
        font-size: 15px;
        line-height: 1.65;
        margin-top: 24px;
    }

    .wd-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .wd-btn {
        width: 100%;
    }

    .wd-hero-trust {
        gap: 20px;
        margin-top: 40px;
    }

    .wd-trust-item strong {
        font-size: 20px;
    }

    .wd-trust-item span {
        font-size: 9px;
    }

    .wd-hero-visual {
        min-height: 390px;
    }

    .wd-browser {
        width: 100%;
        transform: none;
        border-radius: 14px;
    }

    .wd-browser-screen {
        min-height: 280px;
    }

    .wd-screen-content {
        padding: 35px 28px;
    }

    .wd-screen-heading {
        font-size: 40px;
    }

    .wd-card-performance {
        left: -8px;
        top: 55px;
    }

    .wd-card-mobile {
        right: -8px;
        bottom: 45px;
    }

    .wd-card-speed {
        right: 5px;
        top: 15px;
    }

}

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

@media (max-width: 450px) {

    .wd-hero {
        padding-top: 65px;
    }

    .wd-hero-visual {
        min-height: 320px;
    }

    .wd-browser-top {
        height: 38px;
    }

    .wd-browser-screen {
        min-height: 235px;
    }

    .wd-screen-nav {
        height: 45px;
        padding: 0 18px;
    }

    .wd-screen-content {
        padding: 25px 22px;
    }

    .wd-screen-heading {
        font-size: 32px;
    }

    .wd-screen-cards {
        margin-top: 25px;
    }

    .wd-floating-card {
        transform: scale(0.8);
    }

    .wd-card-performance {
        left: -25px;
    }

    .wd-card-mobile {
        right: -25px;
    }

    .wd-card-speed {
        right: -10px;
    }

}
/* =========================================================
   WEBSITE DEVELOPMENT — SECTION 2
   EXPERIENCE & RESULTS
   HGS EXISTING DESIGN SYSTEM
========================================================= */

.wd-stats {
    position: relative;

    width: 100%;

    background: #F8F8F6;

    padding: 110px 0 120px;

    overflow: hidden;
}


.wd-stats-container {
    width: 92%;

    max-width: 1380px;

    margin: 0 auto;
}


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

.wd-stats-header {
    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 55px;

    align-items: start;

    margin-bottom: 70px;
}


/* =========================================================
   EYEBROW
========================================================= */

.wd-stats-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    padding-top: 13px;

    color: #035297;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.wd-stats-eyebrow span {
    width: 7px;

    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #035297;
}


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

.wd-stats-heading h2 {
    margin: 0;

    max-width: 850px;

    color: #111111;

    font-size: clamp(48px, 5.5vw, 60px);

    font-weight: 600;

    line-height: 0.96;

    letter-spacing: -3.5px;
}


.wd-stats-heading h2 strong {
    display: block;

    color: #111111;

    font-weight: 600;
}


.wd-stats-heading p {
    max-width: 680px;

    margin: 28px 0 0;

    color: #666666;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   STATS GRID
========================================================= */

.wd-stats-grid {
    display: grid;

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

    background: #FFFFFF;

    border-top: 1px solid #DDDDDD;

    border-left: 1px solid #DDDDDD;
}


/* =========================================================
   STAT CARD
========================================================= */

.wd-stat-card {
    position: relative;

    min-height: 285px;

    padding: 40px 35px 38px;

    background: #FFFFFF;

    border-right: 1px solid #DDDDDD;

    border-bottom: 1px solid #DDDDDD;

    overflow: hidden;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   CARD INDEX
========================================================= */

.wd-stat-card::before {
    content: attr(data-number);

    position: absolute;

    top: 40px;

    left: 35px;

    color: #999999;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1px;
}


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

.wd-stat-number {
    margin-top: 72px;

    color: #035297;

    font-size: clamp(50px, 6vw, 60px);

    font-weight: 600;

    line-height: 0.85;

    letter-spacing: -4px;
}


/* =========================================================
   PRIMARY BLUE ACCENT
========================================================= */

.wd-stat-number span {
    color: #035297;

    font-weight: 800;
}


/* =========================================================
   CARD TITLE
========================================================= */

.wd-stat-card h3 {
    margin: 28px 0 0;

    color: #111111;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.25;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.wd-stat-card p {
    max-width: 300px;

    margin: 10px 0 0;

    color: #666666;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   SUBTLE HOVER
========================================================= */

.wd-stat-card:hover {
    background: #FCFCFC;

    transform: translateY(-3px);
}


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

@media (max-width: 1050px) {

    .wd-stats {
        padding: 90px 0 100px;
    }


    .wd-stats-header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 55px;
    }


    .wd-stats-eyebrow {
        padding-top: 0;
    }


    .wd-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .wd-stat-card {
        min-height: 270px;
    }

}


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

@media (max-width: 650px) {

    .wd-stats {
        padding: 75px 0 80px;
    }


    .wd-stats-container {
        width: 90%;
    }


    .wd-stats-header {
        margin-bottom: 45px;
    }


    .wd-stats-eyebrow {
        font-size: 10px;

        letter-spacing: 1.2px;
    }


    .wd-stats-heading h2 {
        font-size: 43px;

        line-height: 1;

        letter-spacing: -2.5px;
    }


    .wd-stats-heading p {
        margin-top: 22px;

        font-size: 14px;

        line-height: 1.7;
    }


    .wd-stats-grid {
        grid-template-columns: 1fr;
    }


    .wd-stat-card {
        min-height: 250px;

        padding: 30px 24px 35px;
    }


    .wd-stat-card::before {
        top: 30px;

        left: 24px;
    }


    .wd-stat-number {
        margin-top: 58px;

        font-size: 68px;

        letter-spacing: -4px;
    }


    .wd-stat-card h3 {
        margin-top: 22px;

        font-size: 16px;
    }


    .wd-stat-card p {
        font-size: 13px;

        line-height: 1.65;
    }

}


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

@media (max-width: 420px) {

    .wd-stats-heading h2 {
        font-size: 38px;

        letter-spacing: -2px;
    }


    .wd-stat-number {
        font-size: 62px;
    }


    .wd-stat-card {
        min-height: 235px;
    }

}
/* =========================================================
   WEBSITE DEVELOPMENT — SECTION 3
   YOUR WEBSITE SHOULD DO MORE
   HGS DESIGN SYSTEM
========================================================= */

.wd-purpose {
    position: relative;

    width: 100%;

    background: #FFFFFF;

    padding: 120px 0 125px;

    overflow: hidden;
}


.wd-purpose-container {
    width: 92%;

    max-width: 1380px;

    margin: 0 auto;
}


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

.wd-purpose-header {
    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 55px;

    align-items: start;

    margin-bottom: 70px;
}


/* =========================================================
   EYEBROW
========================================================= */

.wd-purpose-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    padding-top: 13px;

    color: #035297;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.wd-purpose-eyebrow span {
    width: 7px;

    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #035297;
}


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

.wd-purpose-heading h2 {
    margin: 0;

    max-width: 850px;

    color: #111111;

    font-size: clamp(48px, 5.5vw, 60px);

    font-weight: 600;

    line-height: 0.96;

    letter-spacing: -3.5px;
}


.wd-purpose-heading h2 strong {
    display: block;

    color: #035297;

    font-weight: 600;
}


.wd-purpose-heading p {
    max-width: 680px;

    margin: 28px 0 0;

    color: #666666;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   CARDS GRID
========================================================= */

.wd-purpose-grid {
    display: grid;

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

    gap: 18px;

    align-items: stretch;
}


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

.wd-purpose-card {
    position: relative;

    min-height: 390px;

    display: flex;

    flex-direction: column;

    padding: 32px;

    background: #F8F8F6;

    border: 1px solid #DDDDDD;

    border-radius: 20px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.wd-purpose-card:hover {
    background: #FFFFFF;

    border-color: #CFCFCF;

    transform: translateY(-5px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
}


/* =========================================================
   CARD TOP
========================================================= */

.wd-purpose-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.wd-purpose-number {
    color: #888888;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


.wd-purpose-arrow {
    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #D9D9D9;

    border-radius: 50%;

    color: #111111;

    font-size: 16px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.wd-purpose-card:hover .wd-purpose-arrow {
    background: #035297;

    border-color: #035297;

    color: #FFFFFF;
}


/* =========================================================
   ICON
========================================================= */

.wd-purpose-icon {
    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 55px;

    background: #EEF5FA;

    border-radius: 14px;
}


.wd-purpose-icon svg {
    width: 23px;

    height: 23px;

    fill: none;

    stroke: #035297;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}


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

.wd-purpose-card h3 {
    margin: 25px 0 0;

    color: #111111;

    font-size: 30px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: -1px;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.wd-purpose-card p {
    max-width: 340px;

    margin: 15px 0 0;

    color: #666666;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.7;
}


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

.wd-purpose-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: auto;

    padding-top: 30px;
}


.wd-purpose-tags span {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 36px;

    padding: 0 13px;

    border: 1px solid #DCDCDC;

    border-radius: 50px;

    background: #FFFFFF;

    color: #555555;

    font-size: 10px;

    font-weight: 700;

    line-height: 1;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}


.wd-purpose-card:hover .wd-purpose-tags span {
    border-color: #CFCFCF;
}


/* =========================================================
   FEATURED CARD
   LIGHT BLUE — NOT DARK
========================================================= */

.wd-purpose-featured {
    background: #EEF5FA;

    border-color: #D5E4EF;
}


.wd-purpose-featured:hover {
    background: #F4F8FB;

    border-color: #C5D9E7;
}


.wd-purpose-featured .wd-purpose-icon {
    background: #FFFFFF;
}


.wd-purpose-featured .wd-purpose-tags span {
    background: #FFFFFF;

    border-color: #D3E0E9;
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.wd-purpose-bottom {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 65px;
}


.wd-purpose-rule {
    width: 70px;

    height: 2px;

    flex-shrink: 0;

    background: #035297;
}


.wd-purpose-bottom p {
    margin: 0;

    color: #777777;

    font-size: 14px;

    line-height: 1.6;
}


.wd-purpose-bottom strong {
    color: #111111;

    font-weight: 700;
}


.wd-purpose-bottom span {
    margin: 0 5px;

    color: #035297;

    font-weight: 700;
}


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

@media (max-width: 1050px) {

    .wd-purpose {
        padding: 90px 0 100px;
    }


    .wd-purpose-header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 55px;
    }


    .wd-purpose-eyebrow {
        padding-top: 0;
    }


    .wd-purpose-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .wd-purpose-featured {
        grid-column: 1 / -1;
    }

}


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

@media (max-width: 650px) {

    .wd-purpose {
        padding: 75px 0 80px;
    }


    .wd-purpose-container {
        width: 90%;
    }


    .wd-purpose-header {
        margin-bottom: 45px;
    }


    .wd-purpose-eyebrow {
        font-size: 10px;

        letter-spacing: 1.2px;
    }


    .wd-purpose-heading h2 {
        font-size: 43px;

        line-height: 1;

        letter-spacing: -2.5px;
    }


    .wd-purpose-heading p {
        margin-top: 22px;

        font-size: 14px;

        line-height: 1.7;
    }


    .wd-purpose-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .wd-purpose-featured {
        grid-column: auto;
    }


    .wd-purpose-card {
        min-height: 350px;

        padding: 27px;

        border-radius: 18px;
    }


    .wd-purpose-icon {
        margin-top: 45px;
    }


    .wd-purpose-card h3 {
        margin-top: 22px;

        font-size: 27px;
    }


    .wd-purpose-card p {
        font-size: 13px;

        line-height: 1.7;
    }


    .wd-purpose-tags {
        padding-top: 28px;
    }


    .wd-purpose-tags span {
        min-height: 35px;

        padding: 0 12px;

        font-size: 9px;
    }


    .wd-purpose-bottom {
        align-items: flex-start;

        gap: 18px;

        margin-top: 50px;
    }


    .wd-purpose-rule {
        width: 40px;

        margin-top: 9px;
    }


    .wd-purpose-bottom p {
        font-size: 13px;
    }

}


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

@media (max-width: 420px) {

    .wd-purpose-heading h2 {
        font-size: 38px;

        letter-spacing: -2px;
    }


    .wd-purpose-card {
        min-height: 335px;

        padding: 24px;
    }


    .wd-purpose-icon {
        width: 48px;

        height: 48px;

        margin-top: 40px;
    }


    .wd-purpose-card h3 {
        font-size: 25px;
    }


    .wd-purpose-tags {
        padding-top: 24px;
    }

}
/* =========================================================
   WEBSITE DEVELOPMENT — SECTION 4
   WHAT WE BUILD
   HGS DESIGN SYSTEM
========================================================= */

.wd-services {
    position: relative;

    width: 100%;

    background: #F8F8F6;

    padding: 110px 0 115px;

    overflow: hidden;
}


.wd-services-container {
    width: 92%;

    max-width: 1380px;

    margin: 0 auto;
}


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

.wd-services-header {
    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 55px;

    align-items: start;

    margin-bottom: 60px;
}


/* =========================================================
   EYEBROW
========================================================= */

.wd-services-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    padding-top: 12px;

    color: #035297;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.wd-services-eyebrow span {
    width: 7px;

    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #035297;
}


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

.wd-services-heading h2 {
    margin: 0;

    max-width: 900px;

    color: #111111;

    font-size: clamp(48px, 5.5vw, 60px);

    font-weight: 600;

    line-height: 0.96;

    letter-spacing: -3.5px;
}


.wd-services-heading h2 strong {
    display: block;

    color: #035297;

    font-weight: 600;
}


.wd-services-heading p {
    max-width: 680px;

    margin: 25px 0 0;

    color: #666666;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.wd-services-grid {
    display: grid;

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

    gap: 14px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.wd-service-card {
    position: relative;

    min-height: 255px;

    padding: 28px 30px 30px;

    background: #FFFFFF;

    border: 1px solid #DDDDDD;

    border-radius: 18px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================================
   CARD NUMBER
========================================================= */

.wd-service-number {
    color: #888888;

    font-size: 11px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 1px;
}


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

.wd-service-card h3 {
    margin: 48px 0 0;

    color: #111111;

    font-size: 26px;

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.8px;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.wd-service-card p {
    max-width: 380px;

    margin: 13px 0 0;

    color: #666666;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.65;
}


/* =========================================================
   SUBTLE BLUE TOP ACCENT
========================================================= */

.wd-service-card::before {
    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 3px;

    background: #035297;

    transition: width 0.3s ease;
}


.wd-service-card:hover::before {
    width: 100%;
}


/* =========================================================
   HOVER
========================================================= */

.wd-service-card:hover {
    transform: translateY(-4px);

    border-color: #CFCFCF;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}


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

.wd-services-footer {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #DDDDDD;
}


.wd-services-footer-label {
    flex-shrink: 0;

    color: #777777;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* =========================================================
   ADDITIONAL SERVICES
========================================================= */

.wd-services-list {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;
}


.wd-services-list span {
    display: inline-flex;

    align-items: center;

    min-height: 32px;

    padding: 0 12px;

    background: #FFFFFF;

    border: 1px solid #DDDDDD;

    border-radius: 50px;

    color: #555555;

    font-size: 10px;

    font-weight: 600;

    white-space: nowrap;
}


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

@media (max-width: 1050px) {

    .wd-services {
        padding: 90px 0 95px;
    }


    .wd-services-header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 50px;
    }


    .wd-services-eyebrow {
        padding-top: 0;
    }


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


    .wd-service-card {
        min-height: 245px;
    }

}


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

@media (max-width: 650px) {

    .wd-services {
        padding: 75px 0 80px;
    }


    .wd-services-container {
        width: 90%;
    }


    .wd-services-header {
        margin-bottom: 40px;
    }


    .wd-services-eyebrow {
        font-size: 10px;

        letter-spacing: 1.2px;
    }


    .wd-services-heading h2 {
        font-size: 43px;

        line-height: 1;

        letter-spacing: -2.5px;
    }


    .wd-services-heading p {
        margin-top: 20px;

        font-size: 14px;

        line-height: 1.7;
    }


    .wd-services-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .wd-service-card {
        min-height: 225px;

        padding: 25px;

        border-radius: 16px;
    }


    .wd-service-card h3 {
        margin-top: 40px;

        font-size: 24px;
    }


    .wd-service-card p {
        margin-top: 12px;

        font-size: 13px;

        line-height: 1.65;
    }


    .wd-services-footer {
        display: block;

        margin-top: 30px;

        padding-top: 22px;
    }


    .wd-services-footer-label {
        display: block;

        margin-bottom: 12px;
    }


    .wd-services-list {
        gap: 6px;
    }


    .wd-services-list span {
        min-height: 30px;

        padding: 0 10px;

        font-size: 9px;
    }

}


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

@media (max-width: 420px) {

    .wd-services-heading h2 {
        font-size: 38px;

        letter-spacing: -2px;
    }


    .wd-service-card {
        min-height: 215px;

        padding: 23px;
    }


    .wd-service-card h3 {
        margin-top: 36px;

        font-size: 23px;
    }

}
/* =========================================================
   WEBSITE DEVELOPMENT — SECTION 5
   OUR DEVELOPMENT PROCESS
   HGS DESIGN SYSTEM
========================================================= */

.wd-process {
    position: relative;

    width: 100%;

    background: #FFFFFF;

    padding: 115px 0 120px;

    overflow: hidden;
}


.wd-process-container {
    width: 92%;

    max-width: 1380px;

    margin: 0 auto;
}


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

.wd-process-header {
    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 55px;

    align-items: start;

    margin-bottom: 70px;
}


/* =========================================================
   EYEBROW
========================================================= */

.wd-process-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    padding-top: 12px;

    color: #035297;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.wd-process-eyebrow span {
    width: 7px;

    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #035297;
}


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

.wd-process-heading h2 {
    margin: 0;

    max-width: 850px;

    color: #111111;

    font-size: clamp(48px, 5.5vw, 60px);

    font-weight: 600;

    line-height: 0.96;

    letter-spacing: -3.5px;
}


.wd-process-heading h2 strong {
    display: block;

    color: #035297;

    font-weight: 600;
}


.wd-process-heading p {
    max-width: 680px;

    margin: 26px 0 0;

    color: #666666;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   PROCESS LIST
========================================================= */

.wd-process-list {
    display: grid;

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

    border-top: 1px solid #DDDDDD;

    border-left: 1px solid #DDDDDD;
}


/* =========================================================
   PROCESS ITEM
========================================================= */

.wd-process-item {
    position: relative;

    min-height: 390px;

    padding: 32px 28px 35px;

    background: #F8F8F6;

    border-right: 1px solid #DDDDDD;

    border-bottom: 1px solid #DDDDDD;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.wd-process-item:hover {
    background: #FFFFFF;

    transform: translateY(-4px);

    z-index: 2;
}


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

.wd-process-index {
    color: #035297;

    font-size: 12px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 1px;
}


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

.wd-process-content {
    margin-top: 70px;
}


/* =========================================================
   SMALL LABEL
========================================================= */

.wd-process-label {
    display: inline-block;

    margin-bottom: 20px;

    color: #888888;

    font-size: 10px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 1.2px;
}


/* =========================================================
   PROCESS TITLE
========================================================= */

.wd-process-content h3 {
    margin: 0;

    color: #111111;

    font-size: 24px;

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.7px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.wd-process-content p {
    margin: 18px 0 0;

    color: #666666;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   BLUE BOTTOM ACCENT
========================================================= */

.wd-process-item::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 3px;

    background: #035297;

    transition: width 0.3s ease;
}


.wd-process-item:hover::after {
    width: 100%;
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.wd-process-bottom {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 55px;
}


.wd-process-line {
    width: 70px;

    height: 2px;

    flex-shrink: 0;

    background: #035297;
}


.wd-process-bottom p {
    margin: 0;

    color: #777777;

    font-size: 14px;

    line-height: 1.6;
}


.wd-process-bottom strong {
    color: #111111;

    font-weight: 700;
}


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

@media (max-width: 1100px) {

    .wd-process {
        padding: 90px 0 100px;
    }


    .wd-process-header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 55px;
    }


    .wd-process-eyebrow {
        padding-top: 0;
    }


    .wd-process-list {
        grid-template-columns: repeat(2, 1fr);
    }


    .wd-process-item {
        min-height: 330px;
    }

}


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

@media (max-width: 650px) {

    .wd-process {
        padding: 75px 0 80px;
    }


    .wd-process-container {
        width: 90%;
    }


    .wd-process-header {
        margin-bottom: 45px;
    }


    .wd-process-eyebrow {
        font-size: 10px;

        letter-spacing: 1.2px;
    }


    .wd-process-heading h2 {
        font-size: 43px;

        line-height: 1;

        letter-spacing: -2.5px;
    }


    .wd-process-heading p {
        margin-top: 20px;

        font-size: 14px;

        line-height: 1.7;
    }


    .wd-process-list {
        grid-template-columns: 1fr;

        border-top: 1px solid #DDDDDD;

        border-left: 1px solid #DDDDDD;
    }


    .wd-process-item {
        min-height: 280px;

        padding: 25px;
    }


    .wd-process-content {
        margin-top: 48px;
    }


    .wd-process-label {
        margin-bottom: 16px;
    }


    .wd-process-content h3 {
        font-size: 24px;
    }


    .wd-process-content p {
        margin-top: 14px;

        font-size: 13px;

        line-height: 1.65;
    }


    .wd-process-bottom {
        align-items: flex-start;

        gap: 18px;

        margin-top: 40px;
    }


    .wd-process-line {
        width: 40px;

        margin-top: 9px;
    }


    .wd-process-bottom p {
        font-size: 13px;
    }

}


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

@media (max-width: 420px) {

    .wd-process-heading h2 {
        font-size: 38px;

        letter-spacing: -2px;
    }


    .wd-process-item {
        min-height: 270px;

        padding: 23px;
    }


    .wd-process-content {
        margin-top: 42px;
    }


    .wd-process-content h3 {
        font-size: 22px;
    }

}
/* =========================================================
   WEBSITE DEVELOPMENT — SECTION 6
   TECHNOLOGY & CAPABILITIES
   HGS DESIGN SYSTEM — UPDATED
========================================================= */

.wd-tech {
    position: relative;
    width: 100%;
    background: #F8F8F6;
    padding: 110px 0 115px;
    overflow: hidden;
}

.wd-tech-container {
    width: 92%;
    max-width: 1380px;
    margin: 0 auto;
}


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

.wd-tech-header {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 55px;
    align-items: start;
    margin-bottom: 60px;
}


/* =========================================================
   EYEBROW
========================================================= */

.wd-tech-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    padding-top: 12px;

    color: #035297;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.wd-tech-eyebrow span {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #035297;
}


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

.wd-tech-heading h2 {
    margin: 0;

    max-width: 850px;

    color: #111111;

    font-size: clamp(48px, 5.5vw, 60px);

    font-weight: 600;

    line-height: 0.96;

    letter-spacing: -3.5px;
}

.wd-tech-heading h2 strong {
    display: block;

    color: #035297;

    font-weight: 600;
}

.wd-tech-heading p {
    max-width: 680px;

    margin: 25px 0 0;

    color: #666666;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   TECHNOLOGY GRID
========================================================= */

.wd-tech-grid {
    display: grid;

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

    gap: 14px;
}


/* =========================================================
   TECHNOLOGY CARD
========================================================= */

.wd-tech-card {
    position: relative;

    min-height: 270px;

    display: flex;
    flex-direction: column;

    padding: 28px 30px 27px;

    background: #F8F8F6;

    border: 1px solid #DDDDDD;

    border-radius: 18px;

    overflow: hidden;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.wd-tech-card:hover {
    background: #FFFFFF;

    border-color: #CFCFCF;

    transform: translateY(-4px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}


/* =========================================================
   CARD TOP
========================================================= */

.wd-tech-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 48px;
}


/* =========================================================
   CARD NUMBER
========================================================= */

.wd-tech-number {
    display: flex;

    align-items: center;

    height: 48px;

    color: #888888;

    font-size: 11px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 1px;
}


/* =========================================================
   FONT AWESOME TECHNOLOGY ICONS
========================================================= */

.wd-tech-icon {
    width: 48px;
    height: 48px;

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

    flex-shrink: 0;

    background: #EEF5FA;

    border: 1px solid #D5E4EF;

    border-radius: 12px;

    color: #035297;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}


/* =========================================================
   FONT AWESOME ICON
========================================================= */

.wd-tech-icon i {
    display: block;

    color: #035297;

    font-size: 23px;

    line-height: 1;

    transition: color 0.3s ease;
}


/* =========================================================
   HTML + CSS TWO ICONS
========================================================= */

.wd-tech-multi-icon {
    gap: 5px;
}

.wd-tech-multi-icon i {
    font-size: 18px;
}


/* =========================================================
   HOVER
========================================================= */

.wd-tech-card:hover .wd-tech-icon {
    background: #035297;

    border-color: #035297;
}

.wd-tech-card:hover .wd-tech-icon i {
    color: #FFFFFF;
}


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

@media (max-width: 650px) {

    .wd-tech-icon {
        width: 46px;
        height: 46px;

        border-radius: 11px;
    }

    .wd-tech-icon i {
        font-size: 22px;
    }

    .wd-tech-multi-icon i {
        font-size: 17px;
    }

}


/* =========================================================
   ICON HOVER
========================================================= */

.wd-tech-card:hover .wd-tech-icon {
    background: #035297;

    border-color: #035297;
}

.wd-tech-card:hover .wd-tech-icon svg,
.wd-tech-card:hover .wd-tech-icon svg path,
.wd-tech-card:hover .wd-tech-icon svg circle,
.wd-tech-card:hover .wd-tech-icon svg rect,
.wd-tech-card:hover .wd-tech-icon svg line,
.wd-tech-card:hover .wd-tech-icon svg polyline,
.wd-tech-card:hover .wd-tech-icon svg polygon {
    stroke: #FFFFFF;
}


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

.wd-tech-card h3 {
    margin: 38px 0 0;

    color: #111111;

    font-size: 25px;

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.7px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.wd-tech-card p {
    max-width: 360px;

    margin: 12px 0 0;

    color: #666666;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.65;
}


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

.wd-tech-tag {
    width: fit-content;

    display: inline-flex;

    align-items: center;

    min-height: 30px;

    margin-top: auto;

    padding: 0 11px;

    background: #FFFFFF;

    border: 1px solid #DDDDDD;

    border-radius: 50px;

    color: #555555;

    font-size: 9px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.3px;
}


/* =========================================================
   FEATURED CARD
   KEEP SAME BASIC DESIGN
========================================================= */

.wd-tech-featured {
    background: #EEF5FA;

    border-color: #D5E4EF;
}

.wd-tech-featured:hover {
    background: #FFFFFF;

    border-color: #C5D9E7;
}

.wd-tech-featured .wd-tech-icon {
    background: #FFFFFF;

    border-color: #D5E4EF;
}


/* =========================================================
   BLUE TOP ACCENT
========================================================= */

.wd-tech-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: #035297;

    transition: width 0.3s ease;
}

.wd-tech-card:hover::before {
    width: 100%;
}


/* =========================================================
   BOTTOM NOTE
========================================================= */

.wd-tech-bottom {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 38px;

    padding-top: 24px;

    border-top: 1px solid #DDDDDD;
}

.wd-tech-bottom-line {
    width: 60px;
    height: 2px;

    flex-shrink: 0;

    background: #035297;
}

.wd-tech-bottom p {
    margin: 0;

    color: #777777;

    font-size: 13px;

    line-height: 1.6;
}

.wd-tech-bottom strong {
    color: #111111;

    font-weight: 700;
}


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

@media (max-width: 1050px) {

    .wd-tech {
        padding: 90px 0 95px;
    }

    .wd-tech-header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 50px;
    }

    .wd-tech-eyebrow {
        padding-top: 0;
    }

    .wd-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


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

@media (max-width: 650px) {

    .wd-tech {
        padding: 75px 0 80px;
    }

    .wd-tech-container {
        width: 90%;
    }

    .wd-tech-header {
        margin-bottom: 40px;
    }

    .wd-tech-eyebrow {
        font-size: 10px;

        letter-spacing: 1.2px;
    }

    .wd-tech-heading h2 {
        font-size: 43px;

        line-height: 1;

        letter-spacing: -2.5px;
    }

    .wd-tech-heading p {
        margin-top: 20px;

        font-size: 14px;

        line-height: 1.7;
    }

    .wd-tech-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .wd-tech-card {
        min-height: 225px;

        padding: 25px;

        border-radius: 16px;
    }

    .wd-tech-card-top {
        min-height: 46px;
    }

    .wd-tech-number {
        height: 46px;
    }

    .wd-tech-icon {
        width: 46px;
        height: 46px;

        border-radius: 11px;
    }

    .wd-tech-icon svg {
        width: 24px;
        height: 24px;
    }

    .wd-tech-card h3 {
        margin-top: 35px;

        font-size: 24px;
    }

    .wd-tech-card p {
        margin-top: 11px;

        font-size: 13px;

        line-height: 1.65;
    }

    .wd-tech-tag {
        min-height: 29px;

        padding: 0 10px;

        font-size: 9px;
    }

    .wd-tech-bottom {
        align-items: flex-start;

        gap: 16px;

        margin-top: 30px;

        padding-top: 22px;
    }

    .wd-tech-bottom-line {
        width: 35px;

        margin-top: 8px;
    }

    .wd-tech-bottom p {
        font-size: 12px;
    }
}


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

@media (max-width: 420px) {

    .wd-tech-heading h2 {
        font-size: 38px;

        letter-spacing: -2px;
    }

    .wd-tech-card {
        min-height: 215px;

        padding: 23px;
    }

    .wd-tech-card h3 {
        margin-top: 32px;

        font-size: 23px;
    }

}
/* =========================================================
   WEBSITE DEVELOPMENT — SECTION 7
   WHY CHOOSE US
   HGS DESIGN SYSTEM
========================================================= */

.wd-why {
    position: relative;

    width: 100%;

    background: #FFFFFF;

    padding: 115px 0 120px;

    overflow: hidden;
}


.wd-why-container {
    width: 92%;

    max-width: 1380px;

    margin: 0 auto;
}


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

.wd-why-header {
    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 55px;

    align-items: start;

    margin-bottom: 65px;
}


/* =========================================================
   EYEBROW
========================================================= */

.wd-why-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    padding-top: 12px;

    color: #035297;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.wd-why-eyebrow span {
    width: 7px;

    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #035297;
}


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

.wd-why-heading h2 {
    margin: 0;

    max-width: 850px;

    color: #111111;

    font-size: clamp(48px, 5.5vw, 60px);

    font-weight: 600;

    line-height: 0.96;

    letter-spacing: -3.5px;
}


.wd-why-heading h2 strong {
    display: block;

    color: #035297;

    font-weight: 600;
}


.wd-why-heading p {
    max-width: 680px;

    margin: 26px 0 0;

    color: #666666;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   WHY LIST
========================================================= */

.wd-why-list {
    border-top: 1px solid #DCDCDC;

    border-bottom: 1px solid #DCDCDC;
}


/* =========================================================
   WHY ITEM
========================================================= */

.wd-why-item {
    display: grid;

    grid-template-columns: 90px 1fr 1.2fr;

    gap: 35px;

    align-items: center;

    min-height: 135px;

    padding: 25px 20px;

    border-bottom: 1px solid #DCDCDC;

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}


.wd-why-item:last-child {
    border-bottom: none;
}


.wd-why-item:hover {
    background: #FFFFFF;

    padding-left: 30px;

    padding-right: 30px;
}


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

.wd-why-number {
    color: #035297;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


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

.wd-why-title h3 {
    margin: 0;

    color: #111111;

    font-size: 24px;

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -0.6px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.wd-why-description p {
    max-width: 520px;

    margin: 0;

    color: #666666;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.wd-why-bottom {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 50px;
}


.wd-why-bottom-accent {
    width: 65px;

    height: 2px;

    flex-shrink: 0;

    background: #035297;
}


.wd-why-bottom-content span {
    display: block;

    margin-bottom: 5px;

    color: #888888;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.3px;
}


.wd-why-bottom-content p {
    margin: 0;

    color: #666666;

    font-size: 14px;

    line-height: 1.5;
}


.wd-why-bottom-content strong {
    color: #111111;

    font-weight: 700;
}


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

@media (max-width: 1050px) {

    .wd-why {
        padding: 90px 0 100px;
    }


    .wd-why-header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 50px;
    }


    .wd-why-eyebrow {
        padding-top: 0;
    }


    .wd-why-item {
        grid-template-columns: 70px 1fr;

        gap: 25px;
    }


    .wd-why-description {
        grid-column: 2;
    }

}


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

@media (max-width: 650px) {

    .wd-why {
        padding: 75px 0 80px;
    }


    .wd-why-container {
        width: 90%;
    }


    .wd-why-header {
        margin-bottom: 40px;
    }


    .wd-why-eyebrow {
        font-size: 10px;

        letter-spacing: 1.2px;
    }


    .wd-why-heading h2 {
        font-size: 43px;

        line-height: 1;

        letter-spacing: -2.5px;
    }


    .wd-why-heading p {
        margin-top: 20px;

        font-size: 14px;

        line-height: 1.7;
    }


    .wd-why-item {
        display: block;

        min-height: auto;

        padding: 27px 5px;
    }


    .wd-why-item:hover {
        padding-left: 12px;

        padding-right: 12px;
    }


    .wd-why-number {
        margin-bottom: 25px;
    }


    .wd-why-title h3 {
        font-size: 22px;
    }


    .wd-why-description {
        margin-top: 11px;
    }


    .wd-why-description p {
        font-size: 13px;

        line-height: 1.65;
    }


    .wd-why-bottom {
        align-items: flex-start;

        gap: 16px;

        margin-top: 35px;
    }


    .wd-why-bottom-accent {
        width: 35px;

        margin-top: 8px;
    }


    .wd-why-bottom-content p {
        font-size: 13px;
    }

}


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

@media (max-width: 420px) {

    .wd-why-heading h2 {
        font-size: 38px;

        letter-spacing: -2px;
    }


    .wd-why-item {
        padding: 24px 5px;
    }


    .wd-why-title h3 {
        font-size: 21px;
    }

}
/* =========================================================
   WEBSITE DEVELOPMENT — SECTION 8
   PERFORMANCE & QUALITY
   HGS DESIGN SYSTEM
========================================================= */

.wd-performance {
    position: relative;

    width: 100%;

    background: #FFFFFF;

    padding: 115px 0 120px;

    overflow: hidden;
}


.wd-performance-container {
    width: 92%;

    max-width: 1380px;

    margin: 0 auto;
}


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

.wd-performance-header {
    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 55px;

    align-items: start;

    margin-bottom: 65px;
}


/* =========================================================
   EYEBROW
========================================================= */

.wd-performance-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    padding-top: 12px;

    color: #035297;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.wd-performance-eyebrow span {
    width: 7px;

    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #035297;
}


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

.wd-performance-heading h2 {
    margin: 0;

    max-width: 900px;

    color: #111111;

    font-size: clamp(48px, 5.5vw, 60px);

    font-weight: 600;

    line-height: 0.96;

    letter-spacing: -3.5px;
}


.wd-performance-heading h2 strong {
    display: block;

    color: #035297;

    font-weight: 600;
}


.wd-performance-heading p {
    max-width: 700px;

    margin: 26px 0 0;

    color: #666666;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   PERFORMANCE GRID
========================================================= */

.wd-performance-grid {
    display: grid;

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

    border-top: 1px solid #DDDDDD;

    border-left: 1px solid #DDDDDD;
}


/* =========================================================
   PERFORMANCE ITEM
========================================================= */

.wd-performance-item {
    position: relative;

    min-height: 330px;

    padding: 30px;

    background: #F8F8F6;

    border-right: 1px solid #DDDDDD;

    border-bottom: 1px solid #DDDDDD;

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


.wd-performance-item:hover {
    background: #FFFFFF;

    transform: translateY(-4px);

    z-index: 2;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}


/* =========================================================
   TOP
========================================================= */

.wd-performance-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.wd-performance-number {
    color: #888888;

    font-size: 11px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 1px;
}


/* =========================================================
   ICON
========================================================= */

.wd-performance-icon {
    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #EEF5FA;

    border: 1px solid #D5E4EF;

    border-radius: 12px;

    color: #035297;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.wd-performance-icon i {
    color: #035297;

    font-size: 19px;

    line-height: 1;

    transition: color 0.3s ease;
}


.wd-performance-item:hover .wd-performance-icon {
    background: #035297;

    border-color: #035297;
}


.wd-performance-item:hover .wd-performance-icon i {
    color: #FFFFFF;
}


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

.wd-performance-item h3 {
    margin: 52px 0 0;

    color: #111111;

    font-size: 25px;

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.7px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.wd-performance-item p {
    max-width: 290px;

    margin: 13px 0 0;

    color: #666666;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   BLUE BOTTOM ACCENT
========================================================= */

.wd-performance-item::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 3px;

    background: #035297;

    transition: width 0.3s ease;
}


.wd-performance-item:hover::after {
    width: 100%;
}


/* =========================================================
   PERFORMANCE STRIP
========================================================= */

.wd-performance-strip {
    display: grid;

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

    margin-top: 35px;

    border-top: 1px solid #DDDDDD;

    border-bottom: 1px solid #DDDDDD;
}


.wd-performance-strip-item {
    min-height: 75px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 20px;

    border-right: 1px solid #DDDDDD;
}


.wd-performance-strip-item:last-child {
    border-right: none;
}


.wd-performance-strip-item strong {
    color: #035297;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


.wd-performance-strip-item span {
    color: #777777;

    font-size: 11px;

    line-height: 1.4;
}


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

@media (max-width: 1050px) {

    .wd-performance {
        padding: 90px 0 100px;
    }


    .wd-performance-header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 50px;
    }


    .wd-performance-eyebrow {
        padding-top: 0;
    }


    .wd-performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .wd-performance-strip {
        grid-template-columns: repeat(3, 1fr);
    }


    .wd-performance-strip-item:nth-child(3) {
        border-right: none;
    }

}


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

@media (max-width: 650px) {

    .wd-performance {
        padding: 75px 0 80px;
    }


    .wd-performance-container {
        width: 90%;
    }


    .wd-performance-header {
        margin-bottom: 40px;
    }


    .wd-performance-eyebrow {
        font-size: 10px;

        letter-spacing: 1.2px;
    }


    .wd-performance-heading h2 {
        font-size: 43px;

        line-height: 1;

        letter-spacing: -2.5px;
    }


    .wd-performance-heading p {
        margin-top: 20px;

        font-size: 14px;

        line-height: 1.7;
    }


    .wd-performance-grid {
        grid-template-columns: 1fr;
    }


    .wd-performance-item {
        min-height: 250px;

        padding: 25px;
    }


    .wd-performance-icon {
        width: 44px;

        height: 44px;
    }


    .wd-performance-item h3 {
        margin-top: 40px;

        font-size: 23px;
    }


    .wd-performance-item p {
        margin-top: 11px;

        font-size: 13px;
    }


    .wd-performance-strip {
        grid-template-columns: 1fr 1fr;

        margin-top: 25px;
    }


    .wd-performance-strip-item {
        min-height: 65px;

        padding: 12px 15px;
    }


    .wd-performance-strip-item:nth-child(2) {
        border-right: none;
    }


    .wd-performance-strip-item:nth-child(3) {
        border-right: 1px solid #DDDDDD;
    }


    .wd-performance-strip-item span {
        font-size: 10px;
    }

}


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

@media (max-width: 420px) {

    .wd-performance-heading h2 {
        font-size: 38px;

        letter-spacing: -2px;
    }


    .wd-performance-item {
        min-height: 235px;

        padding: 23px;
    }


    .wd-performance-item h3 {
        margin-top: 35px;

        font-size: 22px;
    }


    .wd-performance-strip {
        grid-template-columns: 1fr;
    }


    .wd-performance-strip-item,
    .wd-performance-strip-item:nth-child(3) {
        border-right: none;

        border-bottom: 1px solid #DDDDDD;
    }


    .wd-performance-strip-item:last-child {
        border-bottom: none;
    }

}
/* =========================================================
   WEBSITE DEVELOPMENT — SECTION 9
   SELECTED PROJECTS
   HGS DESIGN SYSTEM
========================================================= */

.wd-projects {
    position: relative;

    width: 100%;

    background: #F8F8F6;

    padding: 115px 0 120px;

    overflow: hidden;
}


.wd-projects-container {
    width: 92%;

    max-width: 1380px;

    margin: 0 auto;
}


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

.wd-projects-header {
    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 55px;

    align-items: start;

    margin-bottom: 60px;
}


/* =========================================================
   EYEBROW
========================================================= */

.wd-projects-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    padding-top: 12px;

    color: #035297;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.wd-projects-eyebrow span {
    width: 7px;

    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #035297;
}


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

.wd-projects-heading h2 {
    margin: 0;

    max-width: 900px;

    color: #111111;

    font-size: clamp(48px, 5.5vw, 60px);

    font-weight: 600;

    line-height: 0.96;

    letter-spacing: -3.5px;
}


.wd-projects-heading h2 strong {
    display: block;

    color: #035297;

    font-weight: 600;
}


.wd-projects-heading p {
    max-width: 680px;

    margin: 25px 0 0;

    color: #666666;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   PROJECT GRID
========================================================= */

.wd-projects-grid {
    display: grid;

    grid-template-columns: 1.35fr 1fr;

    gap: 18px;
}


/* =========================================================
   PROJECT CARD
========================================================= */

.wd-project-card {
    position: relative;

    min-width: 0;
}


.wd-project-large {
    grid-row: span 2;
}


/* =========================================================
   PROJECT IMAGE
========================================================= */

.wd-project-image {
    position: relative;

    width: 100%;

    height: 310px;

    overflow: hidden;

    border-radius: 18px;

    background: #E9E9E7;
}


.wd-project-large .wd-project-image {
    height: 638px;
}


.wd-project-image img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.wd-project-card:hover .wd-project-image img {
    transform: scale(1.04);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.wd-project-overlay {
    position: absolute;

    left: 18px;

    right: 18px;

    bottom: 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 10px 11px 10px 14px;

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

    border-radius: 50px;

    color: #111111;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.3px;

    backdrop-filter: blur(8px);
}


.wd-project-view {
    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    background: #035297;

    border-radius: 50%;

    color: #FFFFFF;

    font-size: 14px;

    line-height: 1;
}


/* =========================================================
   PROJECT INFO
========================================================= */

.wd-project-info {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    padding: 22px 4px 0;
}


.wd-project-category {
    display: block;

    margin-bottom: 9px;

    color: #035297;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.2px;
}


.wd-project-info h3 {
    margin: 0;

    color: #111111;

    font-size: 23px;

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -0.6px;
}


.wd-project-info p {
    margin: 2px 0 0;

    color: #666666;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.wd-projects-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 55px;

    padding-top: 28px;

    border-top: 1px solid #DDDDDD;
}


.wd-projects-bottom p {
    margin: 0;

    color: #777777;

    font-size: 13px;
}


.wd-projects-cta {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #111111;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}


.wd-projects-cta span {
    color: #035297;

    font-size: 18px;

    line-height: 1;
}


.wd-projects-cta:hover {
    color: #035297;

    gap: 16px;
}


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

@media (max-width: 1050px) {

    .wd-projects {
        padding: 90px 0 100px;
    }


    .wd-projects-header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 50px;
    }


    .wd-projects-eyebrow {
        padding-top: 0;
    }


    .wd-projects-grid {
        grid-template-columns: 1fr 1fr;
    }


    .wd-project-large {
        grid-row: auto;

        grid-column: 1 / -1;
    }


    .wd-project-large .wd-project-image {
        height: 450px;
    }

}


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

@media (max-width: 650px) {

    .wd-projects {
        padding: 75px 0 80px;
    }


    .wd-projects-container {
        width: 90%;
    }


    .wd-projects-header {
        margin-bottom: 40px;
    }


    .wd-projects-eyebrow {
        font-size: 10px;

        letter-spacing: 1.2px;
    }


    .wd-projects-heading h2 {
        font-size: 43px;

        line-height: 1;

        letter-spacing: -2.5px;
    }


    .wd-projects-heading p {
        margin-top: 20px;

        font-size: 14px;

        line-height: 1.7;
    }


    .wd-projects-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }


    .wd-project-large {
        grid-column: auto;
    }


    .wd-project-image,
    .wd-project-large .wd-project-image {
        height: 250px;
    }


    .wd-project-overlay {
        left: 12px;

        right: 12px;

        bottom: 12px;

        padding: 8px 9px 8px 12px;
    }


    .wd-project-view {
        width: 28px;

        height: 28px;

        font-size: 13px;
    }


    .wd-project-info {
        display: block;

        padding-top: 18px;
    }


    .wd-project-info h3 {
        font-size: 22px;
    }


    .wd-project-info p {
        margin-top: 12px;

        font-size: 13px;
    }


    .wd-projects-bottom {
        display: block;

        margin-top: 40px;

        padding-top: 22px;
    }


    .wd-projects-bottom p {
        margin-bottom: 14px;
    }

}


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

@media (max-width: 420px) {

    .wd-projects-heading h2 {
        font-size: 38px;

        letter-spacing: -2px;
    }


    .wd-project-image,
    .wd-project-large .wd-project-image {
        height: 220px;

        border-radius: 15px;
    }


    .wd-project-info h3 {
        font-size: 21px;
    }

}
/* =========================================================
   WEBSITE DEVELOPMENT — SECTION 10
   FINAL CTA
   HGS DESIGN SYSTEM
========================================================= */

.wd-cta {
    position: relative;

    width: 100%;

    background: #035297;

    padding: 95px 0 90px;

    overflow: hidden;
}


.wd-cta-container {
    position: relative;

    width: 92%;

    max-width: 1380px;

    margin: 0 auto;
}


/* =========================================================
   SUBTLE BACKGROUND DETAIL
========================================================= */

.wd-cta::before {
    content: "";

    position: absolute;

    width: 550px;

    height: 550px;

    right: -220px;

    top: -260px;

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

    border-radius: 50%;
}


.wd-cta::after {
    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    right: -110px;

    top: -160px;

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

    border-radius: 50%;
}


/* =========================================================
   TOP
========================================================= */

.wd-cta-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 28px;

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


.wd-cta-label {
    color: rgba(255,255,255,0.8);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.wd-cta-number {
    color: rgba(255,255,255,0.55);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


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

.wd-cta-content {
    display: grid;

    grid-template-columns: 1.35fr 0.65fr;

    gap: 90px;

    align-items: end;

    padding: 70px 0 75px;
}


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

.wd-cta-heading h2 {
    max-width: 850px;

    margin: 0;

    color: #FFFFFF;

    font-size: clamp(48px, 5.7vw, 60px);

    font-weight: 600;

    line-height: 0.94;

    letter-spacing: -4px;
}


.wd-cta-heading h2 strong {
    display: block;

    color: #FFFFFF;

    font-weight: 600;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.wd-cta-description {
    padding-bottom: 5px;
}


.wd-cta-description p {
    max-width: 430px;

    margin: 0 0 30px;

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

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.wd-cta-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    min-height: 56px;

    padding: 0 22px 0 25px;

    background: #FFFFFF;

    border: 1px solid #FFFFFF;

    border-radius: 50px;

    color: #111111;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        gap 0.3s ease;
}


.wd-cta-button i {
    color: #035297;

    font-size: 14px;

    transition: transform 0.3s ease;
}


.wd-cta-button:hover {
    background: transparent;

    color: #FFFFFF;

    gap: 23px;
}


.wd-cta-button:hover i {
    color: #FFFFFF;

    transform: translateX(3px);
}


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

.wd-cta-bottom {
    display: flex;

    align-items: center;

    gap: 35px;

    padding-top: 25px;

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


.wd-cta-bottom-item {
    display: flex;

    align-items: center;

    gap: 9px;

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

    font-size: 11px;

    font-weight: 600;
}


.wd-cta-dot {
    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #FFFFFF;
}


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

@media (max-width: 1050px) {

    .wd-cta {
        padding: 80px 0;
    }


    .wd-cta-content {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 60px 0;
    }


    .wd-cta-heading h2 {
        max-width: 850px;
    }


    .wd-cta-description {
        padding-bottom: 0;
    }

}


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

@media (max-width: 650px) {

    .wd-cta {
        padding: 65px 0 60px;
    }


    .wd-cta-container {
        width: 90%;
    }


    .wd-cta-top {
        padding-bottom: 22px;
    }


    .wd-cta-label {
        font-size: 9px;

        letter-spacing: 1.2px;
    }


    .wd-cta-number {
        font-size: 9px;
    }


    .wd-cta-content {
        gap: 30px;

        padding: 45px 0 50px;
    }


    .wd-cta-heading h2 {
        font-size: 43px;

        line-height: 0.98;

        letter-spacing: -2.5px;
    }


    .wd-cta-description p {
        margin-bottom: 25px;

        font-size: 13px;

        line-height: 1.7;
    }


    .wd-cta-button {
        min-height: 52px;

        padding-left: 22px;

        padding-right: 19px;
    }


    .wd-cta-bottom {
        flex-wrap: wrap;

        gap: 15px 25px;
    }


    .wd-cta-bottom-item {
        font-size: 10px;
    }

}


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

@media (max-width: 420px) {

    .wd-cta-heading h2 {
        font-size: 38px;

        letter-spacing: -2px;
    }


    .wd-cta-bottom {
        gap: 12px 18px;
    }

}
/* =========================================================
   WEBSITE DEVELOPMENT — FAQ
   HGS DESIGN SYSTEM
========================================================= */

.wd-faq {
    position: relative;

    width: 100%;

    background: #F8F8F6;

    padding: 110px 0 115px;

    overflow: hidden;
}


.wd-faq-container {
    width: 92%;

    max-width: 1380px;

    margin: 0 auto;
}


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

.wd-faq-header {
    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 55px;

    align-items: start;

    margin-bottom: 60px;
}


/* =========================================================
   EYEBROW
========================================================= */

.wd-faq-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    padding-top: 12px;

    color: #035297;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.wd-faq-eyebrow span {
    width: 7px;

    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #035297;
}


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

.wd-faq-heading h2 {
    margin: 0;

    max-width: 850px;

    color: #111111;

    font-size: clamp(48px, 5.5vw, 60px);

    font-weight: 600;

    line-height: 0.96;

    letter-spacing: -3.5px;
}


.wd-faq-heading h2 strong {
    display: block;

    color: #035297;

    font-weight: 600;
}


.wd-faq-heading p {
    max-width: 650px;

    margin: 25px 0 0;

    color: #666666;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   FAQ LIST
========================================================= */

.wd-faq-list {
    border-top: 1px solid #D8D8D8;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.wd-faq-item {
    border-bottom: 1px solid #D8D8D8;

    background: transparent;

    transition:
        background 0.3s ease;
}


.wd-faq-item:hover {
    background: #FFFFFF;
}


/* =========================================================
   SUMMARY
========================================================= */

.wd-faq-item summary {
    position: relative;

    display: grid;

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

    gap: 25px;

    align-items: center;

    min-height: 92px;

    padding: 18px 20px;

    cursor: pointer;

    list-style: none;

    outline: none;
}


/* Remove default marker */

.wd-faq-item summary::-webkit-details-marker {
    display: none;
}

.wd-faq-item summary::marker {
    display: none;
}


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

.wd-faq-number {
    color: #035297;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   QUESTION
========================================================= */

.wd-faq-question {
    color: #111111;

    font-size: 20px;

    font-weight: 700;

    line-height: 1.3;

    letter-spacing: -0.3px;
}


/* =========================================================
   PLUS ICON
========================================================= */

.wd-faq-icon {
    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #D7D7D7;

    border-radius: 50%;

    background: #FFFFFF;

    color: #035297;

    font-size: 12px;

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


.wd-faq-item[open] .wd-faq-icon {
    transform: rotate(45deg);

    background: #035297;

    border-color: #035297;

    color: #FFFFFF;
}


/* =========================================================
   ANSWER
========================================================= */

.wd-faq-answer {
    display: grid;

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

    gap: 25px;

    padding: 0 20px 28px;
}


.wd-faq-answer p {
    grid-column: 2;

    max-width: 760px;

    margin: 0;

    color: #666666;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.wd-faq-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 38px;

    padding-top: 25px;

    border-top: 1px solid #D8D8D8;
}


.wd-faq-bottom p {
    margin: 0;

    color: #777777;

    font-size: 13px;
}


.wd-faq-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #111111;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}


.wd-faq-bottom a i {
    color: #035297;

    font-size: 13px;
}


.wd-faq-bottom a:hover {
    color: #035297;

    gap: 14px;
}


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

@media (max-width: 1050px) {

    .wd-faq {
        padding: 90px 0 100px;
    }


    .wd-faq-header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 50px;
    }


    .wd-faq-eyebrow {
        padding-top: 0;
    }

}


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

@media (max-width: 650px) {

    .wd-faq {
        padding: 75px 0 80px;
    }


    .wd-faq-container {
        width: 90%;
    }


    .wd-faq-header {
        margin-bottom: 40px;
    }


    .wd-faq-eyebrow {
        font-size: 10px;

        letter-spacing: 1.2px;
    }


    .wd-faq-heading h2 {
        font-size: 43px;

        line-height: 1;

        letter-spacing: -2.5px;
    }


    .wd-faq-heading p {
        margin-top: 20px;

        font-size: 14px;

        line-height: 1.7;
    }


    .wd-faq-item summary {
        grid-template-columns: 35px 1fr 40px;

        gap: 12px;

        min-height: 80px;

        padding: 16px 5px;
    }


    .wd-faq-number {
        font-size: 9px;
    }


    .wd-faq-question {
        font-size: 16px;

        line-height: 1.35;
    }


    .wd-faq-icon {
        width: 36px;

        height: 36px;

        font-size: 10px;
    }


    .wd-faq-answer {
        display: block;

        padding: 0 45px 24px;
    }


    .wd-faq-answer p {
        font-size: 13px;

        line-height: 1.7;
    }


    .wd-faq-bottom {
        display: block;

        margin-top: 30px;

        padding-top: 22px;
    }


    .wd-faq-bottom p {
        margin-bottom: 13px;
    }

}


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

@media (max-width: 420px) {

    .wd-faq-heading h2 {
        font-size: 38px;

        letter-spacing: -2px;
    }


    .wd-faq-question {
        font-size: 15px;
    }


    .wd-faq-answer {
        padding-left: 47px;

        padding-right: 10px;
    }

}