:root {
    --bg: #ffffff;
    --ink: #07121f;
    --muted: #516074;
    --line: #e6eef5;
    --soft: #f3fbf8;
    --card: #ffffff;
    --shadow: 0 18px 44px rgba(7, 18, 31, .08);
    --r: 18px;
    --max: 1120px;

    /* Eco palette */
    --cyan: #06b6d4;
    --green: #22c55e;
    --cyanSoft: rgba(6, 182, 212, .12);
    --greenSoft: rgba(34, 197, 94, .12);
    --grad: linear-gradient(135deg, var(--cyan), var(--green));
    --gradSoft: linear-gradient(135deg, var(--cyanSoft), var(--greenSoft));

    --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    background:
        radial-gradient(900px 520px at 5% -10%, var(--cyanSoft), transparent 60%),
        radial-gradient(900px 520px at 110% 10%, var(--greenSoft), transparent 55%),
        var(--bg);
    color: var(--ink);
    line-height: 1.55;
}

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

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 22px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;

    flex-wrap: nowrap;
    /* 🔒 never wrap */
    white-space: nowrap;
    /* 🔒 keep inline */
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    /* logo never wraps */
}

.nav nav {
    flex: 1 1 auto;
    /* nav can shrink */
    min-width: 0;
}

.nav ul {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    /* 🔒 */
    white-space: nowrap;
    /* 🔒 */
}

.nav ul li {
    flex-shrink: 0;
}

.nav>div:last-child {
    flex-shrink: 0;
    /* buttons never wrap */
}

/* left stack: logo + name */
.brandLeft {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.05;
}

.brandLeft img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.brandName {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 900;
    color: rgba(7, 18, 31, .65);
}

/* right cascade */
.brandCascade {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-weight: 850;
}

.brandCascade span {
    font-size: 12px;
    color: rgba(7, 18, 31, .55);
    position: relative;
    padding-left: 10px;
    white-space: nowrap;
}

/* cascade offsets */
.brandCascade .c1 {
    margin-left: 0px;
    opacity: .85;
}

.brandCascade .c2 {
    margin-left: 6px;
    opacity: .72;
}

.brandCascade .c3 {
    margin-left: 12px;
    opacity: .62;
}

/* subtle dash */
.brandCascade span::before {
    content: "–";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(7, 18, 31, .35);
}

/* mobile: hide cascade */
@media (max-width: 720px) {
    .brandCascade {
        display: none;
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: .2px;
}

.brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    font-size: 14px;
    font-weight: 800;
    color: var(--muted);
    padding: 8px 10px;
    border-radius: 12px;
    transition: .18s ease;
}

nav a:hover {
    background: var(--cyanSoft);
    color: var(--ink);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 25px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 10px 26px rgba(7, 18, 31, .06);
    transition: .18s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn.primary {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 16px 34px rgba(6, 182, 212, .18);
    cursor: pointer;
}

.btn.ghost {
    background: #fff;
}

/* Mobile */
.menuBtn {
    display: none;
}

@media (max-width: 920px) {
    nav ul {
        display: none;
    }

    .menuBtn {
        display: inline-flex;
    }
}

/* Layout */
section {
    padding: 25px 0;
}

/* Hero */
.hero {
    padding: 52px 0 28px;
}

.heroGrid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
    align-items: stretch;
}

.hero h1,
.hero .lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

.hero>.wrap>.wrap>div {
    text-align: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 7px 12px;
    border: 1px solid var(--line);
    background: var(--gradSoft);
    border-radius: 999px;
    color: var(--ink);
    font-weight: 900;
    font-size: 13px;
    width: fit-content;
}

.hero .kicker {
    margin: 0 auto 12px;
}


h1 {
    margin: 14px 0 10px;
    font-size: clamp(38px, 4.8vw, 64px);
    line-height: 1.02;
    letter-spacing: -1.2px;
}

.word {
    position: relative;
    padding: 0 .2em;
    border-radius: 14px;
    background: var(--gradSoft);
}

.lead {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    max-width: 64ch;
}

.heroActions {
    margin-top: 18px;
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-content: center;
}

.micro {
    margin-top: 12px;
    color: rgba(81, 96, 116, .92);
    font-size: 13px;
    font-weight: 700;
}

.heroCard {
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.heroCard img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background: #e9eef6;
}

.heroFacts {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

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

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

.facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px;
}

.fact {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--soft);
    padding: 12px;
}

.fact b {
    display: block;
    font-size: 16px;
}

.fact span {
    display: block;
    font-size: 13px;
    color: var(--muted);
    font-weight: 700;
}

