/* =========================================================
   LARENTRA MARINE SYSTEM
   Main Stylesheet
========================================================= */

/* =========================================================
   ROOT
========================================================= */

:root {

    --navy-950: #04111c;
    --navy-900: #061827;
    --navy-850: #081d2d;
    --navy-800: #0b2437;
    --navy-700: #10354d;

    --blue-500: #18a8e0;
    --blue-400: #35c6ed;
    --cyan: #54d5f5;

    --white: #f7fbff;
    --white-soft: #dce8ef;

    --text: #b5c7d2;
    --text-dark: #8299a8;

    --green: #61ddb0;

    --border: rgba(255,255,255,0.09);
    --border-light: rgba(84,213,245,0.18);

    --card: rgba(255,255,255,0.035);

    --shadow:
        0 30px 80px rgba(0,0,0,0.30);

    --container: 1180px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    background: var(--navy-950);

    color: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input {

    font-family: inherit;

}


button {
    cursor: pointer;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {

    width: min(
        var(--container),
        92%
    );

    margin: 0 auto;

}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 11px 19px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 600;

    border: 1px solid transparent;

    transition:
        transform .25s ease,
        background .25s ease,
        border .25s ease,
        box-shadow .25s ease;

}


.btn:hover {

    transform: translateY(-2px);

}


.btn-primary {

    background:
        linear-gradient(
            135deg,
            var(--blue-500),
            #0879bd
        );

    color: #fff;

    box-shadow:
        0 12px 30px
        rgba(24,168,224,.22);

}


.btn-primary:hover {

    box-shadow:
        0 16px 40px
        rgba(24,168,224,.32);

}


.btn-secondary {

    background:
        rgba(255,255,255,.025);

    color: #fff;

    border-color: var(--border);

}


.btn-secondary:hover {

    background:
        rgba(255,255,255,.07);

    border-color:
        rgba(255,255,255,.18);

}


.btn-login {

    background: transparent;

    color: var(--white-soft);

}


.btn-large {

    padding: 14px 23px;

    font-size: 14px;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: 76px;

    z-index: 100;

    background:
        rgba(4,17,28,.78);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid var(--border);

}


.nav-container {

    height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================================
   BRAND
========================================================= */

.brand {

    display: flex;

    align-items: center;

    gap: 11px;

}


.brand-logo {

    width: 39px;
    height: 39px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            145deg,
            var(--cyan),
            var(--blue-500)
        );

    color: #042033;

    font-size: 20px;

    box-shadow:
        0 8px 30px
        rgba(24,168,224,.25);

}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.brand-text strong {

    font-size: 17px;

    letter-spacing:
        -0.4px;

}


.brand-text span {

    margin-top: 5px;

    color: var(--cyan);

    font-size: 8px;

    letter-spacing: 2.2px;

    font-weight: 700;

}


/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation {

    display: flex;

    align-items: center;

    gap: 27px;

}


.main-navigation a {

    color: #aebfca;

    font-size: 13px;

    transition:
        color .2s ease;

}


.main-navigation a:hover {

    color: #fff;

}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 5px;

}


.mobile-menu-button {

    display: none;

    background: transparent;

    border: 0;

    color: #fff;

    font-size: 25px;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 790px;

    padding:
        155px
        0
        110px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 85% 30%,
            rgba(24,168,224,.20),
            transparent 32%
        ),

        radial-gradient(
            circle at 15% 70%,
            rgba(0,105,160,.13),
            transparent 31%
        ),

        linear-gradient(
            180deg,
            #04131f,
            #061827
        );

}


.hero:after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 170px;

    background:
        linear-gradient(
            transparent,
            var(--navy-950)
        );

    pointer-events: none;

}


.hero-background {

    position: absolute;

    inset: 0;

    pointer-events: none;

}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(70px);

}


.glow-one {

    width: 350px;
    height: 350px;

    right: -100px;
    top: 160px;

    background:
        rgba(24,168,224,.12);

}


.glow-two {

    width: 280px;
    height: 280px;

    left: -100px;
    bottom: 80px;

    background:
        rgba(0,105,160,.10);

}


.hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.02fr .98fr;

    align-items: center;

    gap: 60px;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    max-width: 650px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        7px
        12px;

    margin-bottom: 23px;

    border-radius: 999px;

    border:
        1px solid
        rgba(84,213,245,.20);

    background:
        rgba(84,213,245,.045);

    color: var(--cyan);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;

}


.status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 12px
        rgba(97,221,176,.75);

}


.hero h1 {

    font-size:
        clamp(
            45px,
            6vw,
            73px
        );

    line-height: .99;

    letter-spacing:
        -3.4px;

    max-width: 720px;

}


.gradient-text {

    background:

        linear-gradient(
            100deg,
            #fff 10%,
            #67dcfa 80%
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

}


.hero-description {

    max-width: 575px;

    margin:
        26px
        0;

    color: var(--text);

    font-size: 16px;

}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 11px;

}


.hero-stats {

    display: flex;

    gap: 30px;

    margin-top: 35px;

}


.hero-stat {

    color: var(--text-dark);

    font-size: 11px;

}


.hero-stat strong {

    display: block;

    color: #fff;

    font-size: 18px;

    margin-bottom: 2px;

}


/* =========================================================
   DASHBOARD
========================================================= */

.hero-dashboard {

    perspective: 1200px;

}


.dashboard-window {

    overflow: hidden;

    border-radius: 22px;

    border:
        1px solid
        rgba(255,255,255,.12);

    background:
        rgba(11,36,55,.82);

    box-shadow: var(--shadow);

    transform:
        rotateY(-4deg)
        rotateX(2deg);

}


.dashboard-header {

    height: 48px;

    padding:
        0
        18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid var(--border);

}


.window-controls {

    display: flex;

    gap: 6px;

}


.window-controls span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        #4b6473;

}


.system-status {

    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--green);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .6px;

}


.dashboard-content {

    padding: 22px;

}


.dashboard-title {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 19px;

}


.dashboard-label {

    display: block;

    color: var(--cyan);

    font-size: 8px;

    letter-spacing: 1.7px;

    font-weight: 700;

    margin-bottom: 5px;

}


.dashboard-title h3 {

    font-size: 19px;

    line-height: 1.2;

}


.dashboard-date {

    color: var(--text-dark);

    font-size: 10px;

}


/* =========================================================
   DASHBOARD METRICS
========================================================= */

.dashboard-metrics {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 10px;

}


.metric-card {

    position: relative;

    padding: 14px;

    border-radius: 12px;

    border:
        1px solid var(--border);

    background:
        var(--card);

}


.metric-card span {

    display: block;

    color: var(--text-dark);

    font-size: 9px;

}


.metric-card strong {

    display: inline-block;

    margin-top: 4px;

    font-size: 21px;

}


.metric-card small {

    margin-left: 5px;

    color: var(--green);

    font-size: 8px;

}


/* =========================================================
   DASHBOARD CHART
========================================================= */

.dashboard-chart {

    margin-top: 12px;

    padding: 15px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        linear-gradient(
            180deg,
            rgba(24,168,224,.07),
            rgba(255,255,255,.01)
        );

}


.chart-header {

    display: flex;

    justify-content: space-between;

    color: var(--text-dark);

    font-size: 9px;

}


.chart-area {

    position: relative;

    height: 150px;

    margin-top: 8px;

    overflow: hidden;

    background:

        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size:
        25% 25%;

}


.chart-line {

    position: absolute;

    width: 115%;

    height: 100%;

    left: -3%;

    top: 0;

    background:

        linear-gradient(
            145deg,
            transparent 0 9%,
            transparent 9.5% 19%,
            var(--blue-400) 19.5% 20%,
            transparent 20.5% 31%,
            transparent 31.5% 37%,
            var(--blue-400) 37.5% 38%,
            transparent 38.5% 49%,
            transparent 49.5% 57%,
            var(--blue-400) 57.5% 58%,
            transparent 58.5% 70%,
            transparent 70.5% 78%,
            var(--blue-400) 78.5% 79%,
            transparent 79.5%
        );

}


.chart-point {

    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 12px
        rgba(84,213,245,.8);

}


.point-one {
    left: 18%;
    top: 70%;
}


.point-two {
    left: 37%;
    top: 54%;
}


.point-three {
    left: 56%;
    top: 37%;
}


