:root {
            --bg-base: #eef2f6;
            --panel: rgba(255, 255, 255, 0.64);
            --panel-strong: rgba(255, 255, 255, 0.82);
            --border: rgba(255, 255, 255, 0.66);
            --text: #172b3a;
            --muted: #4c6677;
            --teal: #1b7788;
            --teal-dark: #134b5c;
            --amber: #d89448;
            --green: #2f8f68;
            --ink-soft: rgba(23, 43, 58, 0.08);
            --shadow: 0 24px 55px -30px rgba(18, 44, 58, 0.45);
        }

body {
            min-height: 100vh;
            overflow-x: hidden;
            background:
                radial-gradient(ellipse at 8% 12%, rgba(255, 246, 223, 0.92) 0%, rgba(255, 246, 223, 0.18) 38%, transparent 66%),
                radial-gradient(ellipse at 88% 8%, rgba(189, 225, 244, 0.82) 0%, rgba(189, 225, 244, 0.2) 42%, transparent 68%),
                radial-gradient(ellipse at 36% 90%, rgba(239, 205, 172, 0.72) 0%, rgba(239, 205, 172, 0.16) 45%, transparent 72%),
                radial-gradient(ellipse at 82% 66%, rgba(196, 231, 236, 0.78) 0%, rgba(196, 231, 236, 0.18) 48%, transparent 74%),
                var(--bg-base);
            color: var(--text);
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            line-height: 1.55;
        }

.brand {
            display: inline-flex;
            align-items: center;
            gap: 11px;
            font-size: 1.08rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: #0f3441;
            /* text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78), 0 0 12px rgba(255, 255, 255, 0.72); */
        }

.brand-mark {
            display: grid;
            width: 42px;
            height: 42px;
            place-items: center;
            border-radius: 16px;
            color: white;
            background: linear-gradient(145deg, var(--teal), #1d5367);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 12px 26px -18px #0d4050;
        }

.nav-links {
            display: flex;
            align-items: center;
            gap: 2px;
            color: #123846;
            font-size: 0.88rem;
            font-weight: 700;
            /* text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82), 0 0 12px rgba(255, 255, 255, 0.72); */
        }

.dropdown {
            position: relative;
        }

*/

        .mega-grid {
            position: relative;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 16px;
        }

.mega-grid {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 180ms ease, transform 180ms ease;
        }

/* mega columns replaced with small cards container */

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

.button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 44px;
            padding: 0 18px;
            border: 1px solid transparent;
            border-radius: 999px;
            cursor: pointer;
            font: inherit;
            font-size: 0.96rem;
            font-weight: 750;
            transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }

.button-secondary {
            color: var(--teal-dark);
            border-color: rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.35);
            backdrop-filter: none;
        }

.hero {
            position: relative;
            overflow: hidden;
            max-width: 760px;
            margin-top: 44px;
            margin-bottom: 30px;
            padding: 46px 0;
            border-radius: 34px;
            isolation: isolate;
        }

.hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -2;
            border-radius: inherit;
            background: none;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

.hero-bg-video {
            position: absolute;
            inset: 0;
            z-index: -3;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: inherit;
            opacity: 0;
            pointer-events: none;
            transition: opacity 900ms ease;
        }

.hero.has-video {
            width: 100vw;
            max-width: none;
            min-height: 620px;
            margin-top: -130px;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            display: grid;
            align-items: center;
            padding: 190px max(22px, calc((100vw - 1180px) / 2)) 82px;
            border-top: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.58);
            border-left: 0;
            border-right: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            backdrop-filter: none;
        }

.hero.has-video::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 70%;
            z-index: -2;
            pointer-events: none;
            opacity: 1;
            /* backdrop-filter: blur(5px); */
            /* -webkit-backdrop-filter: blur(5px);
            mask-image: linear-gradient(90deg, black 30%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
            -webkit-mask-image: linear-gradient(90deg, black 30%, rgba(0, 0, 0, 0.5) 60%, transparent 100%); */
        }

.hero.has-video::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            /* background: linear-gradient(90deg, rgba(238, 242, 246, 0.94) 0%, rgba(238, 242, 246, 0.76) 35%, rgba(238, 242, 246, 0.35) 60%, transparent 88%); */
            /* backdrop-filter: blur(2px); */
        }

.hero.has-video .hero-bg-video.is-active {
            opacity: 1;
        }

.eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            margin-bottom: 18px;
            padding: 7px 13px;
            border: 1px solid rgba(255, 255, 255, 0.68);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.46);
            color: var(--teal);
            font-size: 0.84rem;
            font-weight: 750;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            backdrop-filter: blur(8px);
        }

