/* =========================================================
   UGCAMS LANDING PAGE
   PROFESSIONAL VERSION
   ========================================================= */


/* =========================================================
   GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f7f9;
    color: #17324d;
}

button,
input {
    font-family: inherit;
}

button {
    outline: none;
}


/* =========================================================
   HEADER
   ========================================================= */

.landingHeader {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 42px;

    position: sticky;
    top: 0;
    z-index: 5000;

    background: #082b49;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 3px 15px rgba(0,0,0,0.16);
}


/* =========================================================
   IREC LOGO
   ========================================================= */

.landingBrand {
    display: flex;
    align-items: center;
    height: 100%;
}

.irecLogo,
.ugcamsLogo {
    width: 70px !important;
    height: 52px !important;

    object-fit: contain;

    display: block;

    flex-shrink: 0;

    margin: 0;
    padding: 0;
}


/* Old branding elements */

.landingBrandText,
.landingOrganization,
.landingTitle {
    display: none !important;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.landingNavigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.landingNavButton {
    padding: 9px 11px;

    border: 1px solid transparent;
    border-radius: 4px;

    background: transparent;

    color: #dceaf2;

    font-size: 12px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.landingNavButton:hover {
    background: rgba(255,255,255,0.09);

    color: #ffffff;

    border-color: rgba(255,255,255,0.14);
}


/* =========================================================
   LOGIN BUTTON
   ========================================================= */

.landingLoginButton {
    margin-left: 6px;

    padding: 10px 21px;

    border: 1px solid rgba(255,255,255,0.42);

    border-radius: 6px;

    background: rgba(255,255,255,0.04);

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.landingLoginButton:hover {
    background: #ffffff;

    color: #082b49;

    transform: translateY(-1px);
}


/* =========================================================
   HERO
   ========================================================= */

.landingHero {
    height: calc(100vh - 76px);

    min-height: 540px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(3,29,49,0.90) 0%,
            rgba(3,29,49,0.74) 38%,
            rgba(3,29,49,0.34) 70%,
            rgba(3,29,49,0.10) 100%
        ),
        url("../images/ugcams-hero.png?v=6")
        center center / cover no-repeat;
}


/* GIS grid */

.landingHero::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    opacity: 0.40;

    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.landingHeroContent {
    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 720px;

    margin-left: 7%;

    padding: 70px 30px 70px 0;

    color: #ffffff;
}


/* =========================================================
   HERO EYEBROW
   ========================================================= */

.landingEyebrow {
    display: inline-flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 20px;

    padding: 7px 13px;

    border: 1px solid rgba(0,166,184,0.50);

    border-radius: 4px;

    background: rgba(0,166,184,0.13);

    color: #79e4ed;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.6px;
}

.landingEyebrow span {
    color: rgba(255,255,255,0.45);
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.landingHero h1 {
    margin: 0;

    color: #ffffff;

    font-size: 66px;

    line-height: 0.95;

    letter-spacing: -2px;

    font-weight: 800;
}

.landingHero h2 {
    margin: 17px 0 15px;

    color: #ffffff;

    font-size: 22px;

    line-height: 1.35;

    font-weight: 600;
}

.landingHero p {
    max-width: 640px;

    margin: 0 0 29px;

    color: #d9e7ef;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.heroButtons {
    display: flex;

    align-items: center;

    gap: 12px;
}

.heroAccessButton {
    padding: 13px 21px;

    border: none;

    border-radius: 6px;

    background: #00a6b8;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 6px 18px rgba(0,0,0,0.25);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.heroAccessButton:hover {
    background: #008fa1;

    transform: translateY(-2px);

    box-shadow:
        0 9px 22px rgba(0,0,0,0.28);
}

.heroAccessButton span {
    margin-left: 8px;

    font-size: 16px;
}

.heroLearnButton {
    padding: 12px 19px;

    border: 1px solid rgba(255,255,255,0.65);

    border-radius: 6px;

    background: rgba(255,255,255,0.04);

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.heroLearnButton:hover {
    background: #ffffff;

    color: #082b49;

    transform: translateY(-1px);
}

.heroLearnButton span {
    margin-left: 7px;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.landingSection {
    max-width: 1200px;

    margin: 0 auto;

    padding: 72px 30px;
}

.sectionHeading {
    margin-bottom: 35px;
}

.sectionHeading span,
.sectionLabel {
    display: block;

    margin-bottom: 8px;

    color: #0098aa;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.7px;
}

.sectionHeading h2,
.manualSection h2 {
    margin: 0;

    color: #123650;

    font-size: 30px;

    line-height: 1.25;
}


/* =========================================================
   UGC INTRODUCTION
   ========================================================= */

.ugcIntroductionSection {
    width: 100%;

    padding: 78px 30px 85px;

    background: #f4f7f9;

    color: #18364b;

    scroll-margin-top: 76px;
}

.ugcIntroContainer {
    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================================
   UGC INTRO HEADER
   ========================================================= */

.ugcIntroHeader {
    max-width: 920px;

    margin: 0 auto 62px;

    text-align: center;
}


/* Main "UPPER GANGA CANAL" label */

.ugcIntroHeader .sectionLabel {
    display: inline-block;

    margin-bottom: 11px;

    color: #0098aa;

    font-size: 15px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 2.8px;
}


/* Main UGC heading */

.ugcIntroHeader h2 {
    margin: 0;

    color: #12344d;

    font-size: 34px;

    line-height: 1.22;

    font-weight: 700;
}

.ugcIntroHeader h2 span,
.ugcHistoryContent h3 span,
.ugcPurposeHeading h3 span,
.ugcModernContent h3 span,
.ugcEngineeringHeader h3 span,
.ugcTransitionSection h3 span {
    color: #1687a7;
}

.ugcIntroHeaderLine {
    width: 58px;

    height: 3px;

    margin: 18px auto;

    border-radius: 4px;

    background: #1687a7;
}

.ugcIntroHeader p {
    max-width: 820px;

    margin: 0 auto;

    color: #607486;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   REMOVE CHAPTER NUMBERING
   ========================================================= */

.ugcChapterNumber {
    display: none !important;
}


/* =========================================================
   HISTORICAL IMAGE
   ========================================================= */

.ugcHistoryImage,
.ugcModernImage {
    position: relative;

    overflow: hidden;

    border-radius: 12px;

    background: #dbe4e8;

    box-shadow:
        0 15px 40px rgba(15,55,75,0.12);
}

.ugcHistoryImage img,
.ugcModernImage img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


/* Keep historical photograph black & white */

.ugcHistoryImage img {
    filter: grayscale(100%);
}

.ugcHistoryImage:hover img,
.ugcModernImage:hover img {
    transform: scale(1.02);
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.ugcImageOverlay {
    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding: 50px 28px 24px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(3,29,49,0.92)
        );

    color: #ffffff;
}

.ugcImageOverlay span {
    display: block;

    margin-bottom: 6px;

    color: rgba(255,255,255,0.78);

    font-size: 9px;

    letter-spacing: 1.8px;

    font-weight: 700;
}

.ugcImageOverlay strong {
    display: block;

    font-size: 19px;

    line-height: 1.35;
}


/* =========================================================
   HISTORICAL SECTION
   ========================================================= */

.ugcHistoryChapter {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 52px;

    align-items: center;

    margin-bottom: 72px;
}

.ugcHistoryImage {
    height: 420px;
}

.ugcHistoryContent .sectionLabel,
.ugcModernContent .sectionLabel {
    display: block;

    margin-bottom: 8px;

    color: #0098aa;

    font-size: 11px;

    line-height: 1.3;

    letter-spacing: 2px;

    font-weight: 700;
}

.ugcHistoryContent h3,
.ugcModernContent h3 {
    margin: 0 0 14px;

    color: #12344d;

    font-size: 27px;

    line-height: 1.25;

    font-weight: 700;
}

.ugcHistoryContent p,
.ugcModernContent p {
    margin: 0 0 10px;

    color: #667b89;

    font-size: 13.5px;

    line-height: 1.65;
}


/* =========================================================
   HISTORICAL TIMELINE
   ========================================================= */

.ugcMiniTimeline {
    margin-top: 20px;

    border-top: 1px solid #d9e4e9;
}

.ugcMiniTimelineItem {
    display: grid;

    grid-template-columns: 72px 1fr;

    gap: 15px;

    padding: 8px 0;

    border-bottom: 1px solid #d9e4e9;
}

.ugcMiniTimelineItem strong {
    color: #1687a7;

    font-size: 12px;

    line-height: 1.4;
}

.ugcMiniTimelineItem span {
    color: #657987;

    font-size: 11.5px;

    line-height: 1.4;
}

.ugcHistoryCaption {
    margin-top: 14px;

    padding-left: 13px;

    border-left: 3px solid #1687a7;

    color: #82929d;

    font-size: 10.5px;

    line-height: 1.5;

    font-style: italic;
}


/* =========================================================
   PURPOSE & REGIONAL ROLE
   ========================================================= */

.ugcPurposeSection {
    margin-bottom: 72px;
}

.ugcPurposeHeading {
    display: block;

    max-width: 850px;

    margin-bottom: 28px;
}

.ugcPurposeHeading .sectionLabel {
    display: block;

    margin-bottom: 8px;

    color: #0098aa;

    font-size: 11px;

    line-height: 1.3;

    letter-spacing: 2px;

    font-weight: 700;
}

.ugcPurposeHeading h3 {
    margin: 0 0 8px;

    color: #12344d;

    font-size: 27px;

    line-height: 1.25;

    font-weight: 700;
}

.ugcPurposeHeading p {
    max-width: 780px;

    margin: 0;

    color: #687b89;

    font-size: 13.5px;

    line-height: 1.6;
}


/* =========================================================
   PURPOSE CARDS
   ========================================================= */

.ugcPurposeGrid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 13px;
}

.ugcPurposeCard {
    min-height: 145px;

    padding: 17px 18px;

    background: #ffffff;

    border: 1px solid #dfe8ed;

    border-radius: 8px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.ugcPurposeCard:hover {
    transform: translateY(-4px);

    border-color: #9fcbd8;

    box-shadow:
        0 10px 25px rgba(15,55,75,0.08);
}


/* Small decorative dot instead of numbering */

.ugcPurposeIcon {
    width: 8px;

    height: 8px;

    margin-bottom: 11px;

    border-radius: 50%;

    background: #1687a7;

    font-size: 0;

    box-shadow:
        0 0 0 4px rgba(22,135,167,0.10);
}

.ugcPurposeCard h4 {
    margin: 0 0 6px;

    color: #173b53;

    font-size: 15px;

    line-height: 1.3;
}

.ugcPurposeCard p {
    margin: 0;

    color: #6a7c89;

    font-size: 11.5px;

    line-height: 1.5;
}


/* =========================================================
   MODERN UGC SECTION
   ========================================================= */

.ugcModernChapter {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 52px;

    align-items: center;

    margin-bottom: 72px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #dfe8ed;

    border-radius: 14px;

    box-shadow:
        0 10px 35px rgba(15,55,75,0.06);
}

.ugcModernContent {
    padding: 5px 0;
}

.ugcModernImage {
    height: 390px;
}

.ugcModernHighlights {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 8px;

    margin: 20px 0 18px;
}

.ugcModernHighlights div {
    padding: 12px 8px;

    border-radius: 7px;

    background: #edf6f8;

    text-align: center;
}

.ugcModernHighlights strong {
    display: block;

    margin-bottom: 3px;

    color: #0c4567;

    font-size: 17px;

    line-height: 1.2;
}

.ugcModernHighlights span {
    display: block;

    color: #6c7f8b;

    font-size: 9px;

    line-height: 1.35;
}

.ugcModernNote {
    padding-top: 14px;

    border-top: 1px solid #e0e8ec;
}


/* =========================================================
   ENGINEERING SYSTEM
   ========================================================= */

.ugcEngineeringSection {
    margin-bottom: 65px;

    padding: 38px 42px;

    background: #0c4567;

    border-radius: 14px;

    color: #ffffff;
}

.ugcEngineeringHeader {
    display: block;

    margin-bottom: 14px;
}

.ugcEngineeringHeader .sectionLabel {
    display: block;

    margin-bottom: 8px;

    color: #8dd4e4;

    font-size: 11px;

    line-height: 1.3;

    letter-spacing: 2px;

    font-weight: 700;
}

.ugcEngineeringHeader h3 {
    margin: 0;

    color: #ffffff;

    font-size: 27px;

    line-height: 1.25;

    font-weight: 700;
}

.ugcEngineeringHeader h3 span {
    color: #8dd4e4;
}

.ugcEngineeringIntro {
    max-width: 850px;

    margin: 0 0 25px;

    color: rgba(255,255,255,0.72);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   ENGINEERING FLOW
   ========================================================= */

.ugcEngineeringFlow {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 7px;
}

.ugcFlowBox {
    min-width: 125px;

    padding: 12px 10px;

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 8px;

    background: rgba(255,255,255,0.07);

    text-align: center;
}

.ugcFlowBox span {
    display: block;

    margin-bottom: 5px;

    color: #8dd4e4;

    font-size: 9px;

    line-height: 1.25;

    font-weight: 700;
}

.ugcFlowBox strong {
    color: #ffffff;

    font-size: 11px;

    line-height: 1.3;
}

.ugcFlowConnector {
    color: rgba(255,255,255,0.45);

    font-size: 20px;
}

.ugcStructureList {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 20px;
}

.ugcStructureList span {
    padding: 6px 10px;

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 20px;

    color: rgba(255,255,255,0.72);

    font-size: 9.5px;
}


/* =========================================================
   TRANSITION TO UGCAMS
   ========================================================= */

.ugcTransitionSection {
    display: grid;

    grid-template-columns: 78px 1fr;

    gap: 20px;

    align-items: center;

    padding: 27px 32px;

    background: #ffffff;

    border: 1px solid #dce7ec;

    border-left: 5px solid #1687a7;

    border-radius: 10px;

    box-shadow:
        0 8px 25px rgba(15,55,75,0.05);
}

.ugcTransitionBadge {
    width: 68px;

    height: 68px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e9f5f7;

    color: #0c4567;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1px;
}

.ugcTransitionSection .sectionLabel {
    display: block;

    margin-bottom: 7px;

    color: #0098aa;

    font-size: 10px;

    line-height: 1.3;

    letter-spacing: 1.7px;

    font-weight: 700;
}

.ugcTransitionSection h3 {
    margin: 0 0 7px;

    color: #12344d;

    font-size: 21px;

    line-height: 1.3;
}

.ugcTransitionSection p {
    max-width: 900px;

    margin: 0;

    color: #687b89;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   UGCAMS AT A GLANCE
   ========================================================= */

.statsGrid {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 15px;
}

.statCard {
    position: relative;

    min-height: 125px;

    padding: 23px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dce6ec;

    border-radius: 8px;

    box-shadow:
        0 3px 12px rgba(20,50,70,0.045);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.statCard::after {
    content: "";

    position: absolute;

    width: 55px;

    height: 55px;

    right: -22px;

    bottom: -22px;

    border-radius: 50%;

    background: rgba(0,166,184,0.07);
}

.statCard:hover {
    transform: translateY(-4px);

    border-color: #9bd4da;

    box-shadow:
        0 9px 22px rgba(20,50,70,0.10);
}

.statCard strong {
    color: #075875;

    font-size: 31px;

    line-height: 1;

    margin-bottom: 9px;
}

.statCard span {
    color: #687d8c;

    font-size: 12px;

    font-weight: 500;
}


/* =========================================================
   APPLICATIONS
   ========================================================= */

.applicationsGrid {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 20px;
}

.applicationCard {
    position: relative;

    min-height: 225px;

    padding: 27px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dce6ec;

    border-radius: 9px;

    box-shadow:
        0 3px 12px rgba(20,50,70,0.045);

    cursor: pointer;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.applicationCard::before {
    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 3px;

    height: 0;

    background: #00a6b8;

    transition:
        height 0.25s ease;
}

.applicationCard:hover {
    transform: translateY(-5px);

    border-color: #a3d4da;

    box-shadow:
        0 11px 25px rgba(20,50,70,0.11);
}

.applicationCard:hover::before {
    height: 100%;
}

.applicationIcon {
    width: 46px;

    height: 46px;

    margin-bottom: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: #e7f5f7;

    font-size: 21px;

    transition:
        transform 0.22s ease,
        background 0.22s ease;
}

.applicationCard:hover .applicationIcon {
    transform: scale(1.08);

    background: #d9f0f3;
}

.applicationCard h3 {
    margin: 0 0 10px;

    color: #173c57;

    font-size: 17px;

    line-height: 1.35;
}

.applicationCard p {
    margin: 0;

    color: #687b89;

    font-size: 12.5px;

    line-height: 1.7;
}


/* =========================================================
   USER MANUAL
   ========================================================= */

.manualSection {
    max-width: none;

    padding-left:
        max(
            30px,
            calc((100% - 1140px) / 2 + 30px)
        );

    padding-right:
        max(
            30px,
            calc((100% - 1140px) / 2 + 30px)
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    background: #082b49;

    scroll-margin-top: 76px;
}

.manualSection h2 {
    color: #ffffff;
}

.manualSection p {
    max-width: 700px;

    margin: 14px 0 0;

    color: #c5d7e3;

    font-size: 13px;

    line-height: 1.75;
}

.manualButton {
    flex-shrink: 0;

    padding: 12px 20px;

    border: 1px solid rgba(255,255,255,0.4);

    border-radius: 6px;

    background: transparent;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.manualButton:hover {
    background: #ffffff;

    color: #082b49;

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER
   ========================================================= */

.landingFooter {
    min-height: 68px;

    padding: 20px 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    background: #061f35;

    color: #8ea5b5;

    font-size: 11px;

    text-align: center;
}

.landingFooter strong {
    color: #ffffff;
}


/* =========================================================
   LOGIN MODAL
   ========================================================= */

.loginModal {
    position: fixed;

    inset: 0;

    z-index: 10000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: rgba(3,21,35,0.76);

    backdrop-filter: blur(4px);
}

.loginModal.show {
    display: flex;
}

.loginModalBox {
    width: 100%;

    max-width: 390px;

    position: relative;

    padding: 35px;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.32);

    animation:
        loginModalIn 0.2s ease-out;
}

@keyframes loginModalIn {

    from {
        opacity: 0;

        transform:
            translateY(10px)
            scale(0.98);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}

.closeLoginButton {
    position: absolute;

    top: 11px;

    right: 14px;

    width: 30px;

    height: 30px;

    border: none;

    background: transparent;

    color: #71808a;

    font-size: 25px;

    cursor: pointer;
}

.loginIcon {
    width: 49px;

    height: 49px;

    margin-bottom: 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: #e7f5f7;

    font-size: 22px;
}

.loginModalBox h2 {
    margin: 0 0 5px;

    color: #123650;

    font-size: 23px;
}

.loginModalBox p {
    margin: 0 0 24px;

    color: #7b8993;

    font-size: 12px;
}

.loginModalBox label {
    display: block;

    margin-bottom: 7px;

    color: #334e61;

    font-size: 12px;

    font-weight: 600;
}

.loginModalBox input {
    width: 100%;

    padding: 12px 13px;

    border: 1px solid #ccd8e0;

    border-radius: 5px;

    outline: none;

    color: #17324d;

    font-size: 13px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.loginModalBox input:focus {
    border-color: #00a6b8;

    box-shadow:
        0 0 0 3px rgba(0,166,184,0.10);
}

.loginError {
    min-height: 18px;

    margin-top: 8px;

    color: #c0392b;

    font-size: 11px;
}

.loginButton {
    width: 100%;

    margin-top: 13px;

    padding: 12px;

    border: none;

    border-radius: 5px;

    background: #082b49;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.loginButton:hover {
    background: #0b456b;

    transform: translateY(-1px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .landingHeader {
        padding: 0 22px;
    }

    .landingNavigation {
        gap: 2px;
    }

    .landingNavButton {
        padding: 8px 8px;

        font-size: 11px;
    }

    .irecLogo,
    .ugcamsLogo {
        width: 60px !important;

        height: 46px !important;
    }


    /* Hero */

    .landingHero {
        height: auto;

        min-height: 600px;
    }

    .landingHeroContent {
        margin-left: 4%;

        padding-top: 85px;

        padding-bottom: 85px;
    }

    .landingHero h1 {
        font-size: 52px;
    }

    .landingHero h2 {
        font-size: 19px;
    }


    /* General */

    .statsGrid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .applicationsGrid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


    /* UGC */

    .ugcHistoryChapter,
    .ugcModernChapter {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .ugcHistoryImage {
        height: 420px;
    }

    .ugcModernImage {
        height: 400px;
    }

    .ugcPurposeGrid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .ugcModernChapter {
        padding: 28px;
    }

    .ugcEngineeringSection {
        padding: 34px 30px;
    }


    /* Manual */

    .manualSection {
        flex-direction: column;

        align-items: flex-start;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    /* Header */

    .landingHeader {
        height: 68px;

        padding: 0 15px;
    }

    .irecLogo,
    .ugcamsLogo {
        width: 52px !important;

        height: 40px !important;
    }

    .landingNavigation {
        gap: 0;
    }

    .landingNavButton {
        display: none;
    }

    .landingLoginButton {
        margin-left: 0;

        padding: 8px 13px;

        font-size: 11px;
    }


    /* Hero */

    .landingHero {
        height: auto;

        min-height: 470px;

        background-position:
            center center;
    }

    .landingHeroContent {
        margin-left: 0;

        padding:
            60px 22px 65px;
    }

    .landingEyebrow {
        font-size: 8px;

        letter-spacing: 1.2px;
    }

    .landingHero h1 {
        font-size: 44px;

        letter-spacing: -1px;
    }

    .landingHero h2 {
        font-size: 17px;
    }

    .landingHero p {
        font-size: 13px;
    }

    .heroButtons {
        flex-wrap: wrap;
    }


    /* General sections */

    .landingSection {
        padding: 52px 20px;
    }

    .statsGrid,
    .applicationsGrid {
        grid-template-columns: 1fr;
    }


    /* UGC Introduction */

    .ugcIntroductionSection {
        padding: 60px 20px 70px;
    }

    .ugcIntroHeader {
        margin-bottom: 48px;
    }

    .ugcIntroHeader .sectionLabel {
        font-size: 12px;

        letter-spacing: 2px;
    }

    .ugcIntroHeader h2 {
        font-size: 27px;
    }

    .ugcIntroHeader p {
        font-size: 13px;

        line-height: 1.6;
    }

    .ugcHistoryChapter {
        gap: 28px;

        margin-bottom: 60px;
    }

    .ugcHistoryImage {
        height: 290px;
    }

    .ugcHistoryContent h3,
    .ugcModernContent h3,
    .ugcPurposeHeading h3,
    .ugcEngineeringHeader h3 {
        font-size: 24px;
    }

    .ugcPurposeSection {
        margin-bottom: 60px;
    }

    .ugcPurposeGrid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 10px;
    }

    .ugcPurposeCard {
        min-height: 135px;

        padding: 15px;
    }

    .ugcModernChapter {
        gap: 25px;

        padding: 20px;

        margin-bottom: 60px;
    }

    .ugcModernImage {
        height: 280px;
    }

    .ugcModernHighlights {
        grid-template-columns: 1fr;
    }

    .ugcEngineeringSection {
        padding: 28px 22px;
    }

    .ugcEngineeringFlow {
        flex-direction: column;
    }

    .ugcFlowConnector {
        transform: rotate(90deg);
    }

    .ugcFlowBox {
        width: 100%;
    }

    .ugcTransitionSection {
        grid-template-columns: 1fr;

        padding: 25px;
    }


    /* Footer */

    .landingFooter {
        flex-direction: column;

        gap: 4px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .ugcPurposeGrid {
        grid-template-columns: 1fr;
    }

    .ugcHistoryImage {
        height: 250px;
    }

    .ugcModernImage {
        height: 240px;
    }

    .ugcImageOverlay {
        padding:
            40px 18px 18px;
    }

    .ugcImageOverlay strong {
        font-size: 16px;
    }

    .ugcMiniTimelineItem {
        grid-template-columns:
            65px 1fr;

        gap: 10px;
    }

}
/* =========================================================
   UGCAMS AT A GLANCE
   ========================================================= */

.ugcamsGlanceSection {
    width: 100%;

    padding: 78px 30px 82px;

    background: #ffffff;

    scroll-margin-top: 76px;
}

.ugcamsGlanceContainer {
    max-width: 1140px;

    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.ugcamsGlanceHeader {
    max-width: 850px;

    margin: 0 auto 48px;

    text-align: center;
}

.ugcamsGlanceHeader .sectionLabel {
    display: inline-block;

    margin-bottom: 10px;

    color: #0098aa;

    font-size: 14px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 2.5px;
}

.ugcamsGlanceHeader h2 {
    margin: 0;

    color: #12344d;

    font-size: 32px;

    line-height: 1.25;

    font-weight: 700;
}

.ugcamsGlanceHeader h2 span {
    color: #1687a7;
}

.ugcamsGlanceLine {
    width: 52px;

    height: 3px;

    margin: 17px auto;

    border-radius: 3px;

    background: #1687a7;
}

.ugcamsGlanceHeader p {
    max-width: 780px;

    margin: 0 auto;

    color: #687b89;

    font-size: 13.5px;

    line-height: 1.7;
}


/* =========================================================
   GROUP
   ========================================================= */

.ugcamsGlanceGroup {
    margin-bottom: 35px;
}

.ugcamsGlanceGroupTitle {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;
}

.ugcamsGlanceGroupTitle span {
    width: 5px;

    height: 20px;

    flex-shrink: 0;

    border-radius: 3px;

    background: #1687a7;
}

.ugcamsGlanceGroupTitle h3 {
    margin: 0;

    color: #21445b;

    font-size: 15px;

    line-height: 1.3;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}


/* =========================================================
   STAT ROW
   ========================================================= */

.ugcamsGlanceStats {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0,1fr));

    gap: 12px;
}

.ugcamsInfrastructureStats {
    grid-template-columns:
        repeat(4, minmax(0,1fr));
}


/* =========================================================
   INDIVIDUAL STAT
   ========================================================= */

.ugcamsGlanceStat {
    min-height: 108px;

    padding: 19px 15px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: #f7fafb;

    border: 1px solid #dfe8ed;

    border-radius: 8px;

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.ugcamsGlanceStat:hover {
    transform: translateY(-3px);

    border-color: #a8d3da;

    box-shadow:
        0 8px 20px rgba(20,55,75,0.08);
}

.ugcamsGlanceStat strong {
    display: block;

    margin-bottom: 7px;

    color: #075875;

    font-size: 29px;

    line-height: 1;

    font-weight: 700;
}

.ugcamsGlanceStat span {
    display: block;

    color: #6c7e8b;

    font-size: 11px;

    line-height: 1.35;

    font-weight: 500;
}


/* =========================================================
   INVENTORY NOTE
   ========================================================= */

.ugcamsGlanceNote {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    max-width: 820px;

    margin: 8px auto 0;

    padding: 13px 16px;

    background: #f1f7f8;

    border: 1px solid #d9e9ec;

    border-radius: 7px;
}

.ugcamsGlanceNote > span {
    width: 19px;

    height: 19px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 1px;

    border-radius: 50%;

    background: #1687a7;

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;
}

.ugcamsGlanceNote p {
    margin: 0;

    color: #71828d;

    font-size: 10.5px;

    line-height: 1.5;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .ugcamsGlanceStats {
        grid-template-columns:
            repeat(3, minmax(0,1fr));
    }

    .ugcamsInfrastructureStats {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .ugcamsGlanceSection {
        padding: 60px 20px 65px;
    }

    .ugcamsGlanceHeader {
        margin-bottom: 40px;
    }

    .ugcamsGlanceHeader .sectionLabel {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .ugcamsGlanceHeader h2 {
        font-size: 27px;
    }

    .ugcamsGlanceHeader p {
        font-size: 13px;

        line-height: 1.6;
    }

    .ugcamsGlanceStats {
        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap: 10px;
    }

    .ugcamsInfrastructureStats {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .ugcamsGlanceStat {
        min-height: 100px;

        padding: 17px 12px;
    }

    .ugcamsGlanceStat strong {
        font-size: 25px;
    }

    .ugcamsGlanceStat span {
        font-size: 10.5px;
    }

}


@media (max-width: 480px) {

    .ugcamsGlanceStats,
    .ugcamsInfrastructureStats {
        grid-template-columns: 1fr 1fr;
    }

}
/* =========================================================
   UGCAMS METHODOLOGY
   ========================================================= */

.ugcamsMethodologySection {
    width: 100%;
    padding: 82px 30px 90px;
    background: #f5f8fa;
    scroll-margin-top: 76px;
}

.ugcamsMethodologyContainer {
    max-width: 1080px;
    margin: 0 auto;
}


/* ---------------------------------------------------------
   SECTION HEADER
   --------------------------------------------------------- */

.ugcamsMethodologyHeader {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.ugcamsMethodologyHeader .sectionLabel {
    display: inline-block;
    margin-bottom: 10px;
    color: #0098aa;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.ugcamsMethodologyHeader h2 {
    margin: 0;
    color: #12344d;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
}

.ugcamsMethodologyHeader h2 span {
    color: #1687a7;
}

.ugcamsMethodologyLine {
    width: 52px;
    height: 3px;
    margin: 17px auto;
    border-radius: 3px;
    background: #1687a7;
}

.ugcamsMethodologyHeader p {
    max-width: 790px;
    margin: 0 auto;
    color: #687b89;
    font-size: 13.5px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   WORKFLOW
   --------------------------------------------------------- */

.ugcamsMethodologyWorkflow {
    position: relative;
    padding: 5px 0 0;
}


/* Vertical connecting line */

.ugcamsMethodologyWorkflow::before {
    content: "";
    position: absolute;
    top: 25px;
    bottom: 115px;
    left: 34px;
    width: 1px;
    background: #c8dce2;
}


/* ---------------------------------------------------------
   METHODOLOGY STEP
   --------------------------------------------------------- */

.ugcamsMethodStep {
    position: relative;
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 28px;
    margin-bottom: 27px;
}


/* Number */

.ugcamsMethodNumber {
    position: relative;
    z-index: 2;

    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;
    border: 1px solid #bcd8df;

    color: #1687a7;
    font-size: 15px;
    font-weight: 700;

    box-shadow: 0 4px 12px rgba(20,55,75,0.06);
}


/* Content card */

.ugcamsMethodContent {
    padding: 21px 25px 20px;

    background: #ffffff;
    border: 1px solid #dce7eb;
    border-radius: 8px;

    box-shadow: 0 4px 14px rgba(20,55,75,0.035);

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.ugcamsMethodContent:hover {
    transform: translateX(3px);
    border-color: #afd2da;
    box-shadow: 0 8px 22px rgba(20,55,75,0.07);
}


/* Tag */

.ugcamsMethodTag {
    display: inline-block;
    margin-bottom: 7px;

    color: #1687a7;
    font-size: 9.5px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 1.5px;
}


/* Heading */

.ugcamsMethodContent h3 {
    margin: 0 0 7px;

    color: #21445b;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}


/* Paragraph */

.ugcamsMethodContent p {
    margin: 0;

    color: #687b89;
    font-size: 12.5px;
    line-height: 1.65;
}

.ugcamsMethodContent strong {
    color: #365b6c;
    font-weight: 700;
}


/* ---------------------------------------------------------
   FINAL OUTPUT
   --------------------------------------------------------- */

.ugcamsMethodFinal {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 19px;
    align-items: center;

    margin: 42px 0 0 5px;
    padding: 21px 25px;

    background: #eaf5f7;
    border: 1px solid #c8e1e5;
    border-radius: 8px;
}

.ugcamsMethodFinalIcon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1687a7;
    color: #ffffff;

    font-size: 19px;
    font-weight: 700;
}

.ugcamsMethodFinal span {
    display: block;
    margin-bottom: 4px;

    color: #1687a7;
    font-size: 9.5px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.ugcamsMethodFinal h3 {
    margin: 0 0 5px;

    color: #21445b;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.ugcamsMethodFinal p {
    margin: 0;

    color: #687b89;
    font-size: 12px;
    line-height: 1.55;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 700px) {

    .ugcamsMethodologySection {
        padding: 62px 20px 70px;
    }

    .ugcamsMethodologyHeader {
        margin-bottom: 42px;
    }

    .ugcamsMethodologyHeader .sectionLabel {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .ugcamsMethodologyHeader h2 {
        font-size: 27px;
    }

    .ugcamsMethodologyHeader p {
        font-size: 13px;
        line-height: 1.6;
    }

    .ugcamsMethodologyWorkflow::before {
        left: 25px;
        bottom: 125px;
    }

    .ugcamsMethodStep {
        grid-template-columns: 50px 1fr;
        gap: 17px;
        margin-bottom: 20px;
    }

    .ugcamsMethodNumber {
        width: 50px;
        height: 50px;
        font-size: 12px;
    }

    .ugcamsMethodContent {
        padding: 18px 18px;
    }

    .ugcamsMethodContent h3 {
        font-size: 15px;
    }

    .ugcamsMethodContent p {
        font-size: 11.5px;
        line-height: 1.6;
    }

    .ugcamsMethodFinal {
        grid-template-columns: 48px 1fr;
        gap: 14px;
        margin-left: 0;
        padding: 18px;
    }

    .ugcamsMethodFinalIcon {
        width: 43px;
        height: 43px;
        font-size: 16px;
    }

}


@media (max-width: 480px) {

    .ugcamsMethodologyHeader h2 {
        font-size: 25px;
    }

    .ugcamsMethodologyWorkflow::before {
        display: none;
    }

    .ugcamsMethodStep {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .ugcamsMethodNumber {
        width: 42px;
        height: 42px;
    }

    .ugcamsMethodFinal {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   UGCAMS CAPABILITIES
   ========================================================= */

.ugcamsCapabilitiesSection {
    width: 100%;
    padding: 84px 30px 90px;
    background: #ffffff;
    scroll-margin-top: 76px;
}

.ugcamsCapabilitiesContainer {
    max-width: 1140px;
    margin: 0 auto;
}


/* ---------------------------------------------------------
   SECTION HEADER
   --------------------------------------------------------- */

.ugcamsCapabilitiesHeader {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.ugcamsCapabilitiesHeader .sectionLabel {
    display: inline-block;
    margin-bottom: 10px;

    color: #0098aa;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.ugcamsCapabilitiesHeader h2 {
    margin: 0;

    color: #12344d;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
}

.ugcamsCapabilitiesHeader h2 span {
    color: #1687a7;
}

.ugcamsCapabilitiesLine {
    width: 52px;
    height: 3px;

    margin: 17px auto;

    border-radius: 3px;
    background: #1687a7;
}

.ugcamsCapabilitiesHeader p {
    max-width: 790px;
    margin: 0 auto;

    color: #687b89;
    font-size: 13.5px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   CAPABILITY GRID
   --------------------------------------------------------- */

.ugcamsCapabilitiesGrid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;
}


/* ---------------------------------------------------------
   CAPABILITY CARD
   --------------------------------------------------------- */

.ugcamsCapabilityCard {
    min-height: 255px;

    padding: 21px 20px 22px;

    background: #f7fafb;

    border: 1px solid #dfe8ed;
    border-radius: 9px;

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
}

.ugcamsCapabilityCard:hover {
    transform: translateY(-4px);

    background: #ffffff;

    border-color: #afd2da;

    box-shadow:
        0 10px 25px rgba(20,55,75,0.08);
}


/* ---------------------------------------------------------
   CARD TOP
   --------------------------------------------------------- */

.ugcamsCapabilityTop {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}


/* Number */

.ugcamsCapabilityIcon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: #e8f4f6;
    border: 1px solid #cce4e8;
}

.ugcamsCapabilityIcon span {
    color: #1687a7;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}


/* Category */

.ugcamsCapabilityCategory {
    color: #7a909b;

    font-size: 8.5px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 1.25px;

    text-align: right;
}


/* ---------------------------------------------------------
   CARD CONTENT
   --------------------------------------------------------- */

.ugcamsCapabilityCard h3 {
    margin: 0 0 9px;

    color: #21445b;

    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.ugcamsCapabilityCard p {
    margin: 0;

    color: #6b7d89;

    font-size: 11.5px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   INTEGRATION STATEMENT
   --------------------------------------------------------- */

.ugcamsCapabilityIntegration {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 24px;

    margin-top: 55px;
}

.ugcamsCapabilityIntegrationLine {
    height: 1px;

    background: #d7e3e7;
}

.ugcamsCapabilityIntegrationText {
    max-width: 560px;

    text-align: center;
}

.ugcamsCapabilityIntegrationText > span {
    display: block;

    margin-bottom: 7px;

    color: #1687a7;

    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.ugcamsCapabilityIntegrationText h3 {
    margin: 0 0 7px;

    color: #123f57;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.ugcamsCapabilityIntegrationText p {
    margin: 0;

    color: #71828d;

    font-size: 11px;
    line-height: 1.55;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 1000px) {

    .ugcamsCapabilitiesGrid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .ugcamsCapabilitiesSection {
        padding: 62px 20px 70px;
    }

    .ugcamsCapabilitiesHeader {
        margin-bottom: 40px;
    }

    .ugcamsCapabilitiesHeader .sectionLabel {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .ugcamsCapabilitiesHeader h2 {
        font-size: 27px;
    }

    .ugcamsCapabilitiesHeader p {
        font-size: 13px;
        line-height: 1.6;
    }

    .ugcamsCapabilitiesGrid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .ugcamsCapabilityCard {
        min-height: 235px;
        padding: 18px 16px;
    }

    .ugcamsCapabilityCard h3 {
        font-size: 14.5px;
    }

    .ugcamsCapabilityCard p {
        font-size: 10.8px;
    }

    .ugcamsCapabilityCategory {
        font-size: 7.5px;
    }

    .ugcamsCapabilityIntegration {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 42px;
    }

    .ugcamsCapabilityIntegrationLine {
        display: none;
    }

}


@media (max-width: 480px) {

    .ugcamsCapabilitiesGrid {
        grid-template-columns: 1fr;
    }

    .ugcamsCapabilityCard {
        min-height: auto;
    }

    .ugcamsCapabilityIntegrationText h3 {
        font-size: 18px;
    }

}
/* =========================================================
   PORTAL APPLICATIONS
   ========================================================= */

.ugcamsApplicationsSection {
    width: 100%;
    padding: 84px 30px 90px;
    background: #f5f8fa;
    scroll-margin-top: 76px;
}

.ugcamsApplicationsContainer {
    max-width: 1140px;
    margin: 0 auto;
}


/* ---------------------------------------------------------
   SECTION HEADER
   --------------------------------------------------------- */

.ugcamsApplicationsHeader {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.ugcamsApplicationsHeader .sectionLabel {
    display: inline-block;
    margin-bottom: 10px;

    color: #0098aa;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.ugcamsApplicationsHeader h2 {
    margin: 0;

    color: #12344d;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
}

.ugcamsApplicationsHeader h2 span {
    color: #1687a7;
}

.ugcamsApplicationsLine {
    width: 52px;
    height: 3px;

    margin: 17px auto;

    border-radius: 3px;
    background: #1687a7;
}

.ugcamsApplicationsHeader p {
    max-width: 790px;
    margin: 0 auto;

    color: #687b89;
    font-size: 13.5px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   APPLICATION GRID
   --------------------------------------------------------- */

.ugcamsApplicationsGrid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}


/* ---------------------------------------------------------
   APPLICATION CARD
   --------------------------------------------------------- */

.ugcamsApplicationCard {
    min-height: 285px;

    padding: 22px 21px 20px;

    background: linear-gradient(
        145deg,
        #ffffff 0%,
        #f1f9fc 100%
    );

    border: 1px solid #b9dce9;
    border-top: 4px solid #0f91be;
    border-radius: 9px;

    box-shadow:
        0 5px 16px rgba(8,43,73,0.08);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.ugcamsApplicationCard:hover {
    transform: translateY(-5px);

    background: linear-gradient(
        145deg,
        #ffffff 0%,
        #e7f6fb 100%
    );

    border-color: #0f91be;

    box-shadow:
        0 12px 28px rgba(8,43,73,0.14);
}

/* ---------------------------------------------------------
   CARD HEADER
   --------------------------------------------------------- */

.ugcamsApplicationHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}


/* Number */

.ugcamsApplicationIcon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: #e8f4f6;
    border: 1px solid #cce4e8;
}

.ugcamsApplicationIcon span {
    color: #1687a7;

    font-size: 11px;
    font-weight: 700;
}


/* Category */

.ugcamsApplicationType {
    color: #7a909b;

    font-size: 8px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-align: right;
}


/* ---------------------------------------------------------
   CARD CONTENT
   --------------------------------------------------------- */

.ugcamsApplicationCard h3 {
    margin: 0 0 9px;

    color: #21445b;

    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.ugcamsApplicationCard p {
    min-height: 82px;

    margin: 0 0 17px;

    color: #6b7d89;

    font-size: 11.5px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   FEATURE TAGS
   --------------------------------------------------------- */

.ugcamsApplicationFeatures {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ugcamsApplicationFeatures span {
    display: inline-block;

    padding: 5px 8px;

    background: #f1f7f8;
    border: 1px solid #d9e9ec;
    border-radius: 4px;

    color: #52717f;

    font-size: 8.5px;
    line-height: 1.2;
    font-weight: 600;
}


/* ---------------------------------------------------------
   APPLICATION FLOW
   --------------------------------------------------------- */

.ugcamsApplicationsFlow {
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 55px auto 0;

    gap: 17px;
}

.ugcamsApplicationsFlowItem {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ugcamsApplicationsFlowItem strong {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1687a7;
    color: #ffffff;

    font-size: 9px;
    font-weight: 700;
}

.ugcamsApplicationsFlowItem span {
    color: #456575;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.ugcamsApplicationsFlowArrow {
    color: #9ab2bc;

    font-size: 17px;
    font-weight: 400;
}


/* ---------------------------------------------------------
   CLOSING STATEMENT
   --------------------------------------------------------- */

.ugcamsApplicationsClosing {
    max-width: 760px;

    margin: 45px auto 0;
    padding-top: 27px;

    text-align: center;

    border-top: 1px solid #d7e3e7;
}

.ugcamsApplicationsClosing h3 {
    margin: 0 0 7px;

    color: #21445b;

    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.ugcamsApplicationsClosing p {
    margin: 0;

    color: #71828d;

    font-size: 11px;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 1000px) {

    .ugcamsApplicationsGrid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .ugcamsApplicationsSection {
        padding: 62px 20px 70px;
    }

    .ugcamsApplicationsHeader {
        margin-bottom: 40px;
    }

    .ugcamsApplicationsHeader .sectionLabel {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .ugcamsApplicationsHeader h2 {
        font-size: 27px;
    }

    .ugcamsApplicationsHeader p {
        font-size: 13px;
        line-height: 1.6;
    }

    .ugcamsApplicationsGrid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .ugcamsApplicationCard {
        min-height: 265px;
        padding: 18px 16px;
    }

    .ugcamsApplicationCard h3 {
        font-size: 14.5px;
    }

    .ugcamsApplicationCard p {
        min-height: 95px;
        font-size: 10.8px;
    }

    .ugcamsApplicationType {
        font-size: 7px;
    }

    .ugcamsApplicationsFlow {
        gap: 10px;
    }

    .ugcamsApplicationsFlowArrow {
        font-size: 13px;
    }

    .ugcamsApplicationsFlowItem span {
        font-size: 8px;
    }

}


@media (max-width: 480px) {

    .ugcamsApplicationsGrid {
        grid-template-columns: 1fr;
    }

    .ugcamsApplicationCard {
        min-height: auto;
    }

    .ugcamsApplicationCard p {
        min-height: auto;
    }

    .ugcamsApplicationsFlow {
        flex-wrap: wrap;
    }

    .ugcamsApplicationsFlowArrow {
        display: none;
    }

    .ugcamsApplicationsClosing h3 {
        font-size: 16px;
    }

}
/* =========================================================
   ABOUT IREC
   ========================================================= */

.aboutIRECSection {
    width: 100%;
    padding: 84px 30px 90px;
    background: #ffffff;
    scroll-margin-top: 76px;
}

.aboutIRECContainer {
    max-width: 1140px;
    margin: 0 auto;
}


/* ---------------------------------------------------------
   SECTION HEADER
   --------------------------------------------------------- */

.aboutIRECHeader {
    max-width: 850px;
    margin: 0 auto 48px;
    text-align: center;
}

.aboutIRECHeader .sectionLabel {
    display: inline-block;
    margin-bottom: 10px;

    color: #0098aa;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.aboutIRECHeader h2 {
    margin: 0;

    color: #12344d;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
}

.aboutIRECHeader h2 span {
    color: #1687a7;
}

.aboutIRECLine {
    width: 52px;
    height: 3px;

    margin: 17px auto 0;

    border-radius: 3px;
    background: #1687a7;
}


/* ---------------------------------------------------------
   MAIN CONTENT
   --------------------------------------------------------- */

.aboutIRECMain {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr;
    gap: 65px;
    align-items: center;
}

.aboutIRECContent {
    max-width: 720px;
}

.aboutIRECContent p {
    margin: 0 0 13px;

    color: #687b89;
    font-size: 13px;
    line-height: 1.7;
}

.aboutIRECContent strong {
    color: #214b63;
    font-weight: 700;
}

.aboutIRECLead {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #4f6877 !important;
}


/* ---------------------------------------------------------
   APPROACH / QUOTE
   --------------------------------------------------------- */

.aboutIRECQuote {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 15px;

    margin-top: 25px;
    padding: 21px 23px;

    background: #082b49;
    border-radius: 8px;

    box-shadow: 0 8px 22px rgba(20,55,75,0.10);
}

.aboutIRECQuoteMark {
    color: #ffffff;

    font-family: Georgia, serif;
    font-size: 48px;
    line-height: 0.9;

    opacity: 0.9;
}

.aboutIRECQuoteText > span {
    display: block;
    margin-bottom: 7px;

    color: #7ed0d9;

    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.aboutIRECQuoteText p {
    margin: 0;

    color: rgba(255,255,255,0.86);

    font-size: 11.5px;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   RIGHT VISUAL
   --------------------------------------------------------- */

.aboutIRECVisual {
    display: flex;
    justify-content: center;
}

.aboutIRECVisualFrame {
    position: relative;

    width: 100%;
    max-width: 330px;
    min-height: 300px;

    overflow: hidden;

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            #082b49 0%,
            #123f5a 55%,
            #1687a7 100%
        );

    box-shadow:
        0 14px 30px rgba(20,55,75,0.13);
}


/* Decorative engineering pattern */

.aboutIRECVisualPattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.irecPatternLine {
    position: absolute;

    display: block;

    width: 1px;

    background: rgba(255,255,255,0.13);

    transform: rotate(28deg);
}

.lineOne {
    height: 390px;
    left: 25%;
    top: -45px;
}

.lineTwo {
    height: 390px;
    left: 51%;
    top: -45px;
}

.lineThree {
    height: 390px;
    left: 77%;
    top: -45px;
}

.irecPatternCircle {
    position: absolute;

    width: 170px;
    height: 170px;

    right: -60px;
    top: 48px;

    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
}

.irecPatternGrid {
    position: absolute;

    width: 190px;
    height: 120px;

    left: 25px;
    bottom: 58px;

    opacity: 0.14;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.5) 1px,
            transparent 1px
        );

    background-size: 20px 20px;

    transform: perspective(250px) rotateX(52deg);
}


/* Visual text */

.aboutIRECVisualTop {
    position: absolute;
    z-index: 2;

    top: 27px;
    left: 27px;

    color: #ffffff;

    font-size: 28px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 2px;
}

.aboutIRECVisualCaption {
    position: absolute;
    z-index: 3;

    left: 27px;
    right: 27px;
    bottom: 27px;

    padding-top: 15px;

    border-top: 1px solid rgba(255,255,255,0.25);
}

.aboutIRECVisualCaption strong {
    display: block;

    margin-bottom: 5px;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 1.5px;
}

.aboutIRECVisualCaption span {
    display: block;

    color: rgba(255,255,255,0.72);

    font-size: 8px;
    line-height: 1.3;
    letter-spacing: 1.3px;
}


/* ---------------------------------------------------------
   ATTRIBUTES
   --------------------------------------------------------- */

.aboutIRECAttributes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 52px;

    border: 1px solid #d9e5e9;
    border-radius: 8px;

    overflow: hidden;

    background: #f8fafb;
}

.aboutIRECAttribute {
    display: flex;
    align-items: center;

    gap: 13px;

    min-height: 84px;
    padding: 15px 19px;

    border-right: 1px solid #d9e5e9;
}

.aboutIRECAttribute:last-child {
    border-right: none;
}

.aboutIRECAttributeIcon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e8f4f6;
    border: 1px solid #cce4e8;

    color: #1687a7;

    font-size: 17px;
    font-weight: 700;
}

.aboutIRECAttribute strong {
    display: block;

    margin-bottom: 4px;

    color: #21445b;

    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 0.8px;
}

.aboutIRECAttribute span {
    display: block;

    color: #788b96;

    font-size: 9px;
    line-height: 1.3;
}


/* ---------------------------------------------------------
   UGCAMS CONNECTION
   --------------------------------------------------------- */

.aboutIRECUgcams {
    max-width: 800px;

    margin: 42px auto 0;

    text-align: center;
}

.aboutIRECUgcams > span {
    display: inline-block;

    margin-bottom: 7px;

    color: #1687a7;

    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.aboutIRECUgcams p {
    margin: 0;

    color: #71828d;

    font-size: 11px;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 1000px) {

    .aboutIRECMain {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .aboutIRECContent {
        max-width: 850px;
        margin: 0 auto;
    }

    .aboutIRECVisualFrame {
        max-width: 500px;
        min-height: 240px;
    }

    .aboutIRECAttributes {
        grid-template-columns: repeat(2, 1fr);
    }

    .aboutIRECAttribute:nth-child(2) {
        border-right: none;
    }

    .aboutIRECAttribute:nth-child(-n+2) {
        border-bottom: 1px solid #d9e5e9;
    }

}


@media (max-width: 700px) {

    .aboutIRECSection {
        padding: 62px 20px 70px;
    }

    .aboutIRECHeader {
        margin-bottom: 40px;
    }

    .aboutIRECHeader .sectionLabel {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .aboutIRECHeader h2 {
        font-size: 27px;
    }

    .aboutIRECContent p {
        font-size: 12px;
    }

    .aboutIRECLead {
        font-size: 13.5px !important;
    }

    .aboutIRECQuote {
        grid-template-columns: 38px 1fr;
        padding: 18px;
    }

    .aboutIRECQuoteMark {
        font-size: 40px;
    }

    .aboutIRECVisualFrame {
        min-height: 220px;
    }

    .aboutIRECAttributes {
        margin-top: 40px;
    }

}


@media (max-width: 480px) {

    .aboutIRECAttributes {
        grid-template-columns: 1fr;
    }

    .aboutIRECAttribute,
    .aboutIRECAttribute:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid #d9e5e9;
    }

    .aboutIRECAttribute:last-child {
        border-bottom: none;
    }

}
/* =========================================================
   UGCAMS USER MANUAL
   ========================================================= */

.ugcamsManualSection {
    width: 100%;
    padding: 84px 30px 90px;
    background: #f5f8fa;
    scroll-margin-top: 76px;
}

.ugcamsManualContainer {
    max-width: 1050px;
    margin: 0 auto;
}


/* ---------------------------------------------------------
   SECTION HEADER
   --------------------------------------------------------- */

.ugcamsManualHeader {
    max-width: 850px;
    margin: 0 auto 52px;
    text-align: center;
}

.ugcamsManualHeader .sectionLabel {
    display: inline-block;
    margin-bottom: 10px;

    color: #0098aa;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.ugcamsManualHeader h2 {
    margin: 0;

    color: #12344d;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
}

.ugcamsManualHeader h2 span {
    color: #1687a7;
}

.ugcamsManualLine {
    width: 52px;
    height: 3px;

    margin: 17px auto;

    border-radius: 3px;
    background: #1687a7;
}

.ugcamsManualHeader p {
    max-width: 790px;
    margin: 0 auto;

    color: #687b89;
    font-size: 13.5px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   MANUAL GUIDE
   --------------------------------------------------------- */

.ugcamsManualGuide {
    position: relative;
}


/* Vertical line */

.ugcamsManualGuide::before {
    content: "";

    position: absolute;

    top: 24px;
    bottom: 25px;

    left: 31px;

    width: 1px;

    background: #cbdde2;
}


/* ---------------------------------------------------------
   MANUAL ITEM
   --------------------------------------------------------- */

.ugcamsManualItem {
    position: relative;

    display: grid;

    grid-template-columns: 62px 1fr;

    gap: 25px;

    margin-bottom: 17px;
}


/* Number */

.ugcamsManualNumber {
    position: relative;
    z-index: 2;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid #bcd8df;

    color: #1687a7;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 4px 12px rgba(20,55,75,0.06);
}


/* Content */

.ugcamsManualBody {
    padding: 17px 21px;

    background: #ffffff;

    border: 1px solid #dce7eb;
    border-radius: 8px;

    box-shadow:
        0 3px 12px rgba(20,55,75,0.03);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.ugcamsManualBody:hover {
    transform: translateX(3px);

    border-color: #afd2da;

    box-shadow:
        0 8px 20px rgba(20,55,75,0.07);
}


/* ---------------------------------------------------------
   TITLE ROW
   --------------------------------------------------------- */

.ugcamsManualTitleRow {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 6px;
}

.ugcamsManualTitleRow h3 {
    margin: 0;

    color: #21445b;

    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.ugcamsManualTitleRow span {
    flex-shrink: 0;

    color: #1687a7;

    font-size: 8px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-align: right;
}


/* Description */

.ugcamsManualBody > p {
    margin: 0;

    color: #6b7d89;

    font-size: 11.5px;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   MAP SUB-GRID
   --------------------------------------------------------- */

.ugcamsManualMapItem {
    margin-bottom: 25px;
}

.ugcamsManualSubGrid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 8px;

    margin-top: 15px;
}

.ugcamsManualSubItem {
    min-height: 76px;

    padding: 11px 10px;

    background: #f5f9fa;

    border: 1px solid #dce9ec;
    border-radius: 6px;
}

.ugcamsManualSubItem strong {
    display: block;

    margin-bottom: 5px;

    color: #31596c;

    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;
}

.ugcamsManualSubItem span {
    display: block;

    color: #788b95;

    font-size: 8.5px;
    line-height: 1.45;
}


/* ---------------------------------------------------------
   WORKFLOW SUMMARY
   --------------------------------------------------------- */

.ugcamsManualSummary {
    margin-top: 45px;

    padding: 25px 20px;

    background: #082b49;

    border-radius: 8px;

    text-align: center;

    box-shadow:
        0 8px 22px rgba(20,55,75,0.10);
}

.ugcamsManualSummaryLabel {
    margin-bottom: 15px;

    color: #7ed0d9;

    font-size: 8.5px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.ugcamsManualWorkflow {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    flex-wrap: wrap;
}

.ugcamsManualWorkflow span {
    color: #ffffff;

    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 1px;
}

.ugcamsManualWorkflow b {
    color: #62b9c5;

    font-size: 13px;
    font-weight: 400;
}


/* ---------------------------------------------------------
   INFORMATION NOTE
   --------------------------------------------------------- */

.ugcamsManualNote {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    max-width: 820px;

    margin: 22px auto 0;

    padding: 13px 16px;

    background: #edf6f7;

    border: 1px solid #d7e9ec;

    border-radius: 7px;
}

.ugcamsManualNote > span {
    width: 19px;
    height: 19px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 1px;

    border-radius: 50%;

    background: #1687a7;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
}

.ugcamsManualNote p {
    margin: 0;

    color: #71828d;

    font-size: 10.5px;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 1000px) {

    .ugcamsManualSubGrid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .ugcamsManualSection {
        padding: 62px 20px 70px;
    }

    .ugcamsManualHeader {
        margin-bottom: 42px;
    }

    .ugcamsManualHeader .sectionLabel {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .ugcamsManualHeader h2 {
        font-size: 27px;
    }

    .ugcamsManualHeader p {
        font-size: 13px;
        line-height: 1.6;
    }

    .ugcamsManualGuide::before {
        left: 25px;
    }

    .ugcamsManualItem {
        grid-template-columns: 50px 1fr;
        gap: 17px;
    }

    .ugcamsManualNumber {
        width: 50px;
        height: 50px;

        font-size: 11px;
    }

    .ugcamsManualBody {
        padding: 16px 16px;
    }

    .ugcamsManualTitleRow {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .ugcamsManualTitleRow h3 {
        font-size: 14px;
    }

    .ugcamsManualTitleRow span {
        text-align: left;
        font-size: 7px;
    }

    .ugcamsManualBody > p {
        font-size: 10.5px;
    }

    .ugcamsManualSubGrid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 480px) {

    .ugcamsManualGuide::before {
        display: none;
    }

    .ugcamsManualItem {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .ugcamsManualNumber {
        width: 42px;
        height: 42px;
    }

    .ugcamsManualSubGrid {
        grid-template-columns: 1fr;
    }

    .ugcamsManualWorkflow {
        gap: 8px;
    }

    .ugcamsManualWorkflow b {
        display: none;
    }

}
/* =========================================================
   UGCAMS FOOTER
   ========================================================= */

.ugcamsFooter {
    width: 100%;
    background: #061f35;
    color: #ffffff;
}


/* ---------------------------------------------------------
   FOOTER MAIN
   --------------------------------------------------------- */

.ugcamsFooterMain {
    max-width: 1140px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.55fr 0.8fr 0.8fr 0.85fr;

    gap: 55px;

    padding: 55px 30px 45px;
}


/* ---------------------------------------------------------
   BRAND
   --------------------------------------------------------- */

.ugcamsFooterBrand {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.ugcamsFooterLogoWrap {
    width: 68px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border-radius: 4px;
}

.ugcamsFooterLogo {
    width: 62px;
    height: 46px;

    object-fit: contain;
    display: block;
}

.ugcamsFooterBrandText h3 {
    margin: 0 0 4px;

    color: #ffffff;

    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 1px;
}

.ugcamsFooterBrandText p {
    margin: 0 0 9px;

    color: #8ed4dc;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.ugcamsFooterBrandText span {
    display: block;

    max-width: 360px;

    color: rgba(255,255,255,0.62);

    font-size: 10px;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   FOOTER LINKS
   --------------------------------------------------------- */

.ugcamsFooterLinks h4 {
    margin: 0 0 16px;

    color: #7ed0d9;

    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 1.6px;
}

.footerNavButton {
    display: block;

    margin: 0 0 9px;
    padding: 0;

    border: none;
    background: transparent;

    color: rgba(255,255,255,0.67);

    font-family: inherit;

    font-size: 10px;
    line-height: 1.4;

    cursor: pointer;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footerNavButton:hover {
    color: #ffffff;
    transform: translateX(3px);
}


/* ---------------------------------------------------------
   IREC
   --------------------------------------------------------- */

.ugcamsFooterLinks > p {
    margin: 0 0 8px;

    color: rgba(255,255,255,0.67);

    font-size: 10px;
    line-height: 1.5;
}

.ugcamsFooterLinks .ugcamsFooterIREC {
    color: #ffffff;

    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 1px;
}

.ugcamsFooterLinks .ugcamsFooterLocation {
    margin-top: 10px;

    color: rgba(255,255,255,0.45);

    font-size: 9px;
}


/* ---------------------------------------------------------
   FOOTER BOTTOM
   --------------------------------------------------------- */

.ugcamsFooterBottom {
    max-width: 1140px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 17px 30px;

    border-top: 1px solid rgba(255,255,255,0.10);

    color: rgba(255,255,255,0.42);

    font-size: 8.5px;
    line-height: 1.4;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 1000px) {

    .ugcamsFooterMain {
        grid-template-columns:
            1.5fr 1fr 1fr;

        gap: 35px;
    }

    .ugcamsFooterBrand {
        grid-column: 1 / -1;
    }

}


@media (max-width: 700px) {

    .ugcamsFooterMain {
        grid-template-columns: 1fr 1fr;

        gap: 35px 25px;

        padding: 45px 20px 35px;
    }

    .ugcamsFooterBrand {
        grid-column: 1 / -1;
    }

    .ugcamsFooterBottom {
        padding: 15px 20px;

        flex-direction: column;
        align-items: flex-start;

        gap: 5px;
    }

}


@media (max-width: 480px) {

    .ugcamsFooterMain {
        grid-template-columns: 1fr;
    }

    .ugcamsFooterBrand {
        grid-column: auto;
    }

    .ugcamsFooterBottom {
        font-size: 8px;
    }

}
/* =========================================================
   APPLICATION CARD INTERACTION
   ========================================================= */

.ugcamsApplicationCard {
    position: relative;
    cursor: pointer;
}

.ugcamsApplicationAccess {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 18px;
    padding-top: 11px;

    border-top: 1px solid #e1eaed;

    color: #1687a7;

    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 0.8px;
}

.ugcamsApplicationAccess strong {
    font-size: 15px;
    font-weight: 400;

    transition:
        transform 0.2s ease;
}

.ugcamsApplicationCard:hover
.ugcamsApplicationAccess strong {
    transform: translateX(5px);
}

.ugcamsApplicationCard:focus-visible {
    outline: 2px solid #1687a7;
    outline-offset: 3px;
}
/* =========================================================
   UGCAMS APPLICATION CARD INTERACTION
   ========================================================= */

.ugcamsApplicationCard {
    cursor: pointer;
    position: relative;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.ugcamsApplicationCard:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 145, 190, 0.45);
    box-shadow: 0 12px 28px rgba(8, 43, 73, 0.12);
}

.ugcamsApplicationCard:focus-visible {
    outline: 3px solid rgba(15, 145, 190, 0.35);
    outline-offset: 3px;
}

.ugcamsApplicationCard:active {
    transform: translateY(-2px);
}


/* =========================================================
   APPLICATION ACCESS INDICATOR
   ========================================================= */

.ugcamsApplicationAccess {
    transition:
        color 0.2s ease,
        letter-spacing 0.2s ease;
}

.ugcamsApplicationCard:hover .ugcamsApplicationAccess {
    color: #0789b5;
}

.ugcamsApplicationCard:hover .ugcamsApplicationAccess strong {
    transform: translateX(5px);
}

.ugcamsApplicationAccess strong {
    display: inline-block;
    transition: transform 0.2s ease;
}
/* ============================================================
   GETTING STARTED / PORTAL GUIDE
   ============================================================ */

.manualSection {
    background: #f5f8fa;
    padding: 95px 30px;
}

.manualSectionInner {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.manualSection .sectionEyebrow {
    display: block;

    margin-bottom: 12px;

    color: #0785a3;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
}

.manualSection h2 {
    margin: 0;

    color: #092f4d;

    font-size: 38px;
    line-height: 1.2;

    font-weight: 700;
}

.manualSection h2 span {
    color: #1689a8;
}

.manualSection .sectionTitleLine {
    width: 52px;
    height: 3px;

    margin: 18px auto 20px;

    background: #1689a8;

    border-radius: 5px;
}

.manualIntroText {
    max-width: 800px;

    margin: 0 auto 50px;

    color: #607582;

    font-size: 14px;
    line-height: 1.75;
}


/* ============================================================
   SEQUENCE
   ============================================================ */

.manualSequence {
    position: relative;

    max-width: 970px;

    margin: 0 auto;

    text-align: left;
}


/* vertical line */

.manualSequence::before {
    content: "";

    position: absolute;

    left: 31px;

    top: 32px;
    bottom: 32px;

    width: 1px;

    background: #cbdde3;
}


.manualSequenceItem {
    position: relative;

    display: flex;

    gap: 25px;

    margin-bottom: 18px;
}


.manualSequenceNumber {
    position: relative;

    z-index: 2;

    width: 64px;
    height: 64px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid #b9dce5;

    color: #087a98;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 3px 12px rgba(15, 65, 82, 0.06);
}


.manualSequenceContent {
    flex: 1;

    padding: 18px 21px;

    background: #ffffff;

    border: 1px solid #d9e6eb;

    border-radius: 8px;

    box-shadow:
        0 4px 15px rgba(18, 57, 73, 0.035);
}


.manualSequenceHeader {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;
}


.manualSequenceHeader h3 {
    margin: 0;

    color: #153f56;

    font-size: 16px;

    font-weight: 650;
}


.manualSequenceHeader span {
    color: #07819d;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.2px;

    white-space: nowrap;
}


.manualSequenceContent p {
    margin: 6px 0 0;

    color: #687d88;

    font-size: 12px;

    line-height: 1.6;
}


/* ============================================================
   MAP FEATURE CARDS
   ============================================================ */

.manualFeatureGrid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 8px;

    margin-top: 15px;
}


.manualFeatureGrid > div {
    min-height: 74px;

    padding: 11px;

    background: #f5f9fa;

    border: 1px solid #d9e7eb;

    border-radius: 6px;
}


.manualFeatureGrid strong {
    display: block;

    color: #1a5268;

    font-size: 10px;

    line-height: 1.3;
}


.manualFeatureGrid span {
    display: block;

    margin-top: 4px;

    color: #80919a;

    font-size: 9px;

    line-height: 1.4;
}


/* ============================================================
   DETAILED MANUAL ACCESS
   ============================================================ */

.manualDetailedAccess {
    margin-top: 48px;

    padding-top: 30px;

    border-top:
        1px solid #dce7eb;
}


.manualDetailedAccess p {
    margin: 0 0 14px;

    color: #71848e;

    font-size: 13px;
}


.manualDetailedButton {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    min-height: 45px;

    padding: 0 22px;

    border-radius: 7px;

    background: #0b6079;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 650;

    box-shadow:
        0 5px 15px rgba(9, 76, 96, 0.15);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.manualDetailedButton strong {
    font-size: 17px;

    font-weight: 400;
}


.manualDetailedButton:hover {
    background: #0d7893;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(9, 76, 96, 0.20);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {

    .manualFeatureGrid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media (max-width: 650px) {

    .manualSection {
        padding:
            70px 18px;
    }

    .manualSection h2 {
        font-size: 30px;
    }

    .manualIntroText {
        margin-bottom: 35px;
    }

    .manualSequence::before {
        left: 23px;
    }

    .manualSequenceItem {
        gap: 15px;
    }

    .manualSequenceNumber {
        width: 47px;
        height: 47px;

        font-size: 10px;
    }

    .manualSequenceContent {
        padding: 15px;
    }

    .manualSequenceHeader {
        align-items: flex-start;

        flex-direction: column;

        gap: 4px;
    }

    .manualFeatureGrid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 420px) {

    .manualFeatureGrid {
        grid-template-columns: 1fr;
    }

}
/* ============================================================
   ABOUT IREC — OUR SECTORS
   ============================================================ */

.aboutIRECSectors {
    width: 100%;

    margin-top: 20px;

    padding: 17px 18px 15px;

    background:
        linear-gradient(
            135deg,
            #073353 0%,
            #082f50 55%,
            #06445f 100%
        );

    border-radius: 9px;

    border:
        1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 8px 24px rgba(4, 38, 58, 0.14);

    color: #ffffff;
}


/* ============================================================
   SECTORS HEADER
   ============================================================ */

.aboutIRECSectorsHeader {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 13px;

    border-bottom:
        1px solid rgba(143, 211, 226, 0.25);
}


.aboutIRECSectorsTitle {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.aboutIRECSectorsIcon {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.10);

    border:
        1px solid rgba(92, 202, 224, 0.45);

    color: #5ed0e7;

    font-size: 18px;

    line-height: 1;
}


.aboutIRECSectorsTagline {
    color: #8ec9d8;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.4px;

    white-space: nowrap;
}


/* ============================================================
   SECTOR GRID
   ============================================================ */

.aboutIRECSectorsGrid {
    display: grid;

    grid-template-columns:
        repeat(9, minmax(0, 1fr));

    margin-top: 14px;
}


.aboutIRECSector {
    min-width: 0;

    padding:
        4px 9px 3px;

    text-align: center;

    border-right:
        1px solid rgba(135, 205, 220, 0.18);

    display: flex;

    flex-direction: column;

    align-items: center;
}


.aboutIRECSector:last-child {
    border-right: none;
}


/* ============================================================
   SECTOR ICON
   ============================================================ */

.aboutIRECSectorIcon {
    width: 45px;
    height: 45px;

    margin-bottom: 8px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(0, 181, 218, 0.75);

    background:
        rgba(4, 59, 83, 0.55);

    color: #d9f5fb;

    font-size: 21px;

    box-shadow:
        0 0 0 3px rgba(0, 156, 191, 0.07);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


.aboutIRECSector:hover
.aboutIRECSectorIcon {
    transform: translateY(-3px);

    background:
        rgba(0, 133, 161, 0.25);

    border-color:
        #51cfe8;
}


/* ============================================================
   SECTOR TEXT
   ============================================================ */

.aboutIRECSector strong {
    display: block;

    min-height: 31px;

    color: #ffffff;

    font-size: 10px;

    line-height: 1.25;

    font-weight: 650;
}


.aboutIRECSector small {
    display: block;

    margin-top: 3px;

    color: #91b8c5;

    font-size: 7.5px;

    line-height: 1.35;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {

    .aboutIRECSectorsGrid {
        grid-template-columns:
            repeat(5, 1fr);

        row-gap: 18px;
    }

    .aboutIRECSector:nth-child(5) {
        border-right: none;
    }

}


@media (max-width: 760px) {

    .aboutIRECSectors {
        padding: 16px 13px;
    }

    .aboutIRECSectorsHeader {
        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }

    .aboutIRECSectorsTagline {
        white-space: normal;
    }

    .aboutIRECSectorsGrid {
        grid-template-columns:
            repeat(3, 1fr);

        row-gap: 18px;
    }

    .aboutIRECSector:nth-child(5) {
        border-right:
            1px solid rgba(135, 205, 220, 0.18);
    }

    .aboutIRECSector:nth-child(3n) {
        border-right: none;
    }

}


@media (max-width: 480px) {

    .aboutIRECSectorsGrid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .aboutIRECSector:nth-child(3n) {
        border-right:
            1px solid rgba(135, 205, 220, 0.18);
    }

    .aboutIRECSector:nth-child(2n) {
        border-right: none;
    }

}
/* ============================================================
   ABOUT IREC — CAPABILITIES VISUAL
   ============================================================ */

.aboutIRECCapabilitiesImage {
    width: 100%;

    max-width: 430px;

    margin-left: auto;

    overflow: hidden;

    border-radius: 11px;

    background: #eef5f8;

    box-shadow:
        0 10px 30px rgba(7, 45, 66, 0.14);

    border:
        1px solid rgba(8, 61, 85, 0.10);

    position: relative;
}


.aboutIRECCapabilitiesImage img {
    display: block;

    width: 100%;

    height: auto;

    object-fit: contain;

    vertical-align: middle;
}
/* ============================================================
   ABOUT IREC — MAIN COLUMN BALANCE
   ============================================================ */

.aboutIRECMain {
    display: grid;

    grid-template-columns:
        minmax(0, 1.75fr)
        minmax(330px, 0.85fr);

    gap: 45px;

    align-items: start;
}


.aboutIRECVisual {
    width: 100%;

    display: flex;

    justify-content: flex-end;
}
@media (max-width: 900px) {

    .aboutIRECMain {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .aboutIRECVisual {
        justify-content: center;
    }

    .aboutIRECCapabilitiesImage {
        max-width: 520px;

        margin:
            0 auto;
    }

}
@media (max-width: 520px) {

    .aboutIRECCapabilitiesImage {
        max-width: 100%;

        border-radius: 8px;
    }

}
/* =========================================================
   UGCAMS PDF / PRINT VERSION
   A4 LANDSCAPE
   ========================================================= */

@media print {

    /* -----------------------------------------------------
       PAGE SETUP
    ----------------------------------------------------- */

    @page {
        size: A4 landscape;
        margin: 0;
    }

    html,
    body {
        width: 297mm !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
    }

    body {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }


    /* -----------------------------------------------------
       HIDE WEBSITE-ONLY ELEMENTS
    ----------------------------------------------------- */

    .landingNavigation,
    .landingLoginButton,
    .heroButtons,
    .loginModal {
        display: none !important;
    }


    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    .landingHeader {

        position: relative !important;

        width: 100% !important;

        height: 18mm !important;

        min-height: 18mm !important;

        padding: 0 12mm !important;

        box-shadow: none !important;

        border: none !important;

        box-sizing: border-box !important;

        break-after: avoid;
        page-break-after: avoid;
    }


    /* -----------------------------------------------------
       GENERAL SECTION RESET
    ----------------------------------------------------- */

    section,
    .landingSection,
    .ugcIntroductionSection {

        width: 100% !important;

        min-height: 0 !important;

        height: auto !important;

        margin: 0 !important;

        box-sizing: border-box !important;

        opacity: 1 !important;

        visibility: visible !important;

        transform: none !important;

        animation: none !important;
    }


    /* -----------------------------------------------------
       REMOVE SCREEN-BASED HEIGHTS
    ----------------------------------------------------- */

    .landingHero {

        width: 100% !important;

        height: 192mm !important;

        min-height: 0 !important;

        max-height: none !important;

        box-sizing: border-box !important;

        break-after: page;

        page-break-after: always;

        -webkit-print-color-adjust: exact !important;

        print-color-adjust: exact !important;
    }


    /* -----------------------------------------------------
       HERO CONTENT
    ----------------------------------------------------- */

    .landingHeroContent {

        max-width: 270mm !important;

        width: 100% !important;

        box-sizing: border-box !important;
    }


    /* -----------------------------------------------------
       INTRODUCTION
    ----------------------------------------------------- */

    #aboutUGCAMSSection {

        width: 100% !important;

        box-sizing: border-box !important;

        break-before: auto;

        page-break-before: auto;
    }


    /* -----------------------------------------------------
       KEEP INTRODUCTION COMPONENTS TOGETHER
    ----------------------------------------------------- */

    .ugcHistoryChapter,
    .ugcPurposeSection,
    .ugcModernChapter,
    .ugcEngineeringSection,
    .ugcTransitionSection {

        break-inside: avoid;

        page-break-inside: avoid;
    }


    /* -----------------------------------------------------
       AT A GLANCE
    ----------------------------------------------------- */

    #ugcamsAtGlanceSection {

        break-before: page;

        page-break-before: always;

        break-after: page;

        page-break-after: always;
    }


    /* -----------------------------------------------------
       METHODOLOGY
    ----------------------------------------------------- */

    #ugcamsMethodologySection {

        break-before: page;

        page-break-before: always;
    }


    /*
     * Keep methodology steps from being split
     * across pages where possible.
     */

    .ugcamsMethodStep,
    .ugcamsMethodFinal {

        break-inside: avoid;

        page-break-inside: avoid;
    }


    /* -----------------------------------------------------
       CAPABILITIES
    ----------------------------------------------------- */

    #ugcamsCapabilitiesSection {

        break-before: page;

        page-break-before: always;
    }


    .ugcamsCapabilityCard {

        break-inside: avoid;

        page-break-inside: avoid;
    }


    /* -----------------------------------------------------
       APPLICATIONS
    ----------------------------------------------------- */

    #applicationsSection {

        break-before: page;

        page-break-before: always;
    }


    .ugcamsApplicationCard {

        break-inside: avoid;

        page-break-inside: avoid;
    }


    /* -----------------------------------------------------
       ABOUT IREC
    ----------------------------------------------------- */

    #aboutIRECSection {

        break-before: page;

        page-break-before: always;
    }


    /* -----------------------------------------------------
       GETTING STARTED
    ----------------------------------------------------- */

    #userManualSection {

        break-before: page;

        page-break-before: always;
    }


    /* -----------------------------------------------------
       IMAGES
    ----------------------------------------------------- */

    img {

        max-width: 100% !important;

        break-inside: avoid;

        page-break-inside: avoid;

        -webkit-print-color-adjust: exact !important;

        print-color-adjust: exact !important;
    }


    /* -----------------------------------------------------
       CARDS
    ----------------------------------------------------- */

    .ugcPurposeCard,
    .ugcamsCapabilityCard,
    .ugcamsApplicationCard,
    .ugcamsGlanceStat {

        -webkit-print-color-adjust: exact !important;

        print-color-adjust: exact !important;

        break-inside: avoid;

        page-break-inside: avoid;
    }


    /* -----------------------------------------------------
       HEADINGS
    ----------------------------------------------------- */

    h1,
    h2,
    h3,
    h4 {

        break-after: avoid;

        page-break-after: avoid;
    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .landingFooter {

        break-before: auto;

        page-break-before: auto;
    }

}