.point-four {
    left: 78%;
    top: 21%;
}


.point-five {
    right: 3%;
    top: 10%;
}


/* =========================================================
   VESSEL LIST
========================================================= */

.vessel-list {

    display: grid;

    gap: 8px;

    margin-top: 12px;

}


.vessel-item {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        10px
        12px;

    border-radius: 10px;

    background:
        var(--card);

}


.vessel-info {

    display: flex;

    align-items: center;

    gap: 9px;

}


.vessel-icon {

    width: 29px;
    height: 29px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    background:
        rgba(24,168,224,.12);

    color: var(--cyan);

}


.vessel-info strong {

    display: block;

    font-size: 11px;

}


.vessel-info span {

    display: block;

    color: var(--text-dark);

    font-size: 8px;

}


.vessel-status {

    color: var(--green);

    font-size: 8px;

}


/* =========================================================
   STATISTICS
========================================================= */

.statistics-section {

    padding:
        50px
        0
        95px;

    background:
        var(--navy-950);

}


.statistics-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background:
        rgba(255,255,255,.025);

}


.statistic {

    padding: 28px;

    text-align: center;

    border-right:
        1px solid var(--border);

}


.statistic:last-child {

    border-right: 0;

}


.statistic strong {

    display: block;

    font-size: 31px;

    letter-spacing: -1px;

}


.statistic span {

    color: var(--text-dark);

    font-size: 11px;

}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {

    max-width: 700px;

    margin:
        0 auto
        50px;

    text-align: center;

}


.section-kicker {

    color: var(--cyan);

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 800;

}


.section-heading h2 {

    margin:
        11px
        0
        14px;

    font-size: 42px;

    line-height: 1.08;

    letter-spacing:
        -1.8px;

}


.section-heading p {

    color: var(--text-dark);

    font-size: 14px;

}


/* =========================================================
   SOLUTIONS
========================================================= */

.solutions-section {

    padding:
        100px
        0;

    background:
        var(--navy-850);

}


.solutions-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 16px;

}


.solution-card {

    position: relative;

    padding: 29px;

    min-height: 255px;

    border:
        1px solid var(--border);

    border-radius: 17px;

    background:
        rgba(255,255,255,.025);

    transition:
        transform .25s ease,
        border .25s ease,
        background .25s ease;

}


.solution-card:hover {

    transform:
        translateY(-6px);

    border-color:
        var(--border-light);

    background:
        rgba(255,255,255,.045);

}


.solution-icon {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    margin-bottom: 20px;

    border-radius: 12px;

    background:
        rgba(24,168,224,.12);

    color: var(--cyan);

    font-size: 19px;

}


.solution-card h3 {

    margin-bottom: 9px;

    font-size: 18px;

}


.solution-card p {

    color: var(--text-dark);

    font-size: 12px;

}


.solution-card a {

    position: absolute;

    left: 29px;

    bottom: 25px;

    color: var(--cyan);

    font-size: 11px;

    font-weight: 700;

}


/* =========================================================
   FLEET
========================================================= */

.fleet-section {

    padding:
        105px
        0;

    background:
        var(--navy-950);

}


.fleet-container {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    align-items: center;

    gap: 70px;

}


.fleet-content h2,
.companies-content h2 {

    max-width: 550px;

    margin:
        12px
        0
        17px;

    font-size: 43px;

    line-height: 1.08;

    letter-spacing:
        -1.8px;

}


.fleet-content > p,
.companies-content > p {

    max-width: 520px;

    color: var(--text-dark);

    font-size: 14px;

}


/* =========================================================
   FEATURE LIST
========================================================= */

.feature-list {

    display: grid;

    gap: 11px;

    margin:
        25px
        0
        30px;

    list-style: none;

}


.feature-list li {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #c3d1d9;

    font-size: 13px;

}


.feature-list li span {

    display: grid;

    place-items: center;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background:
        rgba(97,221,176,.10);

    color: var(--green);

    font-size: 10px;

}


/* =========================================================
   MAP
========================================================= */

.fleet-visual {

    min-height: 430px;

}


.map-card {

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background:
        #071a29;

    box-shadow: var(--shadow);

}


.map-header {

    height: 60px;

    padding:
        0
        20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid var(--border);

}