.pulse {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--green);
            box-shadow: 0 0 0 7px rgba(47, 143, 104, 0.12);
        }

h1 {
            max-width: 640px;
            margin-bottom: 18px;
            padding-bottom: 0.08em;
            color: transparent;
            background: linear-gradient(135deg, #142636 0%, #174d5c 62%, #226b78 100%);
            background-clip: text;
            -webkit-background-clip: text;
            font-size: clamp(3rem, 6vw, 5.25rem);
            font-weight: 850;
            letter-spacing: 0;
            line-height: 1.08;
        }

.hero-slide h2 {
            max-width: 640px;
            margin-bottom: 18px;
            padding-bottom: 0.08em;
            color: transparent;
            background: linear-gradient(135deg, #142636 0%, #174d5c 62%, #226b78 100%);
            background-clip: text;
            -webkit-background-clip: text;
            font-size: clamp(3rem, 6vw, 5.25rem);
            font-weight: 850;
            letter-spacing: 0;
            line-height: 1.08;
        }

.hero-sub {
            max-width: 590px;
            margin-bottom: 28px;
            color: var(--muted);
            font-size: clamp(1.04rem, 1.6vw, 1.2rem);
            font-weight: 480;
        }

.hero.has-video .hero-sub {
            color: #122836;
            font-weight: 550;
            /* text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9); */
        }

.hero.has-video .strip-item {
            background: rgba(255, 255, 255, 0.72);
            border-color: rgba(255, 255, 255, 0.9);
            color: #123846;
            box-shadow: 0 4px 12px rgba(18, 44, 58, 0.05);
        }

.hero.has-video .button-secondary {
            background: rgba(255, 255, 255, 0.72);
            border-color: rgba(255, 255, 255, 0.9);
            color: var(--teal-dark);
            box-shadow: 0 8px 20px -12px rgba(18, 44, 58, 0.3);
        }

.hero-copy {
            position: relative;
            min-height: 335px;
            max-width: 740px;
            padding: 40px 48px;
            border-radius: 30px;
            background: rgb(255 255 255 / 27%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(23px) saturate(140%);
            -webkit-backdrop-filter: blur(24px) saturate(140%);
            /* box-shadow: 0 30px 60px -25px rgba(12, 38, 48, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.45); */
        }

.hero-slide {
            position: absolute;
            inset: 0 auto auto 0;
            width: 100%;
            max-width: 690px;
            opacity: 0;
            transform: translateX(34px);
            pointer-events: none;
            transition: opacity 640ms ease, transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
        }

.hero-slide.is-active {
            position: relative;
            opacity: 1;
            transform: translateX(0);
            pointer-events: auto;
        }

.hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 28px;
        }

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

.strip-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border: 1px solid rgba(255, 255, 255, 0.58);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.38);
            color: #2f5867;
            font-size: 0.86rem;
            font-weight: 680;
        }

.hero-visual {
            position: relative;
            min-height: 430px;
            /* border: 1px solid rgba(255, 255, 255, 0.7); */
            border-radius: 32px;
            overflow: hidden;
            /* background: */
                linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.32)),
                radial-gradient(circle at 80% 20%, rgba(220, 160, 84, 0.18), transparent 32%);
            /* box-shadow: var(--shadow); */
            backdrop-filter: blur(18px);
        }

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

.map-grid {
            position: absolute;
            inset: 0;
            opacity: 0.68;
            background-image:
                linear-gradient(rgba(24, 90, 108, 0.07) 1px, transparent 1px),
                linear-gradient(90deg, rgba(24, 90, 108, 0.07) 1px, transparent 1px);
            background-size: 44px 44px;
            mask-image: radial-gradient(circle at 54% 45%, black 0%, black 54%, transparent 88%);
        }

.route-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

.route-line {
            fill: none;
            stroke: rgba(27, 119, 136, 0.62);
            stroke-width: 10;
            stroke-linecap: round;
            stroke-dasharray: 16 18;
        }

.route-line-secondary {
            fill: none;
            stroke: rgba(216, 148, 72, 0.55);
            stroke-width: 7;
            stroke-linecap: round;
            stroke-dasharray: 3 18;
        }

.vehicle-card {
            position: absolute;
            left: 22px;
            top: 22px;
            width: min(330px, calc(100% - 44px));
            padding: 16px;
            border: 1px solid rgba(255, 255, 255, 0.72);
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.72);
            box-shadow: 0 18px 34px -28px rgba(16, 48, 64, 0.6);
            backdrop-filter: blur(14px);
        }

.vehicle-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 16px;
        }

.vehicle-title {
            font-size: 1rem;
            font-weight: 800;
            color: #183748;
        }

.vehicle-caption {
            color: var(--muted);
            font-size: 0.82rem;
        }

