/* Lakeshore Infrastructure Redesign - Modern Corporate CSS */
:root {
    --primary: #1E293B; /* Modern Slate Navy */
    --accent: #0284C7;  /* Professional Action Blue */
    --bg: #F8FAFC;      /* Light Gray Foundation */
    --card: #FFFFFF;
    --text: #0F172A;
    --muted: #64748B;
    --white: #ffffff;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --radius: 6px;      /* Redesigned from 0px for better UX */
    --container-max: 1200px;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Redesigned Navigation with Glassmorphism */
.header {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navlinks a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: var(--radius);
}

.navlinks a:hover, .navlinks a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
}

/* Elevated Cards and Hero Section */
.hero-card {
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    border: none;
}

.btn {
    border-radius: var(--radius);
    padding: 14px 28px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.card {
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25);
}

html,
body {
    background-color: #ffffff !important;
    color: var(--text);
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container-max), var(--container-pad));
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 0px;
    background: var(--card);
    color: var(--text);
    font-weight: 600;
    letter-spacing: .2px;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    border-color: rgba(30,154,166,.45);
    box-shadow: 0 10px 26px rgba(11,31,58,.10);
}

.btn.primary {
    background: var(--accent);
    border-color: rgba(30,154,166,.55);
    color: var(--white);
}

.btn.primary:hover {
    background: #187f88;
    border-color: rgba(30,154,166,.75);
}

/* Header */
.topbar {
    background: #fff;
    border-bottom: 1px solid rgba(11,31,58,.12);
    color: #1F2933;
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
    flex-wrap: wrap;
}

.topbar-inner a {
    color: inherit;
    text-decoration: none;
}

.topbar-inner a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.topbar-sep {
    opacity: .55;
}

@media (max-width: 720px) {
    .topbar-inner {
        justify-content: center;
        row-gap: 6px;
    }
}

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

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
}

.brand img {
    width: 148px;
    height: 50px;
    object-fit: contain;
    border-radius: 0;
    border: none;
    background: transparent;
    display: block;
}

.brand .name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand .name strong {
    font-size: 14px;
    letter-spacing: .4px;
}

.brand .name span {
    font-size: 12px;
    color: var(--muted2);
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navlinks a {
    padding: 10px 10px;
    border-radius: 0px;
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .2px;
    transition: background .2s ease, color .2s ease;
}

.navlinks a:hover {
    background: var(--card-2);
    color: var(--text);
}

.navlinks a.active {
    background: rgba(30,154,166,.10);
    color: var(--text);
    border: 1px solid rgba(30,154,166,.22);
}

/* Header on dark background */
header .brand .name strong {
    color: var(--white);
}

header .brand .name span {
    color: rgba(255,255,255,.75);
}

header .navlinks a {
    color: rgba(255,255,255,.80);
}

header .navlinks a:hover {
    background: rgba(255,255,255,.08);
    color: var(--white);
}

header .navlinks a.active {
    background: rgba(30,154,166,.18);
    color: var(--white);
    border: 1px solid rgba(30,154,166,.45);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile nav */
.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 0px;
    border: 1px solid var(--line);
    background: var(--card);
    color: var(--text);
    align-items: center;
    justify-content: center;
}

.burger i {
    font-size: 18px;
}

.mobile-panel {
    display: none;
    padding: 12px 0 18px;
}

.mobile-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    border-radius: 0px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    margin-top: 10px;
    color: var(--text);
    font-weight: 700;
}

.mobile-panel a small {
    color: var(--muted2);
    font-weight: 600;
}

/* Sections */
.section {
    padding: 56px 0;
}

.section.tight {
    padding: 40px 0;
}

.section .eyebrow {
    color: var(--muted2);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    margin-bottom: 10px;
}

.h1 {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.12;
    margin: 0 0 12px;
}

.h2 {
    font-size: clamp(22px, 2.2vw, 30px);
    margin: 0 0 10px;
}

