﻿:root {
    --navy: #0c1b24;
    --navy2: #0d2a3b;
    --orange: #ff4b12;
    --blue: #0b65a8;
    --green: #42b75a;
    --text: #12202a;
    --muted: #5f6971;
    --max: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff
}

.wrap {
    width: min(var(--max), calc(100% - 56px));
    margin: auto
}

a {
    text-decoration: none;
    color: inherit
}

.topbar {
    height: 66px;
    background: #0a1821;
    color: #fff;
    display: flex;
    align-items: center
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px
}

.ew-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font: 18px Georgia, serif;
    letter-spacing: .8px;
    white-space: nowrap
}

.globe {
    font-size: 27px;
    color: #eee
}

.search {
    width: 200px
}

    .search input {
        width: 100%;
        height: 34px;
        padding: 0 10px;
        border: 0;
        background: #fff
    }

.nav nav {
    display: flex;
    gap: 23px;
    margin-left: auto
}

    .nav nav a {
        font-size: 11px;
        font-weight: 700
    }

.cart {
    position: relative;
    font-size: 16px
}

    .cart b {
        position: absolute;
        top: -8px;
        right: -9px;
        background: #ff6a39;
        border-radius: 50%;
        font-size: 9px;
        width: 16px;
        height: 16px;
        display: grid;
        place-items: center
    }

.orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    padding: 15px 28px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .4px;
    border: 0
}

    .orange.small {
        padding: 13px 24px
    }

.hero {
    height: 360px;
    position: relative;
    overflow: hidden;
    background: #123a52;
    color: #fff;
    margin-top: 78px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 28, 42, .93) 0%, rgba(6, 28, 42, .76) 38%, rgba(6, 28, 42, .18) 70%), url('../assets/mardox_hero.png') center right/cover no-repeat;
    transform: scale(1.03)
}