.status-pill {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 10px;
            border-radius: 999px;
            background: rgba(47, 143, 104, 0.12);
            color: #257758;
            font-size: 0.78rem;
            font-weight: 800;
            white-space: nowrap;
        }

.metric-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

.mini-metric {
            min-height: 74px;
            padding: 10px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.62);
            border: 1px solid rgba(255, 255, 255, 0.66);
        }

.mini-metric span {
            display: block;
            color: var(--muted);
            font-size: 0.75rem;
            font-weight: 700;
        }

.mini-metric strong {
            display: block;
            margin-top: 8px;
            color: #183748;
            font-size: 1.18rem;
            line-height: 1;
        }

.share-card {
            position: absolute;
            right: 22px;
            bottom: 22px;
            width: min(345px, calc(100% - 44px));
            padding: 16px;
            border: 1px solid rgba(255, 255, 255, 0.72);
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.7);
            box-shadow: 0 18px 36px -28px rgba(16, 48, 64, 0.6);
            backdrop-filter: blur(14px);
        }

.share-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 14px;
        }

.share-title {
            font-weight: 820;
            color: #183748;
        }

.share-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            min-height: 46px;
            padding: 9px 10px 9px 14px;
            border-radius: 18px;
            background: rgba(23, 77, 92, 0.08);
            color: #315d69;
            font-size: 0.86rem;
            font-weight: 700;
        }

.pin {
            position: absolute;
            display: grid;
            width: 42px;
            height: 42px;
            place-items: center;
            border: 6px solid rgba(255, 255, 255, 0.64);
            border-radius: 999px;
            color: white;
            background: var(--teal);
            box-shadow: 0 12px 28px -18px rgba(10, 42, 52, 0.8);
        }

.pin.pin-one {
            left: 55%;
            top: 31%;
        }

.pin.pin-two {
            left: 68%;
            top: 53%;
            background: var(--amber);
        }

.pin.pin-three {
            left: 38%;
            top: 60%;
            background: var(--green);
        }

.section {
            margin-top: 86px;
        }

.section-head {
            display: grid;
            grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
            align-items: end;
            gap: 34px;
            margin-bottom: 28px;
        }

.section-kicker {
            margin-bottom: 8px;
            color: var(--teal);
            font-size: 0.78rem;
            font-weight: 850;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

h2 {
            max-width: 680px;
            color: #183445;
            font-size: clamp(1.95rem, 3.2vw, 3rem);
            line-height: 1.06;
            letter-spacing: 0;
        }

.section-copy {
            max-width: 650px;
            color: var(--muted);
            font-size: 1rem;
        }

.stat-band {
            position: relative;
            top: -100px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 50px 0px;
            padding: 50px;
            border: 1px solid rgba(255, 255, 255, 0.66);
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.36);
            box-shadow: var(--shadow);
            backdrop-filter: blur(14px);
        }

/* IIoT & Smart Operations Styles */
        .solution-card-link:hover {
            transform: translateY(-3px) scale(1.015);
            background: rgba(255, 255, 255, 0.72) !important;
            box-shadow: 0 10px 24px -6px rgba(18, 44, 58, 0.1) !important;
            border-color: rgba(27, 119, 136, 0.35) !important;
        }

.iiot-features-grid>div {
            transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
        }

.iiot-features-grid>div:hover {
            transform: translateY(-2px);
            border-color: rgba(27, 119, 136, 0.3) !important;
            background: rgba(255, 255, 255, 0.65) !important;
            box-shadow: 0 6px 16px -4px rgba(18, 44, 58, 0.06);
        }

.iiot-telemetry-widget {
            transition: transform 260ms ease, box-shadow 260ms ease;
        }

.iiot-telemetry-widget:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px -15px rgba(9, 37, 48, 0.4) !important;
        }

.solution-card,
        .api-card,
        .contact-panel {
            border: 1px solid rgba(255, 255, 255, 0.66);
            background: var(--panel);
            box-shadow: var(--shadow);
            backdrop-filter: blur(16px);
        }

.stat-card {
            aspect-ratio: 1 / 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 126px;
            padding: 18px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.45);
            border: 1px solid rgba(255, 255, 255, 0.5);

            transition: transform 0.12s cubic-bezier(0.22, 1, 0.36, 1);

            transform-style: preserve-3d;
            will-change: transform;
            transform-origin: center center;
            background-image:
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.35' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
            background-repeat: repeat;
        }

.stat-card:nth-child(1) {
            transform: rotate(-6deg);
        }

.stat-card:nth-child(2) {
            transform: rotate(3deg);
        }

.stat-card:nth-child(3) {
            transform: rotate(-4deg);
        }