.lead {
    color: var(--muted);
    font-size: 16px;
    max-width: 82ch;
}

/* Hero slider */
.hero {
    padding: 34px 0 26px;
}

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

.hero-card {
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 6px);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--card);
}

.slider {
    position: relative;
    height: 404px;
}

.slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr;
    opacity: 0;
    transform: translateY(6px) scale(.995);
    transition: opacity .6s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}

.slide.active {
    opacity: 1;
    transform: none;
}

.slide .media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(0.95) contrast(1.05);
    will-change: transform;
    transform: scale(1) translate3d(0,0,0);
}

@keyframes kenburns{
    0% {
        transform: scale(1) translate3d(0,0,0);
    }

    100% {
        transform: scale(1.08) translate3d(-1%, -1%, 0);
    }
}

.slide.active .media {
    animation: kenburns 7.2s ease-in-out forwards;
}

.slide .overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,31,58,.78);
}

.slide .content {
    position: relative;
    padding: 34px 34px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    justify-content: flex-end;
}

.kicker {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: .2px;
    font-size: 13px;
}

.kicker i {
    font-size: 18px;
    color: var(--accent);
}

.slide h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.12;
}

.slide p {
    margin: 0;
    color: rgba(255,255,255,.86);
    max-width: 70ch;
}

.slider-controls {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    gap: 10px;
}

.pill {
    width: 40px;
    height: 40px;
    border-radius: 0px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.pill:hover {
    transform: translateY(-1px);
    background: rgba(30,154,166,.10);
    border-color: rgba(30,154,166,.35);
}

.pill i {
    font-size: 16px;
}

/* Feature side card */
.side {
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 6px);
    background: var(--card);
    box-shadow: var(--shadow);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side .mini {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 0px;
    background: var(--card-2);
}

.icon-badge {
    width: 46px;
    height: 46px;
    border-radius: 0px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(30,154,166,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.icon-badge i {
    font-size: 22px;
    color: var(--text);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
    transition: transform .25s ease, opacity .25s ease;
}

.side .mini:hover .icon-badge i {
    transform: translateY(-1px) scale(1.04);
}

.side .mini h3 {
    margin: 0;
    font-size: 14px;
}

.side .mini p {
    margin: 6px 0 0;
    color: var(--muted2);
    font-size: 13px;
}

/* Cards */
.cards {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    border: 1px solid var(--line);
    background: var(--card);
    border-radius: calc(var(--radius) + 6px);
    padding: 18px;
    box-shadow: 0 10px 28px rgba(11,31,58,.08);
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(30,154,166,.32);
    background: rgba(30,154,166,.06);
}

.card .top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.card .top i {
    font-size: 26px;
    color: var(--accent);
    opacity: .95;
}

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

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Content blocks */
.block {
    border: 1px solid var(--line);
    background: var(--card);
    border-radius: calc(var(--radius) + 6px);
    padding: 26px;
    box-shadow: 0 10px 28px rgba(11,31,58,.08);
}

.kv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Image-box feature cards */
.kv.kv-media {
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kv.kv-media.kv-media-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kv.kv-media .feature-card.full {
    grid-column: 1 / -1;
}

.feature-card {
    border: 1px solid var(--line);
    background: var(--card);
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(11,31,58,.10);
}

.feature-media {
    position: relative;
    height: 220px;
}

.feature-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11,31,58,.12);
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-body {
    padding: 18px 18px 16px;
}

.mini-grid {
    display: grid;
    gap: 12px;
}

/* How we work – grid cards */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.how-card {
    padding: 14px;
    border-radius: 0px;
    border: 1px solid var(--line);
    background: var(--card-2);
}

.how-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.how-card h3 {
    margin: 0;
    font-size: 16px;
}

.how-card p {
    margin: 0;
    color: var(--muted);
}

.feature-card.full .feature-body {
    padding-bottom: 18px;
}

.feature-card.full .how-grid {
    margin-top: 2px;
}

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

.section-cta {
    margin-top: 18px;
}

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

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

    .feature-media {
        height: 200px;
    }
}

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

.list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--muted);
    padding: 12px;
    border-radius: 0px;
    border: 1px solid var(--line);
    background: var(--card-2);
}