.hero-inner {
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.hero-copy {
    max-width: 620px
}

.mardox {
    font-size: 58px;
    font-weight: 900;
    letter-spacing: 7px;
    line-height: 1
}

    .mardox span {
        color: #58ba61
    }

.hero h1 {
    font-size: 26px;
    line-height: 1.25;
    font-weight: 400;
    margin: 17px 0 10px  auto;
    color:#fff;
}

    .hero h1 strong {
        font-size: 28px
    }

.hero p {
    font-size: 18px;
    margin: 0 0 22px
}

.dan {
    align-self: flex-start;
    margin-top: 34px;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: .5px
}

    .dan span {
        font-weight: 400;
        margin-left: 4px
    }

.intro {
    padding: 62px 0;
    background: #fff
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 62px;
    align-items: center
}

.device-stack {
    position: relative;
    min-height: 335px
}

.laptop {
    background: #111;
    border-radius: 12px 12px 4px 4px;
    padding: 9px 8px 14px;
    box-shadow: 0 14px 25px rgba(0, 0,0, .16);
    position: absolute;
    left: 10px;
    top: 30px;
    width: 88%
}

    .laptop : after {
        content: "";
        position: absolute;
        left: -5%;
        right: -5%;
        bottom: -13px;
        height: 15px;
        background: linear-gradient(#ddd, #aaa);
        border-radius: 2px 2px 12px 12px
    }

    .laptop img {
        width: 100%;
        display: block
    }

.tablet {
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 40%;
    background: #fff;
    border: 7px solid #111;
    border-radius: 14px;
    padding: 9px 8px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
    font-size: 10px;
}

.tab-logo {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 10px
}

    .tab-logo span {
        color: var(--green)
    }

.tablet ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.tablet li {
    padding: 6px 2px;
    border-bottom: 1px solid #eee
}

.intro-copy h2, .features h2, .library h2, .contact-panel h2 {
    font-size: 35px;
    line-height: 1.04;
    margin: 0 0 18px;
    color:#fff;
}
.ai-copy  h2 {
    color: #fff;
}
.intro-copy p {
    font-size: 15px;
    color: #4f5961;
    line-height: 1.6
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 30px
}

    .benefits div {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px
    }

    .benefits i {
        font-style: normal;
        background: var(--orange);
        color: #fff;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center
    }

.features {
    padding: 70px 0 62px;
    background: linear-gradient(rgba(7, 30, 43, .96), rgba(7, 30, 43, .96)), radial-gradient(circle at 85% 20%, #195779, transparent 35%);
    color: #fff
}

    .features h2 {
        margin-bottom: 7px;
        color:#fff;
    }

.lead {
    font-size: 18px;
    margin: 0;
    color: #fff
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 48px
}

    .feature-grid article {
        text-align: center
    }

    .feature-grid i {
        font-style: normal;
        width: 48px;
        height: 48px;
        border: 1px solid rgba(255, 255, 255, .7);
        border-radius: 9px;
        display: grid;
        place-items: center;
        margin: 0 auto 15px;
        font-size: 24px
    }

    .feature-grid h3 {
        font-size: 18px;
        line-height: 1.2;
        margin: 0 0 10px;
        color:#fff;
    }

    .feature-grid p {
        font-size: 13px;
        line-height: 1.45;
        color: rgba(255, 255, 255, .8);
        max-width: 180px;
        margin: auto
    }

.divider {
    height: 1px;
    background: rgba(255, 255, 255, .35);
    margin: 42px 0 28px
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 80px;
    font-size: 15px
}

    .support-grid div {
        display: flex;
        align-items: center;
        gap: 13px
    }

    .support-grid i {
        font-style: normal;
        border: 1px solid rgba(255, 255, 255, .65);
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border-radius: 3px
    }

.library {
    padding: 55px 0 62px;
    background: #f8fbfd
}

    .library h2 {
        text-align: center;
        margin-bottom: 10px
    }

.center {
    text-align: center;
    color: #6a737b;
    margin: 0 auto 28px
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

    .cards article {
        background: #fff;
        border: 1px solid #dde5e9;
        box-shadow: 0 4px 14px rgba(12, 34, 47, .06)
    }

    .cards img {
        width: 100%;
        height: 145px;
        object-fit: cover;
        display: block
    }

    .cards article > div {
        padding: 18px 17px 21px
    }

    .cards h3 {
        font-size: 18px;
        margin: 0 0 10px;
        line-height: 1.2
    }

    .cards p {
        font-size: 13px;
        line-height: 1.45;
        color: #5a656d;
        margin: 0
    }

.split-cta {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 300px
}

.ai-panel {
    background: #071d2b;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px max(40px, calc((100vw - 1180px)/2));
    padding-right: 42px
}

    .ai-panel img {
        width: 210px;
        height: 230px;
        object-fit: cover;
        object-position: left center;
        mix-blend-mode: screen
    }

.ai-text {
    max-width: 420px
}

    .ai-text span {
        display: inline-block;
        background: #43bd61;
        color: #06230e;
        padding: 6px 10px;
        border-radius: 3px;
        font-size: 11px;
        font-weight: 800
    }

    .ai-text h2 {
        font-size: 30px;
        margin: 10px 0
    }

    .ai-text p {
        font-size: 13px;
        line-height: 1.5;
        color: rgba(255, 255, 255, .85)
    }

.contact-panel {
    background: #f3f8fb;
    padding: 56px max(40px, calc((100vw - 1180px)/2));
    padding-left: 45px
}

    .contact-panel p {
        font-size: 14px;
        line-height: 1.55;
        color: #61707a;
        max-width: 420px;
        margin-bottom: 22px
    }

footer {
    background: #091923;
    color: #fff;
    padding: 52px 0 18px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .7fr 1fr;
    gap: 70px
}

.footer-brand {
    font: 22px Georgia, serif;
    margin-bottom: 14px
}

    .footer-brand span {
        font-size: 28px
    }

.footer-grid p {
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .8);
    max-width: 350px
}

.secure {
    display: inline-block;
    margin-top: 10px;
    background: #f04a31;
    padding: 4px 7px;
    font-size: 9px;
    font-weight: 700
}

.footer-grid h4 {
    font-size: 11px;
    letter-spacing: .5px;
    margin: 0 0 18px
}

.footer-grid a {
    display: block;
    font-size: 11px;
    margin: 10px 0
}

.footer-grid input {
    width: 100%;
    height: 44px;
    background: transparent;
    border: 1px solid #86939b;
    color: #fff;
    padding: 0 13px;
    margin-bottom: 12px
}

.footer-grid button {
    width: 100%;
    border: 0;
    height: 44px
}

.logos {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 35px
}

    .logos span {
        background: #fff;
        color: #2b5a80;
        border: 2px solid #2c6693;
        font-size: 9px;
        font-weight: 800;
        padding: 9px 14px
    }

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .35);
    margin-top: 14px;
    padding-top: 17px;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(255, 255, 255, .75)
}

    .copyright b {
        color: var(--orange)
    }

@media(max-width : 980px) {
    .nav nav {
        display: none
    }

    .search {
        margin-left: auto
    }

    .intro-grid {
        grid-template-columns: 1fr
    }

    .device-stack {
        max-width: 650px;
        margin: auto;
        width: 100%
    }

    .feature-grid, .cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .split-cta {
        grid-template-columns: 1fr
    }

    .ai-panel, .contact-panel {
        padding-left: 7vw;
        padding-right: 7vw
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

        .footer-grid > div : last-child {
            grid-column: 1/-1
        }
}

@media(max-width : 640px) {
    .wrap {
        width: min(100% - 28px, var(--max))
    }

    .topbar {
        height: auto;
        padding: 10px 0
    }

    .nav {
        flex-wrap: wrap
    }

    .search {
        order: 3;
        width: 100%;
        flex: 1 0 100%
    }

    .cart {
        display: none
    }

    .hero {
        height: 440px
    }

    .hero-bg {
        background-position: 60% center
    }

    .mardox {
        font-size: 44px
    }

    .hero h1 {
        font-size: 23px
    }

        .hero h1 strong {
            font-size: 24px
        }

    .dan {
        font-size: 14px
    }

    .intro {
        padding: 50px 0
    }

    .intro-grid {
        gap: 35px
    }

    .device-stack {
        min-height: 270px
    }

    .tablet {
        width: 38%;
        font-size: 8px
    }

    .intro-copy h2, .features h2, .library h2, .contact-panel h2 {
        font-size: 29px
    }

    .benefits, .feature-grid, .support-grid, .cards {
        grid-template-columns: 1fr
    }

    .feature-grid {
        gap: 34px
    }

    .support-grid {
        gap: 16px
    }

    .cards img {
        height: 180px
    }

    .ai-panel {
        flex-direction: column;
        align-items: flex-start
    }

        .ai-panel img {
            width: 180px;
            height: 180px
        }

    .footer-grid {
        grid-template-columns: 1fr
    }

        .footer-grid > div : last-child {
            grid-column: auto
        }

    .copyright {
        flex-direction: column;
        gap: 10px
    }

    .logos {
        flex-wrap: wrap
    }

    .orange.small {
        display: none
    }
}

input : :placeholder {
    color: gray;
    font-style: italic;
    font-size: 14px;
    opacity: 0.8;
}

.library-section {
    background: var(--soft);
}

.library-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.library-card {
    background: #fff;
    padding: 30px 26px;
    min-height: 260px;
    border: 1px solid #e4eaee;
    box-shadow: 0 8px 26px rgba(18, 42, 56, .05);
}

.library-icon {
    font-size: 32px;
    color: #0d5f97;
    margin-bottom: 18px;
}

.library-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.library-card p {
    font-size: 14px;
}
.container {
    width: min(1180px), calc(100% - 40px));
    margin: 0 auto;
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, var(--max));
    }

    .site-header {
        position: static;
    }

    .nav-wrap {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .search-box {
        order: 3;
        flex: 1 1 100%;
    }

    .nav-wrap .btn-small {
        margin-left: auto;
    }

    .hero, .hero-content {
        min-height: 540px;
    }

    .hero-content {
        align-items: flex-end;
    }

    .partner-badge {
        position: absolute;
        top: 10px;
        right: 0;
    }

    .section {
        padding: 65px 0;
    }

    .two-col, .ai-wrap {
        grid-template-columns: 1fr;
    }

    .reverse-mobile > :first-child {
        order: 2;
    }

    .benefit-row {
        grid-template-columns: 1fr;
    }

    .feature-grid, .library-grid, .support-grid {
        grid-template-columns: 1fr;
    }

    .tick-list {
        columns: 1;
    }

    .cta-wrap, .copyright {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .mardox-logo {
        letter-spacing: 6px;
    }

    .btn-outline-light {
        margin-left: 0;
        margin-top: 10px;
    }
}
:root {
    --navy: #0b1c26;
    --navy-2: #102d3f;
    --navy-3: #153b52;
    --orange: #ff4b13;
    --orange-dark: #e93e08;
    --green: #45b858;
    --text: #14202a;
    --muted: #5f6d76;
    --line: #dfe6ea;
    --soft: #f5f8fa;
    --white: #ffffff;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    background: var(--navy);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Georgia, serif;
    letter-spacing: 1px;
    white-space: nowrap;
    font-size: 20px;
}

.brand-mark {
    font-size: 28px;
    color: #f3f3f3;
}

.search-box {
    flex: 0 0 210px;
}

    .search-box input {
        width: 100%;
        height: 38px;
        padding: 0 12px;
        border: 0;
        border-radius: 2px;
    }

.main-nav {
    display: flex;
    gap: 26px;
    margin-left: auto;
}

    .main-nav a {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .4px;
    }

        .main-nav a:hover {
            color: var(--orange);
        }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 0;
    border: 2px solid transparent;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    cursor: pointer;
    transition: .2s ease;
}