.stat-card:nth-child(4) {
            transform: rotate(7deg);
        }

.stat-label {
            margin-bottom: 14px;
            color: var(--teal);
            font-size: 0.78rem;
            font-weight: 850;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

.stat-value {
            color: #173747;
            font-size: 1.75rem;
            font-weight: 850;
            line-height: 1;
        }

.stat-card p {
            margin-top: 10px;
            color: var(--muted);
            font-size: 0.9rem;
        }

.solutions-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

.solution-card {
            display: grid;
            grid-template-columns: 52px minmax(0, 1fr);
            grid-template-areas:
                "icon title"
                "icon copy"
                "list list";
            column-gap: 16px;
            row-gap: 8px;
            min-height: 0;
            padding: 18px;
            border-radius: 24px;
            transition: transform 0.2s ease, background 0.2s ease;
        }

.solution-card:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.76);
        }

.icon-shell {
            grid-area: icon;
            display: grid;
            width: 52px;
            height: 52px;
            margin-bottom: 0;
            place-items: center;
            border-radius: 19px;
            color: var(--teal-dark);
            background: rgba(255, 255, 255, 0.66);
            border: 1px solid rgba(255, 255, 255, 0.72);
        }

.solution-card h3 {
            grid-area: title;
            margin-bottom: 0;
            color: #183445;
            font-size: 1.08rem;
            line-height: 1.2;
        }

.solution-card p {
            grid-area: copy;
            color: var(--muted);
            font-size: 0.92rem;
        }

.feature-list {
            grid-area: list;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 6px;
            padding-top: 12px;
            border-top: 1px solid rgba(23, 43, 58, 0.07);
            list-style: none;
        }

.feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 7px;
            padding: 6px 9px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.46);
            color: #315d69;
            font-size: 0.78rem;
            font-weight: 650;
        }

.feature-list li::before {
            content: "";
            width: 6px;
            height: 6px;
            margin-top: 6px;
            flex: 0 0 auto;
            border-radius: 999px;
            background: var(--amber);
        }

.platform-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
            gap: 16px;
        }

.api-card {
            padding: 24px;
            border-radius: 32px;
        }

.api-card h3 {
            margin-bottom: 10px;
            color: #183445;
            font-size: 1.45rem;
        }

.api-card p {
            color: var(--muted);
        }

.flow-list {
            display: grid;
            gap: 12px;
            margin-top: 22px;
        }

.flow-step {
            display: grid;
            grid-template-columns: 42px minmax(0, 1fr);
            gap: 14px;
            align-items: center;
            min-height: 72px;
            padding: 12px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.48);
            border: 1px solid rgba(255, 255, 255, 0.62);
        }

.step-number {
            display: grid;
            width: 42px;
            height: 42px;
            place-items: center;
            border-radius: 15px;
            color: white;
            background: #174d5e;
            font-weight: 850;
        }

.flow-step strong {
            display: block;
            color: #183445;
        }

.flow-step span {
            color: var(--muted);
            font-size: 0.9rem;
        }

.device-panel {
            position: relative;
            min-height: 390px;
            overflow: hidden;
        }

.device-stack {
            position: absolute;
            inset: 22px;
            display: grid;
            grid-template-columns: 0.92fr 1.08fr;
            gap: 14px;
        }

.device {
            align-self: center;
            min-height: 260px;
            padding: 16px;
            border-radius: 26px;
            background: linear-gradient(160deg, rgba(23, 55, 71, 0.92), rgba(18, 86, 102, 0.92));
            color: white;
            box-shadow: 0 26px 44px -30px rgba(16, 48, 64, 0.8);
        }

.device-screen {
            height: 170px;
            margin-top: 16px;
            border-radius: 24px;
            background:
                linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
                linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
                radial-gradient(circle at 68% 38%, rgba(216, 148, 72, 0.8), transparent 8%),
                radial-gradient(circle at 34% 62%, rgba(116, 204, 177, 0.75), transparent 7%),
                rgba(255, 255, 255, 0.08);
            background-size: 32px 32px, 32px 32px, auto, auto, auto;
        }

.signal-stack {
            display: grid;
            gap: 10px;
            align-content: center;
        }

.signal-card {
            padding: 16px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.65);
        }

.signal-card strong {
            color: #183445;
        }

.signal-card span {
            display: block;
            margin-top: 6px;
            color: var(--muted);
            font-size: 0.88rem;
        }

.contact-panel {
            display: grid;
            grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
            gap: 34px;
            padding: 28px;
            border-radius: 36px;
        }

.contact-list {
            display: grid;
            gap: 14px;
            margin-top: 24px;
        }

.contact-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            color: var(--muted);
            font-size: 0.95rem;
        }