.list i {
    font-size: 20px;
    color: var(--accent);
    margin-top: 1px;
}

.hr {
    height: 1px;
    background: var(--line);
    margin: 18px 0;
}

/* Forms */
.form {
    display: grid;
    gap: 14px;
}

.input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input label {
    font-size: 12px;
    color: var(--muted2);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.input input,
.input textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 0px;
    border: 1px solid var(--line);
    background: var(--card);
    color: var(--text);
    outline: none;
}

.input input:focus,
.input textarea:focus {
    border-color: rgba(30,154,166,.65);
    box-shadow: 0 0 0 4px rgba(30,154,166,.12);
}

.input textarea {
    min-height: 130px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,.92);
    border-top: 1px solid rgba(255,255,255,.14);
    padding: 44px 0 56px;
}

.footer * {
    color: inherit;
}

.footer .footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
}

.footer .legal {
    max-width: 96ch;
    font-size: 12.5px;
    color: rgba(255,255,255,.72);
}

.footer a {
    color: rgba(255,255,255,.92);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer a:hover {
    color: rgba(255,255,255,1);
}

.footer img {
    border-radius: 0 !important;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,.18);
    background: transparent;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.social a:hover {
    transform: translateY(-2px);
    border-color: rgba(30,154,166,.65);
    background: rgba(255,255,255,.04);
    box-shadow: 0 14px 32px rgba(0,0,0,.22);
}

.social i {
    font-size: 20px;
    color: rgba(255,255,255,.92);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    display: none;
}

.cookie-card {
    width: min(var(--container-max), 100%);
    margin: 0 auto;
    border: 1px solid rgba(11,31,58,.18);
    background: rgba(11,31,58,.96);
    color: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-radius: 0px;
    box-shadow: 0 18px 70px rgba(11,31,58,.25);
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
}

.cookie-left {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.cookie-left i {
    font-size: 24px;
    color: var(--accent);
}

.cookie-left p {
    margin: 4px 0 0;
    color: rgba(255,255,255,.80);
    font-size: 13.5px;
    max-width: 78ch;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-actions .btn {
    padding: 10px 12px;
    border-radius: 0px;
    font-size: 13px;
}

.cookie-actions .btn.ghost {
    background: rgba(255,255,255,.10);
    color: rgba(255,255,255,.92);
}

.cookie-actions .btn.ghost:hover {
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.28);
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    z-index: 1000;
}

.modal .panel {
    width: min(820px, 100%);
    border-radius: 0px;
    border: 1px solid rgba(11,31,58,.18);
    background: rgba(11,31,58,.98);
    color: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 90px rgba(11,31,58,.35);
    overflow: hidden;
}

.modal .head {
    padding: 18px 18px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.modal .head h3 {
    margin: 0;
    font-size: 16px;
}

.modal .close {
    width: 44px;
    height: 44px;
    border-radius: 0px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.10);
    color: rgba(255,255,255,.92);
    cursor: pointer;
}

.modal .close i {
    font-size: 16px;
}

.modal .body {
    padding: 16px 18px 18px;
}

.toggle {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border-radius: 0px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    margin-top: 12px;
}

.toggle h4 {
    margin: 0;
    font-size: 14px;
}

.toggle p {
    margin: 6px 0 0;
    color: var(--muted2);
    font-size: 13px;
    max-width: 62ch;
}

.switch {
    position: relative;
    width: 52px;
    height: 30px;
    flex: 0 0 auto;
}

.switch input {
    display: none;
}

.slider-switch {
    position: absolute;
    inset: 0;
    border-radius: 0px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    transition: background .2s ease, border-color .2s ease;
}

.slider-switch:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: 2px;
    left: 2px;
    border-radius: 0px;
    background: rgba(255,255,255,.86);
    transition: transform .2s ease;
}

.switch input:checked + .slider-switch {
    background: rgba(30,154,166,.20);
    border-color: rgba(30,154,166,.40);
}

.switch input:checked + .slider-switch:before {
    transform: translateX(22px);
}

.modal .foot {
    padding: 14px 18px 18px;
    border-top: 1px solid rgba(255,255,255,.10);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px){
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .slider {
        height: 372px;
    }

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

    .kv {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px){
    .navlinks,
    .nav-cta {
        display: none;
    }

    .burger {
        display: inline-flex;
        width: 44px;
        height: 44px;
        border-radius: 0px;
        border: 1px solid var(--line);
        background: var(--card);
        color: var(--text);
        align-items: center;
        justify-content: center;
    }

    .brand{
        min-width: 0;
        flex: 1 1 auto;
    }

    .brand img{
        width: min(148px, 46vw);
        height: auto;
        max-height: 50px;
    }

    .mobile-panel {
        display: none;
    }

    .slider {
        height: 412px;
    }

    .slide .content {
        padding: 26px;
    }

    .cookie-card {
        width: min(var(--container-max), 100%);
        margin: 0 auto;
        border: 1px solid rgba(11,31,58,.18);
        background: rgba(11,31,58,.96);
        color: rgba(255,255,255,.92);
        backdrop-filter: blur(14px);
        border-radius: 0px;
        box-shadow: 0 18px 70px rgba(11,31,58,.25);
        padding: 16px;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        justify-content: space-between;
    }

    .cookie-actions {
        justify-content: flex-start;
    }
}

/* Footer logo sizing */
.footer-logo{
    width: 148px;
    height: 50px;
    object-fit: contain;
    display: block;
    border-radius: 0 !important;
}

@media (max-width: 760px){
    .footer-logo{
        width: 130px;
        height: auto;
        max-height: 50px;
    }
}

@media (max-width: 480px){
    .footer-logo{
        width: 110px;
        height: auto;
        max-height: 44px;
    }
}

/* Extra-wide screens: use more horizontal space while keeping comfortable gutters */
@media (min-width: 1400px){
    :root {
        --container-pad: 96%;
    }
}

/* Cookie floating button */
.cookie-fab {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 998;
    width: 54px;
    height: 54px;
    border-radius: 0;
    border: 1px solid var(--accent);
    background: var(--accent);
    box-shadow: 0 18px 70px rgba(11,31,58,.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.cookie-fab:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background: var(--primary);
}

.cookie-fab i {
    font-size: 22px;
    color: #fff !important;
}

@media (max-width: 760px){
    .cookie-fab {
        position: fixed;
        left: 18px;
        bottom: 18px;
        z-index: 998;
        width: 54px;
        height: 54px;
        border-radius: 0;
        border: 1px solid var(--accent);
        background: var(--accent);
        box-shadow: 0 18px 70px rgba(11,31,58,.18);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: transform .22s ease, border-color .22s ease, background .22s ease;
    }

    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 84px;
    }
}

/* ===== Wide container (up to 1600px) ===== */
.container-wide {
    width: min(1600px, var(--container-pad));
    margin: 0 auto;
}

/* ===== Full-width hero slider ===== */
.hero-fluid {
    width: 100%;
    margin: 0;
}

.hero.hero-full {
    padding: 0;
}

.hero.hero-full .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
}

.hero.hero-full .hero-card {
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 6px);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--card);
}