.map-header strong {

    font-size: 14px;

}


.map-header span {

    color: var(--text-dark);

    font-size: 10px;

}


.map-area {

    position: relative;

    height: 370px;

    overflow: hidden;

    background:

        radial-gradient(
            ellipse at 45% 50%,
            rgba(24,168,224,.12),
            transparent 45%
        ),

        #061827;

}


.map-grid {

    position: absolute;

    inset: 0;

    opacity: .45;

    background:

        linear-gradient(
            rgba(84,213,245,.05) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(84,213,245,.05) 1px,
            transparent 1px
        );

    background-size:
        40px 40px;

}


/* =========================================================
   MAP ROUTES
========================================================= */

.route {

    position: absolute;

    height: 2px;

    border-top:
        2px dashed
        rgba(84,213,245,.35);

    transform-origin: left center;

}


.route-one {

    width: 390px;

    left: 16%;

    top: 57%;

    transform:
        rotate(-18deg);

}


.route-two {

    width: 320px;

    left: 40%;

    top: 31%;

    transform:
        rotate(30deg);

}


.ship-marker {

    position: absolute;

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(24,168,224,.18);

    border:
        1px solid
        rgba(84,213,245,.35);

    color: var(--cyan);

    box-shadow:
        0 0 25px
        rgba(24,168,224,.18);

}


.marker-one {

    left: 21%;

    top: 56%;

}


.marker-two {

    left: 53%;

    top: 38%;

}


.marker-three {

    right: 15%;

    top: 24%;

}


.map-label {

    position: absolute;

    color: rgba(255,255,255,.25);

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.label-one {

    left: 32%;

    bottom: 28%;

}


.label-two {

    right: 22%;

    top: 17%;

}


/* =========================================================
   OPPORTUNITIES
========================================================= */

.opportunities-section {

    padding:
        105px
        0;

    background:
        var(--navy-850);

}


.opportunity-layout {

    display: grid;

    grid-template-columns:
        1.25fr .75fr;

    gap: 22px;

}


/* =========================================================
   JOBS
========================================================= */

.jobs-list {

    display: grid;

    gap: 10px;

}


.job-card {

    display: grid;

    grid-template-columns:
        44px 1fr auto;

    align-items: center;

    gap: 14px;

    padding:
        16px;

    border:
        1px solid var(--border);

    border-radius: 14px;

    background:
        rgba(255,255,255,.025);

    transition:
        transform .2s ease,
        border .2s ease;

}


.job-card:hover {

    transform:
        translateX(3px);

    border-color:
        var(--border-light);

}


.company-logo {

    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        #123a50;

    color: var(--cyan);

    font-size: 16px;

    font-weight: 800;

}


.job-info h3 {

    font-size: 14px;

}


.job-info p {

    margin-top: 2px;

    color: var(--text-dark);

    font-size: 10px;

}


.job-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 5px;

    margin-top: 7px;

}


.job-tags span {

    padding:
        4px
        7px;

    border-radius: 5px;

    background:
        rgba(24,168,224,.08);

    color:
        #8fd0e3;

    font-size: 8px;

}


.job-salary {

    text-align: right;

}


.job-salary strong {

    display: block;

    font-size: 13px;

}


.job-salary span {

    color: var(--text-dark);

    font-size: 9px;

}


.view-all {

    display: block;

    padding:
        10px;

    text-align: center;

    color: var(--cyan);

    font-size: 11px;

    font-weight: 700;

}


/* =========================================================
   AI SEARCH
========================================================= */

.ai-search-card {

    padding: 31px;

    border:
        1px solid
        rgba(84,213,245,.13);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #0d3047,
            #092033
        );

    box-shadow:
        var(--shadow);

}


.ai-search-card h3 {

    margin-top: 9px;

    font-size: 25px;

    line-height: 1.15;

}


.ai-search-card > p {

    margin-top: 10px;

    color: var(--text-dark);

    font-size: 12px;

}


.search-box {

    display: flex;

    gap: 8px;

    margin-top: 25px;

}


.search-box input {

    min-width: 0;

    flex: 1;

    padding:
        13px
        14px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    outline: none;

    background:
        #061827;

    color: #fff;

    font-size: 11px;

}