/* Logos strip */
.logoStrip {
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: #fff;
    box-shadow: 0 12px 30px rgba(7, 18, 31, .05);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.logoStrip p {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

.logoPills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px dashed rgba(7, 18, 31, .18);
    background: rgba(7, 18, 31, .02);
    font-weight: 900;
    font-size: 12px;
    color: rgba(7, 18, 31, .68);
}

/* Section headers */
.head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.head h2 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -.4px;
}

.head p {
    margin: 0;
    color: var(--muted);
    max-width: 72ch;
    font-size: 14px;
    font-weight: 700;
}

/* Split panels */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}

/* Innovations layout: 33/77 split */
#innovations .split {
    grid-template-columns: 0.33fr 0.77fr;
}

/* Optional: keep it responsive */
@media (max-width: 920px) {
    #innovations .split {
        grid-template-columns: 1fr;
    }
}

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

.panel {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.panel .pad {
    padding: 18px;
}

.panel img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    background: #e9eef6;
}

@media (max-width: 920px) {
    .panel img {
        height: 260px;
    }
}

.bullets {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.bullets li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--soft);
    border-radius: 16px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 6px;
    flex: 0 0 auto;
    background: var(--cyan);
}

.dot.green {
    background: var(--green);
}

/* Numbers */
.numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

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

.num {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: #fff;
    box-shadow: 0 10px 26px rgba(7, 18, 31, .05);
    padding: 18px;
}

.num b {
    display: block;
    font-size: 34px;
    letter-spacing: -.8px;
}

.num span {
    color: var(--muted);
    font-weight: 800;
}

/* Tabs */
.tabs {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tabRow {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--soft);
    overflow: auto;
}

.tabBtn {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 14px 16px;
    font-weight: 950;
    color: var(--muted);
    cursor: pointer;
    white-space: nowrap;
    border-right: 1px solid var(--line);
}

.tabBtn.active {
    color: var(--ink);
    background: #fff;
}

.tabContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 18px;
    align-items: center;
}

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

.tabContent h3 {
    margin: 0 0 6px;
    font-size: 20px;
    letter-spacing: -.2px;
}

.tabContent p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.tagRow {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.tag {
    font-size: 13px;
    font-weight: 900;
    color: rgba(7, 18, 31, .68);
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--gradSoft);
}

.tabImg {
    border-radius: var(--r);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(7, 18, 31, .06);
    background: #e9eef6;
}

.tabImg img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

@media (max-width: 920px) {
    .tabImg img {
        height: 240px;
    }
}

/* Logos */
/* Logos strip */
.logoPills {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Make all logos same size + safe */
.logoPills img {
    height: 45px;
    width: 90px;
    object-fit: contain;
    display: block;
    opacity: .8;
    filter: grayscale(100%);
    transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}

.logoPills img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-1px);
}

/* Optional: tighter on small screens */
@media (max-width: 520px) {
    .logoPills img {
        height: 22px;
        width: 78px;
    }
}

/* Cards */
.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

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

.card {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: #fff;
    box-shadow: 0 14px 34px rgba(7, 18, 31, .06);
    padding: 18px;
    min-height: 160px;
}