.hero.hero-full .slider {
    height: 520px;
}

.hero.hero-full .hero-grid > aside {
    width: min(1600px, var(--container-pad));
    margin: 0 auto 28px;
    padding: 0 0 0;
}

@media (max-width: 820px){
    .hero.hero-full .slider {
        height: 420px;
    }
}

/* ===== Premium consulting-style process section ===== */
.process-premium {
    position: relative;
    padding: 90px 0;
    background: var(--card-2);
    overflow: hidden;
    color: var(--text);
}

.process-premium .eyebrow {
    color: var(--muted2);
}

.process-premium .h2 {
    color: var(--text);
}

.process-premium .lead {
    color: var(--muted);
    font-size: 16px;
    max-width: 82ch;
}

.process-premium::before {
    content: "";
    position: absolute;
    inset: -120px -120px auto -120px;
    height: 360px;
    background: rgba(30,154,166,.10);
    pointer-events: none;
    filter: blur(2px);
}

.process-header {
    max-width: 920px;
    margin: 0 0 34px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.process-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 0px;
    padding: 22px 22px 18px;
    box-shadow: 0 18px 55px rgba(11,31,58,0.10);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(11,31,58,0.14);
    border-color: rgba(30,154,166,.35);
}

.process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.process-step {
    font-weight: 800;
    letter-spacing: .10em;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 0px;
    background: rgba(30,154,166,.10);
    border: 1px solid rgba(30,154,166,.18);
    color: var(--text);
}