.search-box input::placeholder {

    color:
        #617a89;

}


.search-box button {

    padding:
        0
        17px;

    border: 0;

    border-radius: 9px;

    background:
        var(--blue-500);

    color: #fff;

    font-size: 11px;

    font-weight: 700;

}


.search-example {

    display: flex;

    flex-wrap: wrap;

    gap: 5px;

    margin-top: 15px;

}


.search-example span {

    color:
        var(--text-dark);

    font-size: 9px;

}


.search-example button {

    padding:
        5px
        8px;

    border:
        1px solid var(--border);

    border-radius: 5px;

    background:
        transparent;

    color:
        #94aebc;

    font-size: 8px;

}


/* =========================================================
   COMPANIES
========================================================= */

.companies-section {

    padding:
        105px
        0;

    background:
        var(--navy-950);

}


.companies-container {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 70px;

}


/* =========================================================
   CANDIDATE PANEL
========================================================= */

.candidate-panel {

    padding:
        25px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background:
        rgba(255,255,255,.035);

    box-shadow:
        var(--shadow);

}


.candidate-panel-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 5px;

}


.candidate-panel-header > div span {

    display: block;

    color: var(--cyan);

    font-size: 8px;

    letter-spacing: 1.5px;

    font-weight: 700;

}


.candidate-panel-header strong {

    display: block;

    margin-top: 5px;

    font-size: 16px;

}


.ai-badge {

    padding:
        5px
        7px;

    border-radius: 5px;

    background:
        rgba(97,221,176,.08);

    color:
        var(--green);

    font-size: 7px;

}


/* =========================================================
   CANDIDATES
========================================================= */

.candidate {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        14px
        0;

    border-bottom:
        1px solid var(--border);

}


.candidate:last-child {

    border-bottom: 0;

}


.candidate-person {

    display: flex;

    align-items: center;

    gap: 10px;

}


.avatar {

    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        #18516c;

    color:
        #c8edf8;

    font-size: 9px;

    font-weight: 700;

}


.candidate-person strong {

    display: block;

    font-size: 12px;

}


.candidate-person span {

    display: block;

    color: var(--text-dark);

    font-size: 9px;

}


.match-score {

    color: var(--green);

    font-size: 12px;

    font-weight: 700;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding:
        90px
        0;

    background:
        var(--navy-850);

}


.cta-box {

    position: relative;

    overflow: hidden;

    padding:
        70px
        30px;

    text-align: center;

    border:
        1px solid var(--border);

    border-radius: 24px;

    background:

        radial-gradient(
            circle at 50% 0%,
            rgba(24,168,224,.17),
            transparent 48%
        ),

        linear-gradient(
            135deg,
            #0b344b,
            #092237
        );

}


.cta-box:before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    top: -130px;
    left: -100px;

    border-radius: 50%;

    background:
        rgba(84,213,245,.06);

    filter: blur(20px);

}


.cta-box h2 {

    position: relative;

    margin:
        10px
        0
        13px;

    font-size: 44px;

    letter-spacing:
        -1.8px;

}


.cta-box p {

    position: relative;

    max-width: 570px;

    margin:
        0
        auto
        25px;

    color: var(--text-dark);

    font-size: 14px;

}


.cta-actions {

    position: relative;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding:
        65px
        0
        25px;

    background:
        #03101a;

    border-top:
        1px solid var(--border);

}


.footer-container {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 45px;

}


.footer-brand p {

    max-width: 260px;

    margin-top: 17px;

    color:
        var(--text-dark);

    font-size: 11px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 9px;

}


.footer-column h4 {

    margin-bottom: 7px;

    color: #fff;

    font-size: 12px;

}


.footer-column a {

    color:
        #718996;

    font-size: 10px;

    transition:
        color .2s ease;

}


.footer-column a:hover {

    color:
        var(--cyan);

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    margin-top: 55px;

    padding-top: 20px;

    border-top:
        1px solid var(--border);

    color:
        #526b79;

    font-size: 9px;

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes floatDashboard {

    0% {
        transform:
            rotateY(-4deg)
            rotateX(2deg)
            translateY(0);
    }

    50% {
        transform:
            rotateY(-4deg)
            rotateX(2deg)
            translateY(-7px);
    }

    100% {
        transform:
            rotateY(-4deg)
            rotateX(2deg)
            translateY(0);
    }

}


.dashboard-window {

    animation:
        floatDashboard 6s
        ease-in-out
        infinite;

}


@keyframes pulseStatus {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .45;
    }

}