.btn-small {
    min-height: 42px;
    padding: 0 20px;
}

.btn-orange {
    background: var(--orange);
    color: #fff;
}

    .btn-orange:hover {
        background: var(--orange-dark);
        transform: translateY(-1px);
        color:#fff;
    }

.btn-outline-light {
    border-color: rgba(255,255,255,.85);
    color: #fff;
    margin-left: 10px;
}

    .btn-outline-light:hover {
        background: #fff;
        color: var(--navy);
    }

.hero {
    min-height: 570px;
    position: relative;
    background: url('../assets/mardox_hero.png') center 42% / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4,20,31,.92) 0%, rgba(4,20,31,.72) 42%, rgba(4,20,31,.20) 72%, rgba(4,20,31,.12) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-copy {
    max-width: 650px;
    padding: 45px 0;
}

.mardox-logo {
    font-weight: 900;
    font-size: clamp(48px, 7vw, 92px);
    letter-spacing: 10px;
    line-height: 1;
    color: #fff;
    margin-bottom: 22px;
}

    .mardox-logo span {
        color: var(--green);
    }

.hero h1 {
    font-size: clamp(29px, 4vw, 46px);
    line-height: 1.18;
    margin: 0 0 18px;
    font-weight: 400;
}

.hero p {
    font-size: 20px;
    margin-bottom: 28px;
}

.partner-badge {
    align-self: flex-start;
    margin-top: 35px;
    padding: 10px 16px;
    background: rgba(255,255,255,.9);
    color: #28465c;
    font-weight: 800;
    letter-spacing: 1px;
}


.ai-section {
    color: #fff;
    background: linear-gradient(110deg, #0c1e29 0%, #102b3a 55%, #0a1720 100%);
}

.ai-wrap {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 70px;
    align-items: center;
}

.ai-visual {
    display: grid;
    place-items: center;
    min-height: 260px;
}

.ai-core {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 64px;
    font-weight: 900;
    color: #7ed8ff;
    border: 2px solid #2ab8ff;
    box-shadow: 0 0 20px rgba(42,184,255,.5), 0 0 65px rgba(42,184,255,.35);
}

.coming-soon {
    display: inline-block;
    padding: 7px 12px;
    background: var(--green);
    color: #072012;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 15px;
}

.ai-copy p {
    color: rgba(255,255,255,.72);
    max-width: 650px;
}

.cta-section {
    background: #fff;
    padding: 70px 0;
}

.cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

    .cta-wrap h2 {
        font-size: clamp(28px, 3vw, 42px);
        margin-bottom: 10px;
    }