.contact-item strong {
            display: block;
            color: #183445;
        }

.contact-form {
            display: grid;
            gap: 12px;
        }

input,
        textarea {
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.75);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.62);
            color: #183445;
            font: inherit;
            font-size: 0.95rem;
            outline: none;
            padding: 14px 16px;
        }

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

input:focus,
        textarea:focus {
            border-color: rgba(27, 119, 136, 0.45);
            box-shadow: 0 0 0 4px rgba(27, 119, 136, 0.1);
        }

.footer {
            margin-top: 42px;
            padding: 34px;
            border: 1px solid rgba(255, 255, 255, 0.64);
            border-radius: 30px 30px 0 0;
            background: rgba(255, 255, 255, 0.54);
            color: #587484;
            font-size: 0.9rem;
            box-shadow: 0 -18px 52px -44px rgba(18, 44, 58, 0.36);
            backdrop-filter: blur(18px);
        }

.footer-main {
            display: grid;
            grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 1fr));
            gap: 34px;
            align-items: start;
        }

.footer-brand img {
            height: 46px;
            width: auto;
            display: block;
            margin-bottom: 16px;
        }

.footer-brand p,
.footer-contact p {
            color: #587484;
            line-height: 1.75;
        }

.footer-brand p {
            max-width: 440px;
        }

.footer-brand-contact {
            display: grid;
            gap: 6px;
            margin-top: 14px;
            color: #587484;
            font-weight: 700;
        }

.footer-brand-contact a {
            width: fit-content;
            color: #164d5e;
            text-decoration: none;
        }

.footer-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

.footer-column {
            display: grid;
            gap: 10px;
        }

.footer-column h3 {
            margin: 0 0 6px;
            color: #183445;
            font-size: 0.88rem;
            font-weight: 850;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

.footer-column a {
            width: fit-content;
            color: #587484;
            font-weight: 700;
            text-decoration: none;
            transition: color 180ms ease, transform 180ms ease;
        }

.footer-column a:hover,
.footer-links a:hover {
            color: #164d5e;
            transform: translateX(2px);
        }

.footer-contact p {
            margin: 2px 0 0;
            max-width: 260px;
            font-size: 0.86rem;
        }

.footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            margin-top: 32px;
            padding-top: 22px;
            border-top: 1px solid rgba(23, 43, 58, 0.1);
        }

.footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            font-weight: 700;
        }

.footer-links a {
            color: #587484;
            text-decoration: none;
            transition: color 180ms ease, transform 180ms ease;
        }

.toast {
            position: fixed;
            right: 22px;
            bottom: 22px;
            z-index: 50;
            max-width: 340px;
            padding: 14px 16px;
            border: 1px solid rgba(255, 255, 255, 0.72);
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.82);
            color: #183445;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(12px);
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease;
            backdrop-filter: blur(16px);
        }

.toast.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

[data-scroll-reveal] {
            opacity: 0;
            transform: translate3d(0, 42px, 0) scale(0.98);
            transition: opacity 760ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: var(--reveal-delay, 0ms);
            will-change: opacity, transform;
        }

[data-scroll-reveal].is-visible {
            opacity: 1;
            transform: translate3d(0, 0, 0) scale(1);
        }

[data-scroll-reveal="fade-left"] {
            transform: translate3d(-46px, 0, 0) scale(0.98);
        }

[data-scroll-reveal="fade-right"] {
            transform: translate3d(46px, 0, 0) scale(0.98);
        }

[data-scroll-reveal="zoom"] {
            transform: translate3d(0, 24px, 0) scale(0.94);
        }

[data-scroll-reveal].is-visible[data-scroll-reveal="fade-left"],
        [data-scroll-reveal].is-visible[data-scroll-reveal="fade-right"],
        [data-scroll-reveal].is-visible[data-scroll-reveal="zoom"] {
            transform: translate3d(0, 0, 0) scale(1);
        }

.hero-bg-video {
            transform: scale(var(--hero-video-scale, 1));
            transition: opacity 900ms ease, transform 120ms linear;
        }