.system-status .status-dot {

    animation:
        pulseStatus 2s
        ease-in-out
        infinite;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .main-navigation {

        gap: 17px;

    }


    .main-navigation a {

        font-size: 12px;

    }


    .hero-container {

        gap: 35px;

    }


    .hero h1 {

        font-size: 58px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .main-navigation,
    .nav-actions {

        display: none;

    }


    .mobile-menu-button {

        display: block;

    }


    .hero-container {

        grid-template-columns: 1fr;

    }


    .hero-content {

        max-width: 720px;

    }


    .hero-dashboard {

        max-width: 720px;

        width: 100%;

        margin: 0 auto;

    }


    .dashboard-window {

        transform: none;

    }


    .dashboard-window {

        animation: none;

    }


    .statistics-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .statistic {

        border-bottom:
            1px solid var(--border);

    }


    .statistic:nth-child(2) {

        border-right: 0;

    }


    .statistic:nth-child(3),
    .statistic:nth-child(4) {

        border-bottom: 0;

    }


    .solutions-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .fleet-container,
    .companies-container {

        grid-template-columns: 1fr;

    }


    .fleet-content,
    .companies-content {

        max-width: 720px;

    }


    .fleet-visual {

        width: 100%;

    }


    .opportunity-layout {

        grid-template-columns: 1fr;

    }


    .ai-search-card {

        max-width: 720px;

    }


    .footer-container {

        grid-template-columns:
            2fr 1fr 1fr;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .site-header,
    .nav-container {

        height: 68px;

    }


    .hero {

        min-height: auto;

        padding:
            125px
            0
            80px;

    }


    .hero h1 {

        font-size: 45px;

        letter-spacing:
            -2.5px;

    }


    .hero-description {

        font-size: 14px;

    }


    .hero-meta {

        gap: 17px;

        flex-wrap: wrap;

    }


    .hero-stat {

        font-size: 9px;

    }


    .hero-stat strong {

        font-size: 16px;

    }


    .dashboard-content {

        padding: 14px;

    }


    .dashboard-metrics {

        grid-template-columns: 1fr;

    }


    .dashboard-chart {

        display: none;

    }


    .statistics-section {

        padding:
            35px
            0
            70px;

    }


    .statistics-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .statistic {

        padding: 20px 10px;

    }


    .statistic strong {

        font-size: 25px;

    }


    .solutions-section,
    .fleet-section,
    .opportunities-section,
    .companies-section {

        padding:
            75px
            0;

    }


    .section-heading {

        margin-bottom:
            35px;

    }


    .section-heading h2,
    .fleet-content h2,
    .companies-content h2 {

        font-size: 34px;

        letter-spacing:
            -1.3px;

    }


    .solutions-grid {

        grid-template-columns: 1fr;

    }


    .solution-card {

        min-height: 220px;

    }


    .map-area {

        height: 290px;

    }


    .job-card {

        grid-template-columns:
            42px 1fr;

    }


    .job-salary {

        grid-column: 2;

        text-align: left;

    }


    .search-box {

        flex-direction: column;

    }


    .search-box button {

        height: 42px;

    }


    .candidate-panel {

        padding: 18px;

    }


    .cta-section {

        padding:
            60px
            0;

    }


    .cta-box {

        padding:
            50px
            20px;

    }


    .cta-box h2 {

        font-size: 34px;

    }


    .footer-container {

        grid-template-columns:
            1fr 1fr;

    }


    .footer-brand {

        grid-column:
            1 / -1;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 8px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hero h1 {

        font-size: 39px;

    }


    .hero-actions {

        flex-direction: column;

    }


    .hero-actions .btn {

        width: 100%;

    }


    .statistics-grid {

        grid-template-columns: 1fr;

    }


    .statistic {

        border-right: 0;

        border-bottom:
            1px solid var(--border);

    }


    .statistic:last-child {

        border-bottom: 0;

    }


    .footer-container {

        grid-template-columns: 1fr;

    }

}