.card h4 {
    margin: 0 0 8px;
    font-size: 16px;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

/* Sustainability mini */
.eco {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--gradSoft);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.eco b {
    display: block;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -0.2px;
}

.eco span {
    display: block;
    color: rgba(7, 18, 31, .72);
    font-weight: 800;
    margin-top: 4px;
}

/* Contact */

/* Centered contact form layout */
.contactSingleWrap {
    display: flex;
    justify-content: center;
}

.contactCentered {
    max-width: 720px;
    width: 100%;
}

/* Make it feel like Synergi */
.contactFormCard {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 24px;
}

/* Slightly more breathing room on large screens */
@media (min-width: 920px) {
    .contactFormCard {
        padding: 28px 32px;
    }
}

.contactHero {
    text-align: center;
    margin-bottom: 34px;
}

.contactHero h1 {
    margin: 0 0 10px;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.02;
    letter-spacing: -1px;
}

.contactHero p {
    margin: 0 auto;
    max-width: 70ch;
    color: var(--muted);
    font-weight: 700;
}

.contact {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* Contact page centered layout */
.contact.contactCenter {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.contactSingle {
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 22px;
}

.contactTitle {
    margin: 0 0 6px;
    font-size: 22px;
    letter-spacing: -0.3px;
}

.contactSubtitle {
    margin: 0 0 14px;
    color: var(--muted);
    font-weight: 700;
}

.contactForm label {
    display: block;
    font-size: 13px;
    font-weight: 900;
    color: var(--muted);
    margin: 10px 0 6px;
}

.contactActions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contactHint {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

#contact .head {
    text-align: center;
    margin-bottom: 32px;
}

/* Center h1 */
#contact .head h1 {
    margin: 0 0 12px;
    font-size: clamp(36px, 4.5vw, 52px);
    letter-spacing: -1px;
}

/* Center paragraph and constrain width */
#contact .head p {
    margin: 0 auto;
    max-width: 65ch;
    color: var(--muted);
    font-weight: 700;
}



.contactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

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

.contactL {
    padding: 18px;
    border-right: 1px solid var(--line);
}

@media (max-width: 920px) {
    .contactL {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
}

.contactR {
    padding: 18px;
    background: var(--soft);
}

label {
    display: block;
    font-size: 13px;
    font-weight: 900;
    color: var(--muted);
    margin: 10px 0 6px;
}

input,
textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    outline: none;
    font-family: var(--font);
    font-size: 14px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

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

/* Footer */
.siteFooter {
    margin-top: 40px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.footerGrid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
    padding: 32px 0;
}

.footerBrand img {
    width: 42px;
    height: auto;
}

.footerBrandName {
    margin-top: 6px;
    font-weight: 900;
    color: rgba(7, 18, 31, .7);
}

.footerBrand address {
    margin-top: 8px;
    font-style: normal;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

.footerBlock h4 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 900;
    color: var(--ink);
}

.footerBlock ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerBlock li {
    margin-bottom: 6px;
}

.footerBlock a {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
}

.footerBlock a:hover {
    color: var(--ink);
}

.socialLinks a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: #fff;
    transition: all .2s ease;
}

.socialLinks svg {
    width: 18px;
    height: 18px;
    fill: rgba(7, 18, 31, 0.45);
    /* 👈 neutral gray */
    transition: fill .2s ease;
}

/* Hover = color */
.socialLinks a:hover {
    background: var(--gradSoft);
    border-color: transparent;
}

.socialLinks a:hover svg {
    fill: var(--cyan);
    transform: translateY(-1px);
    /* or var(--ink) if you prefer */
}



.footerBottom {
    border-top: 1px solid var(--line);
    padding: 14px 0 22px;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    font-weight: 700;
}

/* Mobile */
@media (max-width: 900px) {
    .footerGrid {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .footerBrand img {
        margin: 0 auto;
    }
}


.foot {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.required {
    color: #d32f2f;
    /* nice accessible red */
    margin-left: 2px;
    font-weight: 600;
}

/* Maintenance: full-width support model card */
.maintenanceSupportCard {
    margin-top: 18px;
}

.maintenanceSupportTitle {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: -0.2px;
}

/* Simple, clean bullet list (not the big "bullets" cards) */
.maintenanceSupportList {
    margin: 0 0 14px;
    padding-left: 18px;
    color: var(--muted);
    font-weight: 800;
    line-height: 1.5;
}

.maintenanceSupportList li {
    margin: 6px 0;
}

/* Button positioned left (as in your screenshot) */
.maintenanceSupportBtn {
    align-self: flex-start;
}

#maintenance .split {
    align-items: start;
}

/* Maintenance main card layout (like Discover/Define cards) */
.maintenanceMainCard {
    margin-top: 12px;
}

.maintenanceMainGrid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    align-items: center;
}

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

.maintenanceMainText h3 {
    margin: 0 0 6px;
    font-size: 20px;
    letter-spacing: -0.2px;
}

.maintenanceMainText .muted {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

/* Image inside the same card */
.maintenanceMainImage {
    border-radius: var(--r);
    overflow: hidden;
    padding: 2px;
}

.maintenanceMainImage img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

@media (max-width: 920px) {
    .maintenanceMainImage img {
        height: 240px;
    }
}

/* Layout: text left, button right */
.maintenanceSupportLayout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

/* Title spacing */
.maintenanceSupportTitle {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: -0.2px;
}

/* Green card for bullets (same tone as bullets above) */
.maintenanceSupportBullets {
    border: 1px solid var(--line);
    background: var(--greenSoft);
    border-radius: 16px;
    padding: 12px 14px;
}

/* Simple bullet list (no colored dots) */
.maintenanceSupportBullets ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-weight: 800;
}

.maintenanceSupportBullets li {
    margin: 6px 0;
}

/* Button alignment */
.maintenanceSupportAction {
    margin-top: 12px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Mobile: stack nicely */
@media (max-width: 920px) {
    .maintenanceSupportLayout {
        flex-direction: column;
        align-items: flex-start;
    }
}