/* assets/css/main.css */

:root {
    --navy: #06245a;
    --navy-dark: #031736;
    --gold: #c9972b;
    --gold-light: #e5b64b;
    --text: #071936;
    --muted: #5d6a7e;
    --border: #dde5f0;
    --white: #ffffff;
    --soft: #f6f9fd;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    height: 58px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-weight: 700;
    color: var(--navy-dark);
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 28px;
    color: var(--navy);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 8px;
    font-weight: 800;
    letter-spacing: .02em;
}

.btn-primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 12px 24px rgba(6,36,90,.22);
}

.btn-secondary {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: rgba(255,255,255,.82);
}

.hero {
    position: relative;
    overflow: visible;
    padding: 85px 0 90;
    background:
        linear-gradient(90deg, #fff 0%, rgba(255,255,255,.40) 45%, rgba(255,255,255,.15) 100%),
        url('/images/heroBackground.png');
    background-size: fill;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 110px;
    background: linear-gradient(to bottom, transparent, #f8fbff);
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 60px;
    align-items: center;
    min-height: 610px;
}

.eyebrow {
    display: inline-flex;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 999px;
    padding: 12px 26px;
    margin-bottom: 34px;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    background: rgba(255,255,255,.75);
}

.hero h1 {
    margin: 0 0 26px;
    font-size: 56px;
    line-height: .97;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    color: var(--navy-dark);
    transform: scaleY(1.5);
    transform-origin: left center;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.2;
    color: var(--text);
    margin: 0 0 36px;
}

.hero-actions {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.ecosystem-wheel {
    position: relative;
    width: 560px;
    height: 560px;
}

.hero-benefits {
    position: relative;
    z-index: 5;
    margin-top: 45px;
    margin-bottom: -55px;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(3,23,54,.12);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.hero-benefits > div {
    padding: 34px 36px 38px;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-benefits > div:last-child {
    border-right: none;
}

.benefit-icon {
    flex-shrink: 0;
    margin-bottom: 0;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--navy);
}

.hero-benefits strong {
    display: block;
    font-size: 1rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.hero-benefits span {
    display: block;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--muted);
}

.section {
    padding: 110px 0 70px;
    background: var(--soft);
}

.section h2 {
    font-size: 44px;
    text-transform: uppercase;
    color: var(--navy-dark);
    margin: 0 0 14px;
}

.section-lead {
    max-width: 720px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.6;
}

@media (max-width: 1000px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .ecosystem-wheel {
        margin: 20px auto 0;
    }

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

    .nav-links {
        display: none;
        position: absolute;
        top: 86px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}

@media (max-width: 640px) {
    .brand img {
        height: 44px;
    }

    .hero {
        padding-top: 50px;
    }

    .ecosystem-wheel {
        width: 330px;
        height: 330px;
        transform: scale(.95);
    }

    .center-node {
        width: 125px;
        height: 125px;
    }

    .center-node strong {
        font-size: 22px;
    }

    .node {
        width: 78px;
        height: 78px;
    }

    .node span {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .node strong {
        font-size: 10px;
        bottom: -30px;
    }

    .node-home { left: 126px; top: 0; }
    .node-inspect { right: 0; top: 72px; }
    .node-connect { right: 8px; bottom: 70px; }
    .node-manage { left: 194px; bottom: 0; }
    .node-repair { left: 58px; bottom: 12px; }
    .node-marketplace { left: 0; top: 168px; }
    .node-records { left: 38px; top: 70px; }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .hero-benefits div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }
}

.product-suite {
    background: #f4f8fc;
    padding: 145px 0 90px;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 42px;
}

.section-heading .eyebrow {
    margin-bottom: 18px;
}

.section-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: .95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--navy-dark);
}

.section-heading p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
}

.product-card {
    position: relative;
    min-height: 260px;
    padding: 22px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--navy-dark);
    box-shadow: 0 12px 28px rgba(3,23,54,.06);
    transition: .2s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(3,23,54,.12);
}

.product-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 18px;
}

.product-icon i {
    font-size: 1.45rem;
}

.product-card h3 {
    margin: 0 0 12px;
    font-size: 1.05rem;
    line-height: 1.2;
}

.product-card p {
    margin: 0 0 22px;
    font-size: .88rem;
    line-height: 1.5;
    color: var(--muted);
}