.process-icon {
    width: 44px;
    height: 44px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30,154,166,.12);
    border: 1px solid rgba(30,154,166,.18);
}

.process-icon i {
    font-size: 18px;
    color: var(--text);
}

.process-card h3 {
    margin: 0 0 8px 0;
    color: var(--text);
}

.process-card p {
    margin: 0 0 14px 0;
    color: var(--muted);
}

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

.process-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 0px;
    background: var(--card-2);
    border: 1px solid var(--line);
    color: var(--text);
}

.process-points i {
    margin-top: 2px;
    opacity: .9;
    color: var(--accent);
}

.process-cta {
    margin-top: 22px;
}

@media (max-width: 1100px){
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px){
    .process-premium {
        position: relative;
        padding: 90px 0;
        background: var(--card-2);
        overflow: hidden;
        color: var(--text);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Flat corporate overrides: no radius, no overflow ===== */
:root {
    --radius: 0px;
}

html,
body {
    overflow-x: hidden;
}

/* Prevent any grid item overflow */
.hero-grid > *,
.feature-grid > *,
.process-grid > *,
.grid > * {
    min-width: 0;
}

/* Ensure long words/URLs don't escape containers */
body,
h1,
h2,
h3,
p,
li,
a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Remove border radius across UI */
.btn,
.brand img,
.navlinks a,
.burger,
.hero-card,
.side,
.side .mini,
.icon-badge,
.pill,
.feature-card,
.feature-card img,
.feature-body,
.process-card,
input,
textarea,
select,
.card,
.hr {
    border-radius: 0 !important;
}

/* Buttons: keep sharp but readable */
.btn {
    border-radius: 0 !important;
}

/* Images should never force overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Lists inside cards: keep within */
.feature-body ul,
.process-card ul {
    padding-left: 18px;
    margin: 12px 0 0;
}

/* === Overflow & container safety === */
img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}

.container,
.container-wide {
    overflow-wrap: anywhere;
}

.feature-card,
.process-card,
.card,
.mini,
.kv,
.grid,
.feature-grid {
    min-width: 0;
}

/* Lakeshore: logo sizing */
.brand img{width:148px;height:50px;object-fit:contain;flex:0 0 auto}
.footer-logo{width:148px;height:50px;object-fit:contain;flex:0 0 auto}
@media (max-width: 980px){
  .footer-logo{width:130px;height:auto}
}
@media (max-width: 560px){
  .footer-logo{width:110px;height:auto}
}


/* --- Regenerate v2: white body + remove section/card borders --- */
html, body { background:#fff !important; }

/* Remove borders on cards/blocks/panels and any section dividers */
.card, .card:hover,
.block,
.panel,
.kv-card, .feature-card, .service-card, .pricing-card,
.tiles > *, .tile, .box, .callout, .cta-card {
  border: none !important;
}

hr { display:none !important; }

/* If any sections use border lines, disable */
.section, section {
  border: none !important;
}

/* Keep hover effect subtle without border */
.card:hover { box-shadow: 0 14px 34px rgba(11,31,58,.10) !important; background: rgba(11,31,58,.02) !important; }

/* Services: Our approach split layout */
.approach-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}
.approach-media{
  min-height: 320px;
  border-radius: 0;
  overflow:hidden;
  background: #0f172a;
}
.approach-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(.9) contrast(1.02);
}
@media (max-width: 920px){
  .approach-grid{ grid-template-columns: 1fr; }
  .approach-media{ min-height: 220px; }
}