svg {
            flex: 0 0 auto;
        }

        /* Device Mockups Composition */
        .device-mockups {
            position: relative;
            width: 100%;
            max-width: 540px;
            margin: 0 auto;
            aspect-ratio: 16 / 9;
        }
        
        .laptop-mockup {
            position: absolute;
            top: 0;
            left: 0;
            width: 85%;
            aspect-ratio: 16 / 9;
            background: #000;
            border: 8px solid #2a2a2a;
            border-radius: 12px 12px 0 0;
            border-bottom: 24px solid #333;
            box-shadow: var(--shadow);
            overflow: hidden;
            z-index: 1;
        }
        
        .laptop-mockup::after {
            content: '';
            position: absolute;
            bottom: -16px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 4px;
            background: #555;
            border-radius: 4px;
            z-index: 2;
        }
        
        .laptop-mockup img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            pointer-events: none;
        }
        
        .laptop-mockup img.is-active {
            opacity: 1;
        }
        
        .mobile-mockup img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            display: block;
        }
        
        .mobile-mockup {
            position: absolute;
            bottom: -15%;
            right: 0;
            width: 30%;
            aspect-ratio: 9 / 19;
            background: #000;
            border: 6px solid #1a1a1a;
            border-radius: 20px;
            box-shadow: -10px 10px 30px rgba(0,0,0,0.4);
            overflow: hidden;
            z-index: 2;
        }
        
        .mobile-mockup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 35%;
            height: 12px;
            background: #1a1a1a;
            border-radius: 0 0 8px 8px;
            z-index: 3;
        }

@media (prefers-reduced-motion: reduce) {

            [data-scroll-reveal],
            [data-scroll-reveal].is-visible {
                opacity: 1;
                transform: none;
                transition: none;
            }

            .hero-bg-video {
                transform: none;
                transition: opacity 300ms ease;
            }
        }

@media (max-width: 1120px) {

            .platform-layout,
            .contact-panel {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                min-height: 500px;
            }

            .solutions-grid,
            .stat-band {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .nav-links {
                display: none;
            }

            .mega-menu {
                display: none;
            }

            .site-nav {
                border-radius: 22px;
            }
        }

@media (max-width: 720px) {
            .app-container {
                width: min(100% - 22px, 1320px);
                padding-top: 12px;
            }

            .site-nav {
                top: 10px;
                border-radius: 24px;
            }

            .nav-actions .button-secondary {
                display: none;
            }

            h1 {
                font-size: clamp(3rem, 16vw, 4.25rem);
            }

            .hero-slide h2 {
                font-size: clamp(3rem, 16vw, 4.25rem);
            }

            .hero-visual {
                min-height: 610px;
                border-radius: 30px;
            }

            .hero.has-video {
                min-height: 590px;
                margin-top: -82px;
                padding-top: 132px;
                padding-bottom: 58px;
            }

            .hero-copy {
                min-height: 430px;
                padding: 28px 24px;
                border-radius: 22px;
            }

            .vehicle-card,
            .share-card {
                left: 16px;
                right: 16px;
                width: auto;
            }

            .share-card {
                bottom: 16px;
            }

            .metric-grid,
            .solutions-grid {
                grid-template-columns: 1fr;
            }

            .stat-band {
                grid-template-columns: repeat(2, 1fr);
                padding: 24px 16px;
                gap: 12px;
                margin: 20px 0;
                top: -50px;
                box-sizing: border-box;
                width: 100%;
            }

            .stat-card {
                padding: 12px 10px;
                min-height: 110px;
                border-radius: 16px;
                aspect-ratio: 1 / 1;
                box-sizing: border-box;
                overflow: hidden;
            }
            .stat-card:nth-child(1) { transform: rotate(-2deg); }
            .stat-card:nth-child(2) { transform: rotate(1deg); }
            .stat-card:nth-child(3) { transform: rotate(-1deg); }
            .stat-card:nth-child(4) { transform: rotate(2deg); }
            .stat-card p {
                font-size: clamp(0.6rem, 2.8vw, 0.78rem);
                margin-top: 6px;
                display: -webkit-box;
                -webkit-line-clamp: 4;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .stat-value {
                font-size: clamp(0.9rem, 4.5vw, 1.15rem);
                line-height: 1.1;
                text-align: center;
            }
            .stat-label {
                font-size: clamp(0.6rem, 2.2vw, 0.75rem);
                margin-bottom: 6px;
            }

            .section-head {
                display: block;
            }

            .section-copy {
                margin-top: 12px;
            }

            .device-panel {
                min-height: 640px;
            }

            .device-stack {
                grid-template-columns: 1fr;
                inset: 18px;
            }

            .contact-panel {
                padding: 20px;
                border-radius: 30px;
            }

            .footer {
                padding: 24px;
                border-radius: 24px 24px 0 0;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-bottom {
                display: grid;
                gap: 14px;
            }
        }

/* Solutions Split & List Responsive Architecture */
.solutions-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 960px) {
    .solutions-split {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    /* Target #solutions to insert image between copy and cards on mobile */
    #solutions .solutions-text {
        display: contents;
    }
    #solutions .solutions-split .section-kicker {
        order: 1;
    }
    #solutions .solutions-split h2 {
        order: 2;
    }
    #solutions .solutions-split .section-copy {
        order: 3;
    }
    #solutions .solutions-split .solutions-image {
        order: 4;
        margin: 10px 0;
    }
    #solutions .solutions-split .solutions-list {
        order: 5;
    }

    /* Target #iiot to keep the telemetry console widget image on top */
    #iiot .solutions-image {
        order: -1;
    }
}