.product-card span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.product-home .product-icon { background: #1f6f2a; }
.product-inspect .product-icon { background: #2f7ac1; }
.product-connect .product-icon { background: #6d3f8b; }
.product-manage .product-icon { background: #74b05a; }
.product-repair .product-icon { background: #ffa851; }
.product-marketplace .product-icon { background: #ff8a22; }
.product-records .product-icon { background: #002266; }

.product-home span { color: #1f6f2a; }
.product-inspect span { color: #2f7ac1; }
.product-connect span { color: #6d3f8b; }
.product-manage span { color: #74b05a; }
.product-repair span { color: #d86b00; }
.product-marketplace span { color: #ff8a22; }
.product-records span { color: #002266; }

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 760px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-suite {
        padding-top: 120px;
    }
}

.problem-section {
    padding: 100px 0 70px;
    background: #f4f8fc;
}

.problem-image-wrapper {
    margin-bottom: 10px;
}

.problem-image {
    display: block;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    height: auto;
}

.problem-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;

    padding: 8px 18px;

    border-radius: 100px;

    background: rgba(255,138,34,.1);

    color: #ff8a22;

    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;

    margin-bottom: 20px;
}

.problem-intro h2 {
    margin: 0 0 20px;

    color: var(--navy-dark);

    font-size: clamp(2rem,4vw,3.75rem);

    line-height: 1;
    letter-spacing: -.03em;
}

.problem-intro p {
    max-width: 760px;

    margin: 0 auto 18px;

    color: var(--muted);

    font-size: 1.1rem;

    line-height: 1.7;
}
.solution-section {
    padding: 70px 0 80px;
    background: #fff;
}

.solution-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 54px;
    align-items: center;
}

.solution-copy {
    padding-left: 28px;
}

.solution-copy h2 {
    margin: 0 0 10px;
    font-size: 2.45rem;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--navy-dark);
    transform: scaleY(1.5);
}

.solution-copy .solution-subtitle {
    margin: 0 0 20px;
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
}

.solution-copy p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.solution-copy .btn {
    margin-top: 12px;
}

.solution-graphic img {
    display: block;
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    height: auto;
}

.suite-section {
    padding: 70px 0 45px;
    background: #fff;
}

.suite-title {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    margin-bottom: 26px;
}

.suite-title span {
    height: 1px;
    background: #c9d2dd;
    position: relative;
}

.suite-title span::after {
    content: "";
    position: absolute;
    top: -1px;
    width: 72px;
    height: 3px;
    background: var(--gold);
}

.suite-title span:first-child::after {
    right: 0;
}

.suite-title span:last-child::after {
    left: 0;
}

.suite-title h2 {
    margin: 0;
    color: var(--navy-dark);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    white-space: nowrap;
}

.suite-cards {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.suite-card {
    min-height: 235px;
    padding: 18px 14px 12px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 7px;
    color: var(--navy-dark);
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(3,23,54,.06);
    transition: .2s ease;
}

.suite-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(3,23,54,.12);
}

.suite-card-head {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
}

.suite-card-head i {
    font-size: 2rem;
}

.suite-card-head h3 {
    margin: 0;
    font-size: .95rem;
    line-height: 1.05;
    text-transform: uppercase;
    font-weight: 900;
}

.suite-card p {
    margin: 0 0 16px;
    font-size: .78rem;
    line-height: 1.45;
    color: #25364f;
    flex: 1;
}

.suite-price {
    margin-top: auto;
    margin-bottom: 10px;
}

.suite-price small {
    display: block;
    font-size: .72rem;
    font-weight: 800;
    color: #29364b;
}

.suite-price strong {
    font-size: 1.95rem;
    line-height: 1;
    color: var(--navy-dark);
}

.suite-price span {
    font-size: .75rem;
    font-weight: 800;
    color: #29364b;
}

.suite-included strong {
    display: block;
    font-size: 1.1rem;
    line-height: 1.15;
}

.suite-btn {
    margin-top: auto;
    padding: 8px 10px;
    border-radius: 5px;
    color: #fff;
    font-size: .7rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.suite-home { border-color: #74b05a; }
.suite-home i, .suite-home .suite-price strong { color: #2f7a32; }
.suite-home .suite-btn { background: #2f7a32; }

.suite-connect { border-color: #2f7ac1; }
.suite-connect i, .suite-connect .suite-price strong { color: #2f7ac1; }
.suite-connect .suite-btn { background: #2f7ac1; }

.suite-inspect { border-color: #1597a3; }
.suite-inspect i, .suite-inspect .suite-price strong { color: #1597a3; }
.suite-inspect .suite-btn { background: #1597a3; }

.suite-repair { border-color: #ff8a22; }
.suite-repair i, .suite-repair .suite-price strong { color: #ff8a22; }
.suite-repair .suite-btn { background: #ff8a22; }

.suite-marketplace { border-color: #c9972b; }
.suite-marketplace i, .suite-marketplace .suite-price strong { color: #c9972b; }
.suite-marketplace .suite-btn { background: #c9972b; }

.suite-records { border-color: #002266; }
.suite-records i, .suite-records .suite-price strong { color: #002266; }
.suite-records .suite-btn { background: #002266; }

.suite-manage { border-color: #6d3f8b; }
.suite-manage i, .suite-manage .suite-price strong { color: #6d3f8b; }
.suite-manage .suite-btn { background: #6d3f8b; }

.suite-note {
    margin-top: 18px;
    text-align: center;
    color: var(--navy-dark);
    font-size: 1rem;
    font-weight: 600;
}

.suite-note i {
    margin-right: 8px;
    color: var(--navy);
}

@media (max-width: 1180px) {
    .suite-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 760px) {
    .suite-title {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .suite-title h2 {
        white-space: normal;
        font-size: 1.7rem;
    }

    .suite-cards {
        grid-template-columns: 1fr;
    }
}