/* Contact: modern form */
.form-modern{
  margin-top: 10px;
}
.form-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.field label{
  display:block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2px;
  color: rgba(15,23,42,.86);
  margin: 0 0 6px 0;
}
.form-modern input,
.form-modern textarea{
  width:100%;
  padding: 12px 12px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.03);
  color: rgba(15,23,42,.92);
  outline: none;
  border-radius: 0;
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.form-modern textarea{ resize: vertical; min-height: 150px; }
.form-modern input::placeholder,
.form-modern textarea::placeholder{ color: rgba(15,23,42,.55); }
.form-modern input:focus,
.form-modern textarea:focus{
  background: #fff;
  border-color: rgba(15,23,42,.22);
  box-shadow: 0 10px 24px rgba(11,31,58,.10);
}
.field-hint{
  font-size: 12px;
  color: rgba(15,23,42,.60);
  margin-top: 8px;
}
.form-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
@media (max-width: 720px){
  .form-grid{ grid-template-columns: 1fr; }
}


/* Services: What we deliver (4-up on desktop) */
.deliver-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1180px){
  .deliver-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px){
  .deliver-grid{
    grid-template-columns: 1fr;
  }
}



/* ===== Premium Soft Boxed Layout (Merged) ===== */

body {
    background: linear-gradient(180deg, #eef2f7 0%, #e6ecf3 100%);
}

.site-boxed {
    max-width: 1320px;
    margin: 40px auto;
    background: #ffffff;
    box-shadow: 
        0 0 0 1px rgba(15,23,42,0.04),
        0 40px 120px rgba(15,23,42,0.08);
    overflow: hidden;
}

.site-boxed > * {
    padding-left: 40px;
    padding-right: 40px;
}

.site-boxed .header {
    border-bottom: 1px solid rgba(15,23,42,0.06);
}

.site-boxed .footer {
    margin-top: 40px;
}



/* ===== Flat Card Override (No Elevation) ===== */

.card,
.feature-card,
.process-card,
.hero-card,
.side,
.block {
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
}

.card:hover,
.feature-card:hover,
.process-card:hover,
.hero-card:hover,
.side:hover,
.block:hover {
    box-shadow: none !important;
    transform: none !important;
    background: inherit !important;
}

/* Remove any hover lift effects */
.card:hover {
    border-color: rgba(15,23,42,.08) !important;
}


/* ==========================================================================
   Lakeshore Infrastructure – Professional Redesign Overrides (2026-02-20)
   Drop-in overrides to modernise typography, spacing, and visual hierarchy.
   ========================================================================== */

/* --- Design tokens --- */
:root{
  --primary: #0F172A;          /* Slate */
  --accent:  #225b96;          /* Professional blue */
  --bg:      #F6F8FB;          /* App-like light background */
  --card:    #FFFFFF;
  --text:    #0B1220;
  --muted:   #52637A;
  --line:    rgba(15,23,42,.10);
  --line2:   rgba(15,23,42,.06);
  --radius:  8px;
  --container-max: 1180px;    /* content measure */
}

/* --- Global --- */
html, body{
  background: var(--bg) !important;
  color: var(--text);
}

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

/* --- Subtle boxed layout (slightly framed, not heavy) --- */
.site-boxed{
  max-width: 1480px;
  margin: 18px auto;
  background: var(--card);
  border: 1px solid var(--line2);
  box-shadow: 0 14px 44px rgba(15,23,42,.06);
  border-radius: 14px;
  overflow: clip;
}

.site-inner{ padding: 0; }

/* Keep header/footer within the box cleanly */
.site-boxed .header{ border-bottom: 1px solid rgba(255,255,255,.10); }
.site-boxed .footer{ border-top: 1px solid rgba(255,255,255,.10); }

/* --- Containers --- */
.container{
  width: min(var(--container-max), 92%);
  margin: 0 auto;
}

/* --- Header (clean, enterprise) --- */
.header{
  background: rgba(15,23,42,.98) !important;
  backdrop-filter: blur(10px);
}
.navbar{ padding: 14px 0; }
.brand img{ height: 44px; width: auto; }
.navlinks a{
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 650;
  letter-spacing: .2px;
}
header .navlinks a:hover{ background: rgba(255,255,255,.10); }
header .navlinks a.active{
  background: rgba(34,91,150,.22);
  border: 1px solid rgba(34,91,150,.40);
}

/* --- Typography scale --- */
.h1, .slide h1{
  letter-spacing: -0.02em;
}
.lead{
  font-size: 16px;
  color: rgba(255,255,255,.86);
  max-width: 78ch;
}
.section .lead{
  color: var(--muted);
}

/* --- Sections & rhythm --- */
.section{ padding: 72px 0; }
.section.tight{ padding: 52px 0; }

/* --- Buttons (more premium, consistent) --- */
.btn{
  border-radius: 999px !important;
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: #fff;
}
.btn.primary{
  background: var(--accent) !important;
  border-color: rgba(34,91,150,.55) !important;
  color: #fff !important;
}
.btn.primary:hover{
  background: #1c4f84 !important;
}

/* --- Flat cards (no elevation) --- */
.card, .block, .feature-card, .process-card, .hero-card, .side, .side .mini{
  box-shadow: none !important;
  transform: none !important;
  transition: background .18s ease, border-color .18s ease !important;
  border: 1px solid var(--line) !important;
  background: var(--card) !important;
  border-radius: var(--radius) !important;
}

.card:hover, .block:hover, .feature-card:hover, .process-card:hover, .side:hover{
  box-shadow: none !important;
  transform: none !important;
  border-color: rgba(34,91,150,.22) !important;
  background: rgba(34,91,150,.03) !important;
}

/* Remove any global “lift” rules */
.card:hover{ transform: none !important; }

/* --- Hero polish --- */
.hero{ padding: 32px 0 18px; }
.hero-card{ border-radius: 16px !important; }
.slide .overlay{ background: linear-gradient(180deg, rgba(15,23,42,.78) 0%, rgba(15,23,42,.86) 100%) !important; }
.slider-controls .pill{
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
}
.slider-controls .pill:hover{
  background: rgba(34,91,150,.18);
  border-color: rgba(34,91,150,.35);
}

/* --- Lists / dividers --- */
.hr{ background: var(--line2) !important; }

/* --- Forms --- */
.input input, .input textarea,
.form-modern input, .form-modern textarea{
  border-radius: 10px !important;
  border: 1px solid var(--line) !important;
  background: rgba(15,23,42,.02) !important;
}
.input input:focus, .input textarea:focus,
.form-modern input:focus, .form-modern textarea:focus{
  background: #fff !important;
  border-color: rgba(34,91,150,.35) !important;
  box-shadow: 0 0 0 4px rgba(34,91,150,.12) !important;
}

/* --- Footer --- */
.footer{
  background: var(--primary) !important;
}
.footer .legal{ color: rgba(255,255,255,.72) !important; }

/* --- Mobile: reduce box margins and radius --- */
@media (max-width: 760px){
  .site-boxed{
    margin: 0 auto;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .section{ padding: 54px 0; }
  .navlinks a{ padding: 10px 12px; }
}


/* ===== Professional hero (static) ===== */
.hero-pro{ padding: 0; }
.hero-pro-bg{
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 54px 0 44px;
}
.hero-pro-overlay{
  position:absolute; inset:0;
  background: radial-gradient(1200px 520px at 18% 20%, rgba(34,91,150,.28) 0%, rgba(15,23,42,.76) 42%, rgba(15,23,42,.88) 100%);
}
.hero-pro-grid{
  position: relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
}
.hero-pro-copy{ padding: 8px 0; }
.hero-pro-lead{
  margin: 10px 0 16px 0;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  max-width: 70ch;
}
.hero-pro-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.hero-pro-meta{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: rgba(255,255,255,.74);
  font-size: 13px;
}
.hero-pro-meta i{ color: rgba(255,255,255,.84); margin-right: 8px; }

.hero-pro-proof{
  display:grid;
  gap: 12px;
}
.proof-card{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 14px 14px 12px;
}
.proof-top{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 6px;
}
.proof-icon{
  width: 40px; height: 40px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(34,91,150,.22);
  border: 1px solid rgba(34,91,150,.28);
}
.proof-card strong{ color: #fff; font-size: 14px; }
.proof-card p{ margin: 0; color: rgba(255,255,255,.78); font-size: 13.5px; }

@media (max-width: 980px){
  .hero-pro-grid{ grid-template-columns: 1fr; }
  .hero-pro-bg{ padding: 46px 0 34px; }
}

/* ===== Footer redesign ===== */
.footer-columns{
  display:grid;
  grid-template-columns: 1.6fr .7fr .7fr;
  gap: 22px;
  padding: 44px 0 26px;
}
.footer-brand-row{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-brand-name{
  font-weight: 800;
  letter-spacing: .2px;
}
.footer-brand-tag{
  font-size: 12px;
  color: rgba(234,240,255,.60);
}
.footer-blurb{
  margin: 0;
  max-width: 72ch;
  font-size: 13px;
  color: rgba(255,255,255,.76);
}
.footer-col{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.footer-title{
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.86);
  margin-bottom: 4px;
}
.footer-col a{
  text-decoration: none;
  color: rgba(255,255,255,.78);
}
.footer-col a:hover{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-contact{
  display:grid;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.footer-contact i{ width: 18px; margin-right: 8px; }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 14px 0 40px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-legal{
  font-size: 12.5px;
  color: rgba(255,255,255,.70);
}
.footer-links{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255,255,255,.72);
}
.footer-links a{ color: rgba(255,255,255,.80); text-decoration:none; }
.footer-links a:hover{ color:#fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-links .sep{ opacity: .55; }

@media (max-width: 980px){
  .footer-columns{ grid-template-columns: 1fr; padding: 38px 0 18px; }
  .footer-bottom{ padding-bottom: 34px; }
}


/* ===== Header hamburger white (mobile) ===== */
header .burger {
  color: #ffffff !important;
  border-color: rgba(255,255,255,.25) !important;
  background: rgba(255,255,255,.06) !important;
}
header .burger i {
  color: #ffffff !important;
}

/* ===== LinkedIn footer button styling ===== */
.footer-brand a[href*="linkedin"] {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-brand a[href*="linkedin"]:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-1px);
}
.footer-brand a[href*="linkedin"] i {
  color: #0A66C2; /* LinkedIn brand blue */
}


/* ===== Mobile panel links white ===== */
.mobile-panel a {
  color: #ffffff !important;
}
.mobile-panel a small {
  color: rgba(255,255,255,.75) !important;
}