.solutions-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 580px) {
    .solutions-list {
        gap: 10px; /* Marginally tighter gap on narrow viewports */
    }
}

/* Solution Card Link styles */
.solution-card-link {
    text-decoration: none;
    display: flex;
    gap: 12px;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.45);
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.solution-card-link .card-icon-wrapper {
    width: 74px;
    min-height: 74px;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.5);
}

.solution-card-link .card-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.solution-card-link .card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0; /* Enable text truncation in flexbox child */
}

.solution-card-link .card-title {
    font-size: 0.95rem;
    color: #183445;
    font-weight: 700;
}

.solution-card-link .card-desc {
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 2px;
    line-height: 1.35;
}

/* Responsive reduction/truncation/hiding of description text */
@media (max-width: 1200px) {
    .solution-card-link .card-desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 960px) {
    .solution-card-link .card-desc {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Transition to vertical (square) layout on mobile screens to preserve 2-in-a-row */
@media (max-width: 768px) {
    .solution-card-link {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 10px;
        gap: 10px;
        justify-content: center;
        border-radius: 18px;
    }
    .solution-card-link .card-icon-wrapper {
        width: 56px;
        min-height: 56px;
        padding: 6px;
        margin: 0 auto;
    }
    .solution-card-link .card-title {
        font-size: 0.86rem;
        line-height: 1.25;
    }
    .solution-card-link .card-desc {
        display: none; /* Hide descriptions to keep card heights uniform and square-like */
    }
}

@media (max-width: 480px) {
    .solution-card-link {
        padding: 12px 6px;
        gap: 6px;
    }
    .solution-card-link .card-icon-wrapper {
        width: 44px;
        min-height: 44px;
        padding: 4px;
    }
    .solution-card-link .card-title {
        font-size: 0.78rem;
    }
}

/* ═══════════════════════════════════════════════════════
   WhatsApp Chat UI — scoped under .wa-ui
   Migrated from wa.html (iframe) to native DOM
   ═══════════════════════════════════════════════════════ */

.wa-ui {
    width: 100%;
    height: 100%;
    background-color: #efeae2;
    background-image: url("../img-blog/wa.jpg");
    background-size: 240px 240px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

.wa-ui *,
.wa-ui *::before,
.wa-ui *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Status bar */
.wa-ui .wa-status-bar {
    height: 20px;
    background: #075E54;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 12px 0;
    font-size: 8px;
    font-weight: 500;
    flex-shrink: 0;
}

.wa-ui .wa-status-bar .wa-icons {
    display: flex;
    gap: 3px;
    align-items: center;
}

/* Chat Header */
.wa-ui .wa-chat-header {
    background: #075E54;
    color: white;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    z-index: 2;
    flex-shrink: 0;
}

.wa-ui .wa-back-btn {
    background: transparent;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0;
}

.wa-ui .wa-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #eceff1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.wa-ui .wa-avatar svg {
    width: 16px;
    height: 16px;
    fill: #546e7a;
}

.wa-ui .wa-contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.wa-ui .wa-contact-name {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wa-ui .wa-contact-status {
    font-size: 8px;
    color: #d1f4ed;
    margin-top: 0;
    transition: all 0.2s ease;
}

.wa-ui .wa-header-actions {
    display: flex;
    gap: 8px;
}

.wa-ui .wa-header-actions svg {
    width: 14px;
    height: 14px;
    fill: white;
    cursor: pointer;
    opacity: 0.9;
}

/* Chat body area */
.wa-ui .wa-chat-container {
    flex: 1;
    padding: 8px 6px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wa-ui .wa-chat-container::-webkit-scrollbar {
    width: 3px;
}
.wa-ui .wa-chat-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Date stamp */
.wa-ui .wa-date-separator {
    align-self: center;
    background: rgba(225, 245, 254, 0.9);
    color: #53636f;
    font-size: 7px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 5px;
    margin: 4px 0;
    box-shadow: 0 1px 1px rgba(0,0,0,0.05);
    text-transform: uppercase;
}

/* Message Bubbles */
.wa-ui .wa-msg-row {
    display: flex;
    width: 100%;
    margin-bottom: 1px;
}

.wa-ui .wa-msg-row.wa-sent {
    justify-content: flex-end;
}

.wa-ui .wa-msg-row.wa-received {
    justify-content: flex-start;
}

.wa-ui .wa-bubble {
    max-width: 82%;
    padding: 4px 7px 3px;
    font-size: 9.5px;
    line-height: 1.35;
    position: relative;
    box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
    display: flex;
    flex-direction: column;
}

.wa-ui .wa-bubble.wa-user-bubble {
    background: #d9fdd3;
    color: #111b21;
    border-radius: 6px 0px 6px 6px;
}

.wa-ui .wa-bubble.wa-bot-bubble {
    background: #ffffff;
    color: #111b21;
    border-radius: 0px 6px 6px 6px;
}

/* Meta (time & ticks) */
.wa-ui .wa-msg-meta {
    display: flex;
    align-self: flex-end;
    align-items: center;
    gap: 2px;
    margin-top: 2px;
    font-size: 7px;
    color: #667781;
    user-select: none;
}

.wa-ui .wa-msg-meta svg {
    width: 10px;
    height: 10px;
}

.wa-ui .wa-tick-blue {
    fill: #53bdeb;
}

.wa-ui .wa-tick-gray {
    fill: #8696a0;
}

/* Bubble pop animation */
.wa-ui .wa-bubble-animate {
    animation: waBubblePop 0.25s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
    transform-origin: top;
    transform: scale(0.9);
    opacity: 0;
}

@keyframes waBubblePop {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Typing indicator */
.wa-ui .wa-typing-bubble {
    background: white;
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    max-width: 50px;
    box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
    margin-top: 2px;
}

.wa-ui .wa-dot {
    width: 5px;
    height: 5px;
    background: #8696a0;
    border-radius: 50%;
    animation: waDotBounce 1.2s infinite ease-in-out;
}

.wa-ui .wa-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.wa-ui .wa-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes waDotBounce {
    0%, 44%, 100% {
        transform: translateY(0);
    }
    22% {
        transform: translateY(-3px);
    }
}

/* Input Bar */
.wa-ui .wa-input-bar {
    background: #f0f2f5;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.wa-ui .wa-input-bar svg {
    width: 14px;
    height: 14px;
    fill: #54656f;
    cursor: pointer;
    flex-shrink: 0;
}

.wa-ui .wa-input-field-container {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 3px 7px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wa-ui .wa-input-field {
    flex: 1;
    border: none;
    outline: none;
    font-size: 9px;
    color: #111b21;
    background: transparent;
    min-height: 16px;
    display: flex;
    align-items: center;
    font-family: inherit;
}

.wa-ui .wa-input-field:empty::before {
    content: "Type a message";
    color: #8696a0;
}

.wa-ui .wa-btn-action {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #00a884;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: background-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.wa-ui .wa-btn-action:active {
    transform: scale(0.9);
}

.wa-ui .wa-btn-action svg {
    width: 12px;
    height: 12px;
    fill: white;
}

/* -------------------------------------------------------
   API Hero Section
   ------------------------------------------------------- */
.api-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.api-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    color: var(--teal);
    font-size: 0.84rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    margin-bottom: 24px;
}

.api-hero-title {
    font-size: clamp(1.95rem, 3.2vw, 3rem);
    line-height: 1.06;
    color: #183445;
    margin-bottom: 18px;
    font-weight: 850;
    letter-spacing: 0;
}

.api-hero-title .text-blue {
    color: var(--teal);
}

.api-hero-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 28px;
    max-width: 90%;
}

.api-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}

.api-hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 0.96rem;
    font-weight: 750;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.api-hero-actions .btn-primary {
    background: linear-gradient(145deg, var(--teal), #1d5367);
    color: white;
    border: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 12px 26px -18px #0d4050;
}

.api-hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 16px 32px -16px #0d4050;
}

.api-hero-actions .btn-outline {
    color: var(--teal-dark);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.api-hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(27, 119, 136, 0.35);
    transform: translateY(-2px);
}

.api-hero-stats {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(14px);
}

.api-stat strong {
    display: block;
    font-size: 1.3rem;
    color: #183748;
    font-weight: 850;
    margin-bottom: 2px;
}

.api-stat span {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 650;
}

/* Code Window */
.code-window {
    background: linear-gradient(160deg, rgba(23, 55, 71, 0.92), rgba(18, 86, 102, 0.92));
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 44px -30px rgba(16, 48, 64, 0.8);
    overflow: hidden;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: left;
}

.code-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.code-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.code-window pre {
    padding: 24px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    overflow-x: auto;
}

/* Syntax Highlighting */
.code-window .keyword { color: #7dd3fc; }
.code-window .string { color: #6ee7b7; }
.code-window .property { color: rgba(255, 255, 255, 0.82); }
.code-window .boolean { color: #c4b5fd; }
.code-window .number { color: #fda4af; }
.code-window .method { color: var(--amber); }
