:root {
    --bg-deep: #07162e;
    --bg-deeper: #040d1f;
    --bg-surface: #0e203d;
    --bg-card: rgba(11, 24, 49, 0.82);
    --bg-card-soft: rgba(255, 255, 255, 0.88);
    --bg-light: #f7fbff;
    --text-primary: #f6f8fc;
    --text-secondary: rgba(236, 242, 255, 0.78);
    --text-dark: #12213d;
    --text-muted: #52627c;
    --line-soft: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(104, 224, 255, 0.26);
    --cyan: #1de5f2;
    --cyan-soft: rgba(29, 229, 242, 0.14);
    --purple: #6e36ef;
    --purple-deep: #30156f;
    --shadow-soft: 0 18px 42px rgba(4, 12, 28, 0.12);
    --shadow-deep: 0 22px 58px rgba(2, 9, 23, 0.48);
    --shadow-premium: 0 30px 80px rgba(2, 9, 23, 0.22);
    --shadow-premium-dark: 0 34px 92px rgba(2, 9, 23, 0.56);
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
    --section-space: clamp(76px, 7vw, 122px);
    --section-space-tight: clamp(64px, 6vw, 96px);
    --radius-sm: 14px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 30px;
    --container: min(1440px, calc(100% - 48px));
    --header-height: 84px;
}

html {
    scroll-padding-top: 112px;
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text-primary);
    background:
        radial-gradient(circle at top left, rgba(29, 229, 242, 0.1), transparent 28%),
        radial-gradient(circle at top right, rgba(110, 54, 239, 0.12), transparent 24%),
        linear-gradient(180deg, #07162e 0%, #041225 100%);
    line-height: 1.5;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 78px 78px;
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
}

body.nav-open {
    overflow: hidden;
}

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 30;
    padding: 12px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-dark);
    transform: translateY(-180%);
    transition: transform 0.25s ease;
}

.skip-link:focus-visible {
    transform: translateY(0);
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 14px 0 0;
}

.site-header.is-scrolled {
    padding-top: 8px;
}

.site-header .container {
    width: min(1500px, calc(100% - 28px));
}

.header-shell {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 70px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 44px rgba(8, 24, 46, 0.16);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    max-width: 322px;
}

.brand img,
.footer-brand img {
    width: 100%;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1 1 auto;
}

.site-nav a {
    position: relative;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-cta {
    flex: 0 0 auto;
}

.nav-toggle {
    display: none;
    position: relative;
    width: 54px;
    height: 54px;
    margin-left: auto;
    border-radius: 18px;
    background: rgba(12, 27, 56, 0.06);
    border: 1px solid rgba(12, 27, 56, 0.08);
}

.nav-toggle span {
    position: absolute;
    left: 15px;
    right: 15px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-dark);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span:nth-child(1) {
    top: 18px;
}

.nav-toggle span:nth-child(2) {
    top: 26px;
}

.nav-toggle span:nth-child(3) {
    top: 34px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 12px;
    font-weight: 800;
    line-height: 1;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--primary {
    color: #ffffff;
    background: linear-gradient(135deg, #6e36ef 0%, #311869 100%);
    box-shadow: 0 18px 32px rgba(74, 30, 171, 0.32);
}

.button--primary:hover,
.button--primary:focus-visible {
    box-shadow: 0 22px 36px rgba(41, 222, 244, 0.22), 0 18px 42px rgba(74, 30, 171, 0.35);
}

.button--light {
    color: var(--text-dark);
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(13, 27, 53, 0.18);
}

.button-icon,
.icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.hero {
    position: relative;
    min-height: 560px;
    margin-top: -84px;
    padding: calc(var(--header-height) + 58px) 0 22px;
    isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-scrim {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-scrim {
    background:
        linear-gradient(90deg, rgba(7, 22, 46, 0.92) 0%, rgba(7, 22, 46, 0.78) 35%, rgba(7, 22, 46, 0.26) 68%, rgba(7, 22, 46, 0.52) 100%),
        linear-gradient(180deg, rgba(7, 22, 46, 0.4) 0%, rgba(7, 22, 46, 0) 35%, rgba(7, 22, 46, 0.54) 100%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    min-height: 370px;
}

.hero-copy {
    max-width: 620px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cyan);
}

.eyebrow::after {
    content: "";
    width: 52px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.eyebrow--light {
    color: #08c8e7;
}

h1,
h2 {
    font-family: "Sora", "Manrope", sans-serif;
    line-height: 1.07;
    letter-spacing: 0;
}

h1 {
    max-width: 13ch;
    font-size: 3.35rem;
}

h2 {
    max-width: 16ch;
    font-size: 2.25rem;
}

.hero-lead,
.section-copy p,
.section-head p {
    font-size: 0.98rem;
}

.hero-lead {
    max-width: 540px;
    margin-top: 14px;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.hero-stats-wrap {
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(117, 84, 255, 0.28);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(44, 21, 93, 0.95), rgba(24, 18, 73, 0.95));
    box-shadow: var(--shadow-deep);
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    min-width: 0;
}

.metric-card > div {
    min-width: 0;
}

.metric-card + .metric-card {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-chip {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(29, 229, 242, 0.12);
    color: var(--cyan);
    box-shadow: inset 0 0 0 1px rgba(29, 229, 242, 0.18);
}

.icon-chip--light {
    background: rgba(29, 229, 242, 0.08);
}

.metric-value {
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
}

.metric-label {
    margin-top: 3px;
    color: var(--text-secondary);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.section {
    position: relative;
    padding: 44px 0;
}

.section--light {
    background:
        radial-gradient(circle at top right, rgba(29, 229, 242, 0.08), transparent 24%),
        linear-gradient(180deg, #fbfdff 0%, #f1f7fd 100%);
    color: var(--text-dark);
}

.section--dark {
    background: linear-gradient(180deg, rgba(6, 18, 38, 0.98), rgba(4, 13, 31, 1));
}

.about {
    padding-top: 52px;
    padding-bottom: 44px;
}

.expertise,
.fleet,
.clients,
.safety {
    padding: 46px 0;
}

.projects {
    padding: 46px 0;
}

.why {
    padding: 36px 0;
}

.about-grid,
.expertise-layout,
.safety-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.expertise-layout {
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
}

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

.about-grid--director {
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
}

.director-card {
    overflow: hidden;
    border: 1px solid rgba(18, 33, 61, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.94));
    box-shadow: 0 30px 68px rgba(8, 24, 46, 0.14);
}

.director-portrait {
    aspect-ratio: 1 / 1.08;
    background: linear-gradient(180deg, rgba(221, 236, 252, 0.86), rgba(246, 250, 255, 0.96));
}

.director-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.director-card__body {
    padding: clamp(20px, 2vw, 28px);
}

.director-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0eaed1;
}

.director-card h3 {
    margin-top: 8px;
    color: var(--text-dark);
    font-family: "Sora", "Manrope", sans-serif;
    font-size: clamp(1.65rem, 2.4vw, 2.15rem);
    line-height: 1.05;
}

.director-role {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.director-quote {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(18, 33, 61, 0.1);
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
}

.director-note {
    max-width: none;
}

.director-note > p {
    color: var(--text-muted);
}

.director-note > p + p {
    margin-top: 16px;
}

.director-signoff {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(18, 33, 61, 0.12);
}

.director-signoff p {
    margin: 0;
}

.director-signoff__line {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.director-signoff__name {
    margin-top: 10px;
    color: var(--text-dark);
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
}

.director-signoff__role {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.mosaic-card,
.project-media,
.fleet-media,
.testimonial-visual,
.safety-image {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.mosaic-card img,
.project-media img,
.fleet-media img,
.fleet-thumb-row img,
.testimonial-visual img,
.safety-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.mosaic-card:hover img,
.project-card:hover img,
.fleet-card:hover .fleet-media img,
.fleet-card:hover .fleet-thumb-row img,
.testimonial-visual:hover img,
.safety-image:hover img {
    transform: scale(1.04);
}

.mosaic-card {
    aspect-ratio: 1 / 0.56;
}

.mosaic-card--tall {
    aspect-ratio: 1 / 0.68;
}

.mosaic-card--wide {
    aspect-ratio: 1 / 0.56;
}

.section-copy h2,
.section-head h2 {
    color: inherit;
}

.section-copy p + p {
    margin-top: 12px;
    color: var(--text-muted);
}

.section-copy--inverted p {
    color: var(--text-secondary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    margin-top: 22px;
}

.feature-pill,
.why-card {
    display: flex;
    gap: 12px;
}

.feature-pill h3,
.why-card h3,
.service-card h3,
.project-card h3,
.fleet-card h3,
.testimonial-card strong,
.commitment-card h3,
.site-footer h3 {
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 0.94rem;
    letter-spacing: 0;
}

.feature-pill p,
.why-card p {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.expertise-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(126, 230, 255, 0.14);
    background: rgba(8, 18, 38, 0.58);
    box-shadow: var(--shadow-deep);
    isolation: isolate;
}

.expertise-art,
.expertise-overlay {
    position: absolute;
    inset: 0;
}

.expertise-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-overlay {
    background:
        linear-gradient(90deg, rgba(6, 18, 38, 0.95) 0%, rgba(6, 18, 38, 0.8) 44%, rgba(6, 18, 38, 0.34) 100%);
}

.service-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 24px;
}

.glass-card {
    padding: 16px;
    border: 1px solid rgba(115, 229, 255, 0.16);
    border-radius: 14px;
    background: rgba(10, 20, 39, 0.68);
    backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.glass-card:hover,
.glass-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(29, 229, 242, 0.34);
    box-shadow: 0 20px 36px rgba(29, 229, 242, 0.12);
}

.service-card {
    color: var(--text-primary);
}

.service-card p {
    margin-top: 8px;
    color: rgba(237, 244, 255, 0.74);
    font-size: 0.84rem;
}

.service-card .icon-chip {
    margin-bottom: 12px;
}

.service-card--wide {
    grid-column: span 2;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-head > div:first-child {
    max-width: 620px;
}

.section-head p,
.section-head .eyebrow {
    max-width: 56ch;
}

.section-head--stacked {
    align-items: center;
}

.section-head--compact {
    margin-bottom: 18px;
}

.carousel {
    overflow: hidden;
    min-width: 0;
}

.carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, calc((100% - 54px) / 4));
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track > * {
    scroll-snap-align: start;
}

.project-card,
.testimonial-card,
.fleet-card {
    overflow: hidden;
    border: 1px solid rgba(15, 39, 75, 0.1);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover,
.testimonial-card:hover,
.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(15, 31, 63, 0.16);
}

.project-media {
    aspect-ratio: 1 / 0.52;
    border-radius: 16px 16px 0 0;
    box-shadow: none;
}

.project-content {
    padding: 16px;
}

.project-content p {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.86rem;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(29, 229, 242, 0.08);
    color: #0a99bc;
    font-size: 0.78rem;
    font-weight: 800;
}

.carousel-controls {
    display: inline-flex;
    gap: 12px;
    flex: 0 0 auto;
}

.control-button {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(18, 33, 61, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-dark);
    box-shadow: 0 12px 30px rgba(7, 22, 46, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.control-button:hover,
.control-button:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(29, 229, 242, 0.3);
    box-shadow: 0 16px 34px rgba(7, 22, 46, 0.14);
}

.control-button--next .icon {
    transform: rotate(0deg);
}

.control-button .icon {
    width: 20px;
    height: 20px;
}

.control-button[data-carousel-prev] .icon {
    transform: rotate(180deg);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(18, 33, 61, 0.18);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.carousel-dot.is-active {
    background: var(--purple);
    transform: scale(1.18);
}

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

.fleet-card {
    background: rgba(11, 24, 49, 0.96);
    border: 1px solid rgba(107, 229, 255, 0.16);
    color: var(--text-primary);
    box-shadow: var(--shadow-deep);
}

.fleet-media {
    aspect-ratio: 1 / 0.44;
    border-radius: 16px 16px 0 0;
    box-shadow: none;
}

.fleet-thumb-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px 16px 0;
}

.fleet-thumb-row img {
    aspect-ratio: 1 / 0.52;
    border-radius: 10px;
    overflow: hidden;
}

.fleet-content {
    padding: 16px;
}

.fleet-content .icon-chip {
    margin-bottom: 12px;
}

.detail-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 0.86rem;
}

.detail-list li {
    position: relative;
    padding-left: 18px;
}

.detail-list li::before {
    content: "";
    position: absolute;
    top: 0.78em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--cyan);
}

.why-shell {
    padding: 22px 28px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

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

.why-card {
    flex-direction: column;
    padding: 8px 8px 4px 0;
}

.why-card:not(:last-child) {
    border-right: 1px solid rgba(18, 33, 61, 0.08);
    padding-right: 18px;
}

.clients {
    overflow: hidden;
    isolation: isolate;
}

.clients-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 13, 31, 0.88), rgba(4, 13, 31, 0.66)),
        url("../Websitephotos/hero-power-grid-team.webp") center/cover no-repeat;
    opacity: 0.24;
    z-index: 0;
}

.clients-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 28px;
    align-items: center;
}

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

.logo-card {
    display: grid;
    place-items: center;
    min-height: 72px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
}

.logo-card img {
    max-height: 38px;
    object-fit: contain;
}

.check-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    color: var(--text-secondary);
}

.check-list li {
    position: relative;
    padding-left: 30px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.36em;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(29, 229, 242, 0.5);
    border-radius: 999px;
    box-shadow: inset 0 0 0 4px transparent;
}

.check-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 0.78em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--cyan);
}

.safety-visual {
    position: relative;
}

.safety-image {
    aspect-ratio: 1 / 0.5;
}

.commitment-card {
    position: absolute;
    right: clamp(18px, 4vw, 28px);
    bottom: clamp(18px, 3vw, 28px);
    max-width: 310px;
    padding: 18px;
    border: 1px solid rgba(117, 229, 255, 0.16);
    border-radius: 16px;
    background: rgba(10, 20, 39, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-deep);
}

.commitment-card p {
    margin-top: 8px;
    color: var(--text-secondary);
}

.check-list--compact {
    gap: 8px;
    margin-top: 12px;
    font-size: 0.84rem;
}

.testimonials {
    padding-top: 34px;
    padding-bottom: 42px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.64fr);
    gap: 22px;
    align-items: stretch;
}

.testimonials-grid > * {
    min-width: 0;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 18px;
    background: rgba(11, 24, 49, 0.96);
    border: 1px solid rgba(107, 229, 255, 0.16);
    color: var(--text-primary);
    box-shadow: var(--shadow-deep);
}

.testimonial-quote {
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonial-quote::before {
    content: "\201C";
    display: block;
    margin-bottom: 6px;
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 2.1rem;
    line-height: 0.8;
    color: var(--cyan);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: contain;
    background: #ffffff;
    padding: 8px;
}

.testimonial-author span {
    display: block;
    color: var(--text-secondary);
}

.testimonial-visual {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 0.58;
}

.cta {
    padding-top: 0;
    background: linear-gradient(180deg, rgba(4, 13, 31, 1) 0%, rgba(4, 13, 31, 1) 100%);
}

.cta-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 18px 24px;
    border-radius: 18px;
    background:
        radial-gradient(circle at left top, rgba(29, 229, 242, 0.16), transparent 28%),
        linear-gradient(135deg, #2a1a69 0%, #4d2298 48%, #211249 100%);
    box-shadow: var(--shadow-deep);
}

.cta-mark {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.cta-copy h2 {
    max-width: 18ch;
    font-size: 2rem;
}

.cta-copy p {
    margin-top: 10px;
    color: rgba(244, 247, 255, 0.82);
}

.site-footer {
    padding: 34px 0 18px;
    background: linear-gradient(180deg, rgba(4, 13, 31, 1) 0%, #030a18 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
    gap: 26px;
}

.footer-brand {
    max-width: 330px;
}

.footer-brand p {
    margin-top: 12px;
    color: var(--text-secondary);
}

.footer-links,
.contact-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
    color: var(--text-secondary);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.contact-list a:hover,
.contact-list a:focus-visible {
    color: #ffffff;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social-button {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.social-button:hover,
.social-button:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(29, 229, 242, 0.34);
    background: rgba(29, 229, 242, 0.1);
}

.social-button--whatsapp {
    border-color: rgba(37, 211, 102, 0.34);
    background: rgba(37, 211, 102, 0.14);
    color: #dfffea;
}

.social-button--whatsapp:hover,
.social-button--whatsapp:focus-visible {
    border-color: rgba(37, 211, 102, 0.64);
    background: rgba(37, 211, 102, 0.22);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(236, 242, 255, 0.7);
    font-size: 0.82rem;
}

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1180px) {
    .header-shell {
        gap: 18px;
    }

    .brand {
        max-width: 280px;
    }

    .site-nav {
        gap: 16px;
    }

    .feature-grid,
    .fleet-grid,
    .why-grid,
    .logo-wall,
    .footer-grid,
    .testimonials-grid,
    .clients-layout,
    .about-grid,
    .expertise-layout,
    .safety-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        min-height: 620px;
    }

    h1 {
        font-size: 3.25rem;
    }

    h2 {
        font-size: 2.15rem;
    }

    .hero-stats-wrap {
        margin-top: -36px;
    }

    .stats-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metric-card:nth-child(3) {
        border-left: none;
    }

    .metric-card:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .logo-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .carousel-track {
        grid-auto-columns: minmax(280px, calc((100% - 20px) / 2));
    }

    .why-card:not(:last-child) {
        border-right: none;
        padding-right: 0;
    }

    .cta-shell {
        grid-template-columns: auto 1fr;
    }

    .cta-action {
        grid-column: 1 / -1;
    }

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

@media (max-width: 960px) {
    :root {
        --container: min(calc(100% - 24px), 100%);
    }

    .site-header {
        padding-top: 12px;
    }

    .header-shell {
        position: relative;
        justify-content: space-between;
        min-height: 64px;
        padding: 10px 14px;
        overflow: visible;
    }

    .brand {
        max-width: 220px;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 24px 44px rgba(8, 24, 46, 0.18);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 14px 12px;
        border-radius: 16px;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
        background: rgba(18, 33, 61, 0.05);
    }

    .site-nav a::after {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        border-radius: 14px;
        z-index: 2;
    }

    .hero {
        min-height: 0;
        padding: calc(var(--header-height) + 58px) 0 22px;
    }

    .hero-grid {
        min-height: 400px;
    }

    h1 {
        font-size: 2.85rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 58px 0;
    }

    .about {
        padding-top: 68px;
    }

    .hero-copy,
    .section-head > div:first-child {
        max-width: 100%;
    }

    .about-grid,
    .expertise-layout,
    .safety-layout,
    .fleet-grid,
    .why-grid,
    .clients-layout,
    .testimonials-grid,
    .footer-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

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

    .service-card--wide {
        grid-column: auto;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
        gap: 14px;
    }

    .logo-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-visual {
        aspect-ratio: 1 / 0.62;
    }

    .commitment-card {
        position: static;
        max-width: none;
        margin-top: 18px;
    }

    .cta-shell {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .cta-mark {
        width: 56px;
        height: 56px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 76px;
        --container: min(calc(100% - 18px), 100%);
    }

    .site-header .container {
        width: calc(100% - 18px);
    }

    .header-shell {
        width: 100%;
        max-width: 100%;
    }

    .brand {
        width: min(190px, calc(100% - 58px));
        max-width: 190px;
    }

    .nav-toggle {
        position: fixed;
        top: 26px;
        right: 18px;
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 16px;
        background: rgba(12, 27, 56, 0.08);
        transform: none;
        box-shadow: inset 0 0 0 1px rgba(12, 27, 56, 0.1);
    }

    .site-nav {
        position: fixed;
        top: 82px;
        left: 9px;
        right: 9px;
    }

    .nav-toggle span {
        left: 13px;
        right: 13px;
        background: #2c1269;
    }

    .hero {
        margin-top: -76px;
        padding-top: calc(var(--header-height) + 46px);
    }

    .hero-scrim {
        background:
            linear-gradient(180deg, rgba(7, 22, 46, 0.72) 0%, rgba(7, 22, 46, 0.92) 48%, rgba(7, 22, 46, 0.98) 100%);
    }

    .hero-grid {
        min-height: 0;
        padding-bottom: 18px;
    }

    h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 1.72rem;
    }

    .eyebrow {
        margin-bottom: 10px;
        font-size: 0.72rem;
    }

    .hero-lead,
    .section-copy p,
    .section-head p {
        font-size: 0.92rem;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-lead {
        max-width: 32ch;
    }

    .hero-actions .button,
    .cta-action .button {
        width: 100%;
    }

    .carousel-track {
        grid-auto-columns: 88%;
    }

    .stats-band {
        padding: 7px;
        border-radius: 18px;
    }

    .metric-card {
        display: grid;
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 7px;
        padding: 9px 6px;
    }

    .icon-chip {
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }

    .metric-value {
        font-size: 1.38rem;
    }

    .metric-label {
        font-size: 0.66rem;
        line-height: 1.15;
    }

    .about {
        padding-top: 50px;
    }

    .about-mosaic {
        grid-template-columns: 1fr;
    }

    .mosaic-card,
    .mosaic-card--tall,
    .mosaic-card--wide,
    .safety-image,
    .testimonial-visual {
        aspect-ratio: 1 / 0.8;
    }

    .feature-grid {
        gap: 16px;
    }

    .project-content,
    .fleet-content,
    .testimonial-card,
    .glass-card {
        padding: 16px;
    }

    .logo-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .logo-card {
        min-height: 62px;
        padding: 8px;
        border-radius: 12px;
    }

    .logo-card img {
        max-height: 34px;
    }

    .cta-shell {
        padding: 18px;
    }
}

@media (min-width: 961px) {
    .site-header {
        padding-top: 12px;
    }

    .header-shell {
        min-height: 64px;
        padding: 8px 18px;
    }

    .brand {
        max-width: 305px;
    }

    .button {
        min-height: 42px;
        padding: 0 18px;
    }

    .hero {
        min-height: 520px;
        padding: calc(var(--header-height) + 40px) 0 16px;
    }

    .hero-grid {
        min-height: 318px;
    }

    h1 {
        max-width: 15.2ch;
        font-size: 3.18rem;
    }

    h2 {
        font-size: 2.05rem;
    }

    .hero-lead {
        margin-top: 12px;
    }

    .hero-actions {
        margin-top: 16px;
    }

    .stats-band {
        padding: 6px;
    }

    .metric-card {
        gap: 12px;
        padding: 8px 14px;
    }

    .icon-chip {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .metric-value {
        font-size: 1.48rem;
    }

    .metric-label {
        font-size: 0.82rem;
        line-height: 1.22;
    }

    .section {
        padding: 34px 0;
    }

    .about {
        padding-top: 38px;
        padding-bottom: 32px;
    }

    .expertise,
    .fleet,
    .clients,
    .safety,
    .projects {
        padding: 34px 0;
    }

    .why {
        padding: 26px 0;
    }

    .about-grid,
    .expertise-layout,
    .safety-layout {
        gap: 34px;
    }

    .mosaic-card,
    .mosaic-card--wide {
        aspect-ratio: 1 / 0.48;
    }

    .mosaic-card--tall {
        aspect-ratio: 1 / 0.56;
    }

    .section-head {
        margin-bottom: 18px;
    }

    .feature-grid {
        gap: 10px 16px;
        margin-top: 16px;
    }

    .feature-pill,
    .why-card {
        gap: 9px;
    }

    .feature-pill h3,
    .why-card h3,
    .service-card h3,
    .project-card h3,
    .fleet-card h3,
    .testimonial-card strong,
    .commitment-card h3,
    .site-footer h3 {
        font-size: 0.88rem;
    }

    .feature-pill p,
    .why-card p {
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .service-grid {
        gap: 10px;
        padding: 18px;
    }

    .glass-card {
        padding: 12px;
    }

    .service-card .icon-chip {
        margin-bottom: 8px;
    }

    .service-card p {
        display: -webkit-box;
        margin-top: 6px;
        overflow: hidden;
        color: rgba(237, 244, 255, 0.74);
        font-size: 0.78rem;
        line-height: 1.36;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .project-media {
        aspect-ratio: 1 / 0.42;
    }

    .project-content,
    .fleet-content,
    .testimonial-card {
        padding: 12px;
    }

    .project-content p {
        display: -webkit-box;
        margin-top: 6px;
        overflow: hidden;
        font-size: 0.78rem;
        line-height: 1.35;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .project-tag {
        margin-top: 8px;
        padding: 5px 8px;
        font-size: 0.72rem;
    }

    .carousel-dots {
        margin-top: 6px;
    }

    .fleet-grid {
        gap: 16px;
    }

    .fleet-media {
        aspect-ratio: 1 / 0.34;
    }

    .fleet-thumb-row {
        gap: 6px;
        padding: 6px 12px 0;
    }

    .fleet-thumb-row img {
        aspect-ratio: 1 / 0.4;
    }

    .fleet-content .icon-chip {
        margin-bottom: 8px;
    }

    .detail-list {
        gap: 5px;
        margin-top: 8px;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .why-shell {
        padding: 18px 22px;
    }

    .why-grid {
        gap: 10px;
    }

    .why-card {
        padding: 4px 6px 0 0;
    }

    .why-card:not(:last-child) {
        padding-right: 12px;
    }

    .clients-layout {
        gap: 22px;
    }

    .logo-wall {
        gap: 10px;
    }

    .logo-card {
        min-height: 62px;
        padding: 8px;
    }

    .logo-card img {
        max-height: 32px;
    }

    .check-list {
        gap: 8px;
        margin-top: 12px;
        font-size: 0.86rem;
    }

    .safety-image {
        aspect-ratio: 1 / 0.42;
    }

    .commitment-card {
        max-width: 280px;
        padding: 14px;
    }

    .check-list--compact {
        gap: 6px;
        margin-top: 10px;
        font-size: 0.78rem;
    }

    .testimonials {
        padding-top: 24px;
        padding-bottom: 30px;
    }

    .testimonials-grid {
        gap: 18px;
    }

    .testimonial-quote {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .testimonial-quote::before {
        margin-bottom: 4px;
        font-size: 1.7rem;
    }

    .testimonial-author {
        gap: 8px;
        margin-top: 12px;
        padding-top: 10px;
    }

    .testimonial-author img {
        width: 38px;
        height: 38px;
        padding: 7px;
    }

    .cta-shell {
        gap: 16px;
        padding: 14px 20px;
    }

    .cta-mark {
        width: 52px;
        height: 52px;
    }

    .cta-copy h2 {
        font-size: 1.65rem;
    }

    .cta-copy p {
        margin-top: 6px;
        font-size: 0.9rem;
    }

    .site-footer {
        padding: 24px 0 14px;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer-brand p,
    .footer-links,
    .footer-contact {
        margin-top: 12px;
    }

    .social-links {
        margin-top: 12px;
    }

    .footer-bottom {
        margin-top: 18px;
        padding-top: 14px;
    }
}

/* Premium elevation layer: preserves the existing identity while restoring space, depth, and motion rhythm. */
body {
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

body::before {
    background-size: 92px 92px;
    opacity: 0.16;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.12;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1.6px),
        radial-gradient(circle at 70% 50%, rgba(29, 229, 242, 0.18) 0 1px, transparent 1.7px);
    background-size: 34px 34px, 58px 58px;
    mix-blend-mode: soft-light;
}

main {
    position: relative;
    overflow: hidden;
}

.site-header {
    padding-top: 18px;
    transition: padding 0.38s var(--ease-premium), filter 0.38s var(--ease-premium);
}

.site-header.is-scrolled {
    padding-top: 10px;
    filter: drop-shadow(0 18px 34px rgba(4, 13, 31, 0.18));
}

.site-header .container {
    width: min(1540px, calc(100% - 36px));
}

.header-shell {
    gap: clamp(22px, 2.4vw, 42px);
    min-height: 76px;
    padding: 12px clamp(18px, 1.8vw, 30px);
    border-color: rgba(255, 255, 255, 0.42);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 58px rgba(8, 24, 46, 0.18);
    transition:
        min-height 0.38s var(--ease-premium),
        padding 0.38s var(--ease-premium),
        border-color 0.38s var(--ease-premium),
        background-color 0.38s var(--ease-premium),
        box-shadow 0.38s var(--ease-premium),
        transform 0.38s var(--ease-premium);
}

.site-header.is-scrolled .header-shell {
    min-height: 66px;
    padding-top: 9px;
    padding-bottom: 9px;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 52px rgba(8, 24, 46, 0.2);
}

.brand {
    max-width: 332px;
    transition: max-width 0.38s var(--ease-premium), transform 0.38s var(--ease-premium);
}

.site-header.is-scrolled .brand {
    max-width: 306px;
}

.site-nav {
    gap: clamp(18px, 1.6vw, 32px);
}

.site-nav a {
    padding: 10px 0;
    color: rgba(18, 33, 61, 0.88);
    transition: color 0.28s var(--ease-premium), transform 0.28s var(--ease-premium);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #2b146f;
    transform: translateY(-1px);
}

.button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 14px;
    transform: translate3d(var(--magnet-x, 0px), var(--magnet-y, 0px), 0);
    transition:
        transform 0.28s var(--ease-premium),
        box-shadow 0.28s var(--ease-premium),
        border-color 0.28s var(--ease-premium),
        background-color 0.28s var(--ease-premium);
}

.button::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 0;
    opacity: 0;
    background:
        radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.24), transparent 34%),
        linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.18) 45%, transparent 72%);
    transform: translateX(-18%);
    transition: opacity 0.34s var(--ease-premium), transform 0.5s var(--ease-premium);
}

.button > * {
    position: relative;
    z-index: 1;
}

.button:hover,
.button:focus-visible {
    transform: translate3d(var(--magnet-x, 0px), calc(var(--magnet-y, 0px) - 3px), 0);
}

.button:hover::before,
.button:focus-visible::before {
    opacity: 1;
    transform: translateX(0);
}

.button--primary {
    background:
        radial-gradient(circle at 18% 0%, rgba(29, 229, 242, 0.24), transparent 34%),
        linear-gradient(135deg, #7338f2 0%, #2e1569 100%);
    box-shadow: 0 22px 42px rgba(74, 30, 171, 0.34);
}

.button--light:hover,
.button--light:focus-visible {
    box-shadow: 0 22px 42px rgba(13, 27, 53, 0.22);
}

.hero {
    min-height: clamp(690px, 88vh, 860px);
    padding: calc(var(--header-height) + 92px) 0 48px;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    pointer-events: none;
    filter: blur(16px);
}

.hero::before {
    top: 17%;
    left: -12%;
    width: clamp(420px, 58vw, 860px);
    height: clamp(120px, 15vw, 220px);
    background: linear-gradient(104deg, transparent 8%, rgba(29, 229, 242, 0.18) 42%, transparent 82%);
    transform: rotate(-8deg);
    animation: ambientPulse 9s var(--ease-premium) infinite alternate;
}

.hero::after {
    right: -18%;
    bottom: 14%;
    width: clamp(440px, 62vw, 920px);
    height: clamp(150px, 18vw, 260px);
    background: linear-gradient(118deg, transparent 10%, rgba(110, 54, 239, 0.16) 48%, transparent 84%);
    transform: rotate(10deg);
    animation: ambientPulse 11s var(--ease-premium) infinite alternate-reverse;
}

.hero-media {
    transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.035);
    transform-origin: center;
    will-change: transform;
}

.hero-media img {
    animation: heroDrift 18s var(--ease-premium) infinite alternate;
}

.hero-scrim {
    background:
        radial-gradient(circle at 24% 26%, rgba(29, 229, 242, 0.16), transparent 30%),
        radial-gradient(circle at 78% 68%, rgba(110, 54, 239, 0.18), transparent 28%),
        linear-gradient(90deg, rgba(4, 13, 31, 0.96) 0%, rgba(7, 22, 46, 0.84) 38%, rgba(7, 22, 46, 0.22) 72%, rgba(4, 13, 31, 0.54) 100%),
        linear-gradient(180deg, rgba(4, 13, 31, 0.58) 0%, rgba(7, 22, 46, 0.02) 42%, rgba(4, 13, 31, 0.78) 100%);
}

.hero-grid {
    min-height: clamp(470px, 56vh, 620px);
}

.hero-copy {
    max-width: 700px;
}

h1 {
    max-width: 14.8ch;
    font-size: clamp(3.35rem, 4.6vw, 5.25rem);
    line-height: 0.99;
}

h2 {
    max-width: 17ch;
    font-size: clamp(2.35rem, 3vw, 3.6rem);
    line-height: 1.02;
}

.hero-lead,
.section-copy p,
.section-head p {
    font-size: clamp(1rem, 0.95vw, 1.08rem);
    line-height: 1.75;
}

.hero-lead {
    max-width: 620px;
    margin-top: 24px;
}

.hero-actions {
    gap: 18px;
    margin-top: 32px;
}

.hero-stats-wrap {
    margin-top: -38px;
}

.stats-band {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 10px;
    border-color: rgba(117, 84, 255, 0.34);
    border-radius: 22px;
    background:
        radial-gradient(circle at var(--pointer-x, 18%) var(--pointer-y, 30%), rgba(29, 229, 242, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(46, 21, 97, 0.94), rgba(17, 27, 75, 0.96));
    box-shadow: var(--shadow-premium-dark);
}

.metric-card {
    gap: 16px;
    padding: clamp(16px, 1.5vw, 24px) clamp(16px, 1.7vw, 26px);
}

.icon-chip {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 42%),
        rgba(29, 229, 242, 0.12);
}

.metric-value {
    font-size: clamp(1.75rem, 2vw, 2.35rem);
}

.metric-label {
    margin-top: 6px;
}

.section {
    padding: var(--section-space) 0;
    overflow: hidden;
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1180px, calc(100% - 48px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(29, 229, 242, 0.24), rgba(255, 255, 255, 0.08), transparent);
    opacity: 0.75;
}

.section--light {
    background:
        radial-gradient(circle at 86% 8%, rgba(29, 229, 242, 0.1), transparent 26%),
        radial-gradient(circle at 8% 96%, rgba(110, 54, 239, 0.08), transparent 30%),
        linear-gradient(180deg, #fcfeff 0%, #f2f8fe 100%);
}

.section--dark {
    background:
        radial-gradient(circle at 86% 12%, rgba(29, 229, 242, 0.08), transparent 24%),
        radial-gradient(circle at 8% 86%, rgba(110, 54, 239, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(6, 18, 38, 0.99), rgba(4, 13, 31, 1));
}

.about {
    padding-top: clamp(96px, 8vw, 138px);
    padding-bottom: var(--section-space);
}

.expertise,
.fleet,
.clients,
.safety,
.projects {
    padding: var(--section-space) 0;
}

.why {
    padding: var(--section-space-tight) 0;
}

.testimonials {
    padding-top: var(--section-space-tight);
    padding-bottom: var(--section-space);
}

.about-grid,
.expertise-layout,
.safety-layout {
    gap: clamp(52px, 6vw, 96px);
}

.expertise-layout {
    grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.36fr);
}

.about-mosaic {
    gap: 20px;
}

.mosaic-card,
.project-media,
.fleet-media,
.testimonial-visual,
.safety-image {
    border-radius: 22px;
}

.mosaic-card,
.project-card,
.fleet-card,
.testimonial-card,
.why-card,
.feature-pill,
.glass-card,
.logo-card,
.commitment-card,
.cta-shell {
    position: relative;
    isolation: isolate;
}

.project-card::before,
.fleet-card::before,
.testimonial-card::before,
.why-card::before,
.feature-pill::before,
.glass-card::before,
.logo-card::before,
.commitment-card::before,
.cta-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(29, 229, 242, 0.15), transparent 36%);
    transition: opacity 0.32s var(--ease-premium);
}

.project-card > *,
.fleet-card > *,
.testimonial-card > *,
.why-card > *,
.feature-pill > *,
.glass-card > *,
.logo-card > *,
.commitment-card > *,
.cta-shell > * {
    position: relative;
    z-index: 1;
}

.project-card:hover::before,
.fleet-card:hover::before,
.testimonial-card:hover::before,
.why-card:hover::before,
.feature-pill:hover::before,
.glass-card:hover::before,
.logo-card:hover::before,
.commitment-card:hover::before,
.cta-shell:hover::before {
    opacity: 1;
}

.mosaic-card img,
.project-media img,
.fleet-media img,
.fleet-thumb-row img,
.testimonial-visual img,
.safety-image img {
    transition: transform 0.7s var(--ease-premium), filter 0.7s var(--ease-premium);
}

.mosaic-card:hover img,
.project-card:hover img,
.fleet-card:hover .fleet-media img,
.fleet-card:hover .fleet-thumb-row img,
.testimonial-visual:hover img,
.safety-image:hover img {
    transform: scale(1.065);
    filter: saturate(1.04) contrast(1.03);
}

.section-copy p + p {
    margin-top: 18px;
}

.feature-grid {
    gap: 20px 26px;
    margin-top: 32px;
}

.feature-pill {
    gap: 16px;
    padding: 14px 12px;
    border-radius: 18px;
    transition: transform 0.3s var(--ease-premium), background-color 0.3s var(--ease-premium);
}

.feature-pill:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.56);
}

.feature-pill h3,
.why-card h3,
.service-card h3,
.project-card h3,
.fleet-card h3,
.testimonial-card strong,
.commitment-card h3,
.site-footer h3 {
    font-size: 1rem;
    line-height: 1.28;
}

.feature-pill p,
.why-card p {
    margin-top: 8px;
    font-size: 0.93rem;
    line-height: 1.62;
}

.expertise-panel {
    border-radius: 28px;
    border-color: rgba(126, 230, 255, 0.2);
    box-shadow: var(--shadow-premium-dark);
}

.expertise-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%),
        radial-gradient(circle at var(--pointer-x, 70%) var(--pointer-y, 24%), rgba(29, 229, 242, 0.18), transparent 26%);
}

.service-grid {
    gap: 16px;
    padding: clamp(24px, 2.8vw, 42px);
}

.glass-card {
    padding: clamp(18px, 1.7vw, 24px);
    border-radius: 18px;
    background: rgba(8, 20, 42, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 18px 42px rgba(2, 9, 23, 0.2);
    transition:
        transform 0.35s var(--ease-premium),
        box-shadow 0.35s var(--ease-premium),
        border-color 0.35s var(--ease-premium),
        background-color 0.35s var(--ease-premium);
}

.glass-card:hover,
.glass-card:focus-within {
    transform: translateY(-7px);
    border-color: rgba(29, 229, 242, 0.38);
    background: rgba(9, 24, 48, 0.82);
    box-shadow: 0 26px 48px rgba(29, 229, 242, 0.12), 0 26px 58px rgba(2, 9, 23, 0.28);
}

.service-card p {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.section-head {
    gap: clamp(24px, 3vw, 48px);
    margin-bottom: clamp(34px, 3.4vw, 56px);
}

.section-head > div:first-child {
    max-width: 720px;
}

.carousel-track {
    grid-auto-columns: minmax(310px, calc((100% - 78px) / 4));
    gap: 26px;
    padding: 4px 2px 20px;
    scroll-padding-inline: 2px;
}

.project-card,
.testimonial-card,
.fleet-card {
    border-radius: 22px;
    box-shadow: var(--shadow-premium);
    transition:
        transform 0.34s var(--ease-premium),
        box-shadow 0.34s var(--ease-premium),
        border-color 0.34s var(--ease-premium);
}

.project-card:hover,
.testimonial-card:hover,
.fleet-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 34px 70px rgba(15, 31, 63, 0.2);
}

.project-media {
    aspect-ratio: 1 / 0.6;
    border-radius: 22px 22px 0 0;
}

.project-content,
.fleet-content,
.testimonial-card {
    padding: clamp(20px, 2vw, 28px);
}

.project-content p {
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.62;
}

.project-tag {
    margin-top: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(29, 229, 242, 0.12);
}

.fleet-grid {
    gap: clamp(22px, 2.4vw, 34px);
}

.fleet-card {
    border-color: rgba(107, 229, 255, 0.2);
}

.fleet-media {
    aspect-ratio: 1 / 0.56;
    border-radius: 22px 22px 0 0;
}

.fleet-thumb-row {
    gap: 10px;
    padding: 10px 20px 0;
}

.fleet-thumb-row img {
    aspect-ratio: 1 / 0.56;
    border-radius: 14px;
}

.detail-list {
    gap: 10px;
    margin-top: 16px;
    font-size: 0.93rem;
    line-height: 1.6;
}

.why-shell {
    padding: clamp(28px, 3.3vw, 48px);
    border: 1px solid rgba(18, 33, 61, 0.08);
    border-radius: 28px;
    box-shadow: var(--shadow-premium);
}

.why-grid {
    gap: 18px;
}

.why-card {
    padding: 6px 18px 4px 0;
    transition: transform 0.3s var(--ease-premium), border-color 0.3s var(--ease-premium);
}

.why-card:hover {
    transform: translateY(-5px);
}

.clients {
    padding: clamp(92px, 8vw, 132px) 0;
}

.clients-backdrop {
    opacity: 0.3;
    transform: translate3d(0, var(--parallax-soft, 0px), 0) scale(1.04);
    will-change: transform;
}

.clients::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(4, 13, 31, 0.84));
}

.clients-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(36px, 4vw, 72px);
}

.logo-wall {
    gap: clamp(14px, 1.4vw, 22px);
}

.logo-card {
    min-height: clamp(104px, 8vw, 132px);
    padding: clamp(16px, 1.6vw, 24px);
    border-color: rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    background:
        radial-gradient(circle at 30% 0%, rgba(29, 229, 242, 0.07), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.94));
    box-shadow: 0 24px 52px rgba(2, 9, 23, 0.18);
    transition:
        transform 0.34s var(--ease-premium),
        box-shadow 0.34s var(--ease-premium),
        border-color 0.34s var(--ease-premium);
}

.logo-card:hover {
    transform: translateY(-7px);
    border-color: rgba(29, 229, 242, 0.34);
    box-shadow: 0 32px 66px rgba(2, 9, 23, 0.24);
}

.logo-card img {
    width: min(88%, 220px);
    max-height: 72px;
    object-fit: contain;
    transition: transform 0.34s var(--ease-premium), filter 0.34s var(--ease-premium);
}

.logo-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.06);
}

.safety-image {
    aspect-ratio: 1 / 0.62;
}

.commitment-card {
    right: clamp(22px, 4vw, 40px);
    bottom: clamp(22px, 4vw, 40px);
    max-width: 340px;
    padding: 24px;
    border-radius: 22px;
}

.testimonials-grid {
    gap: clamp(24px, 3vw, 40px);
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    margin-top: 22px;
    padding-top: 18px;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
}

.testimonial-visual {
    aspect-ratio: 1 / 0.68;
}

.cta {
    padding-top: clamp(26px, 4vw, 60px);
    padding-bottom: var(--section-space-tight);
}

.cta-shell {
    gap: clamp(22px, 3vw, 42px);
    padding: clamp(28px, 3vw, 44px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    background:
        radial-gradient(circle at var(--pointer-x, 10%) var(--pointer-y, 0%), rgba(29, 229, 242, 0.2), transparent 34%),
        radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.12), transparent 22%),
        linear-gradient(135deg, #281760 0%, #51249a 48%, #1d123f 100%);
    box-shadow: var(--shadow-premium-dark);
}

.cta-mark {
    width: 72px;
    height: 72px;
    border-radius: 20px;
}

.cta-copy h2 {
    font-size: clamp(2.1rem, 3vw, 3.1rem);
}

.cta-copy p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.site-footer {
    padding: clamp(56px, 5vw, 84px) 0 26px;
}

.footer-grid {
    gap: clamp(30px, 4vw, 58px);
}

.footer-bottom {
    margin-top: 38px;
    padding-top: 22px;
}

.reveal-ready [data-reveal] {
    transform: translateY(34px);
    transition: opacity 0.86s var(--ease-premium), transform 0.86s var(--ease-premium);
}

.reveal-ready [data-reveal]:not(.is-visible) .metric-card,
.reveal-ready [data-reveal]:not(.is-visible) .feature-pill,
.reveal-ready [data-reveal]:not(.is-visible) .service-card,
.reveal-ready [data-reveal]:not(.is-visible) .project-card,
.reveal-ready [data-reveal]:not(.is-visible) .fleet-card,
.reveal-ready [data-reveal]:not(.is-visible) .why-card,
.reveal-ready [data-reveal]:not(.is-visible) .logo-card,
.reveal-ready [data-reveal]:not(.is-visible) .testimonial-card {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
}

.reveal-ready [data-reveal].is-visible .metric-card,
.reveal-ready [data-reveal].is-visible .feature-pill,
.reveal-ready [data-reveal].is-visible .service-card,
.reveal-ready [data-reveal].is-visible .project-card,
.reveal-ready [data-reveal].is-visible .fleet-card,
.reveal-ready [data-reveal].is-visible .why-card,
.reveal-ready [data-reveal].is-visible .logo-card,
.reveal-ready [data-reveal].is-visible .testimonial-card {
    transition-delay: calc(var(--stagger-index, 0) * 70ms);
}

@keyframes heroDrift {
    from {
        transform: scale(1.01) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.06) translate3d(1.4%, -1.2%, 0);
    }
}

@keyframes ambientPulse {
    from {
        opacity: 0.52;
    }

    to {
        opacity: 0.86;
    }
}

@media (max-width: 1180px) {
    .site-header .container {
        width: min(100% - 28px, 1320px);
    }

    .hero {
        min-height: 700px;
    }

    h1 {
        font-size: clamp(3rem, 6vw, 4.4rem);
    }

    h2 {
        font-size: clamp(2.1rem, 4vw, 3rem);
    }

    .stats-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .logo-card {
        min-height: 112px;
    }

    .logo-card img {
        max-height: 68px;
    }
}

@media (max-width: 960px) {
    .site-header {
        padding-top: 12px;
    }

    .site-header .container {
        width: min(100% - 24px, 100%);
    }

    .header-shell {
        min-height: 68px;
        padding: 10px 14px;
    }

    .site-header.is-scrolled .header-shell {
        min-height: 62px;
    }

    .brand,
    .site-header.is-scrolled .brand {
        max-width: 218px;
    }

    .site-nav {
        gap: 2px;
        padding: 16px;
        border-radius: 24px;
        box-shadow: 0 28px 64px rgba(8, 24, 46, 0.22);
    }

    .site-nav a {
        padding: 15px 14px;
    }

    .hero {
        min-height: 680px;
        padding: calc(var(--header-height) + 78px) 0 38px;
    }

    .hero-grid {
        min-height: 440px;
    }

    .hero-stats-wrap {
        margin-top: -22px;
    }

    .section,
    .expertise,
    .fleet,
    .clients,
    .safety,
    .projects,
    .testimonials {
        padding: 78px 0;
    }

    .about {
        padding-top: 88px;
        padding-bottom: 78px;
    }

    .about-grid,
    .expertise-layout,
    .safety-layout,
    .clients-layout,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .section-head {
        margin-bottom: 32px;
    }

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

    .service-card--wide {
        grid-column: span 2;
    }

    .logo-wall {
        gap: 14px;
    }

    .logo-card {
        min-height: 96px;
        padding: 16px;
    }

    .logo-card img {
        width: min(90%, 190px);
        max-height: 60px;
    }
}

@media (max-width: 640px) {
    .site-header .container {
        width: calc(100% - 18px);
    }

    .header-shell {
        border-radius: 20px;
    }

    .brand,
    .site-header.is-scrolled .brand {
        width: min(178px, calc(100% - 58px));
        max-width: 178px;
    }

    .hero {
        min-height: 650px;
        padding-top: calc(var(--header-height) + 58px);
        padding-bottom: 34px;
    }

    .hero::before {
        top: 22%;
        left: -48%;
    }

    .hero::after {
        right: -62%;
        bottom: 20%;
    }

    .hero-scrim {
        background:
            radial-gradient(circle at 18% 18%, rgba(29, 229, 242, 0.14), transparent 30%),
            linear-gradient(180deg, rgba(7, 22, 46, 0.72) 0%, rgba(7, 22, 46, 0.94) 48%, rgba(4, 13, 31, 0.98) 100%);
    }

    .hero-grid {
        min-height: 368px;
        padding-bottom: 20px;
    }

    h1 {
        max-width: 12.8ch;
        font-size: clamp(2.28rem, 10.6vw, 3.08rem);
        line-height: 1.02;
    }

    h2 {
        max-width: 15ch;
        font-size: clamp(1.72rem, 7.6vw, 2.28rem);
    }

    .hero-lead,
    .section-copy p,
    .section-head p {
        font-size: 0.96rem;
        line-height: 1.66;
    }

    .hero-lead {
        max-width: 34ch;
        margin-top: 18px;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .button {
        min-height: 50px;
        padding: 0 20px;
    }

    .stats-band {
        padding: 8px;
        border-radius: 20px;
    }

    .metric-card {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 9px;
        padding: 13px 8px;
    }

    .icon-chip {
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }

    .metric-value {
        font-size: 1.42rem;
    }

    .metric-label {
        font-size: 0.69rem;
        line-height: 1.22;
    }

    .section,
    .expertise,
    .fleet,
    .clients,
    .safety,
    .projects,
    .testimonials {
        padding: 66px 0;
    }

    .about {
        padding-top: 70px;
        padding-bottom: 66px;
    }

    .why {
        padding: 56px 0;
    }

    .section::before {
        width: calc(100% - 28px);
    }

    .about-grid,
    .expertise-layout,
    .safety-layout,
    .clients-layout,
    .testimonials-grid {
        gap: 32px;
    }

    .about-mosaic {
        gap: 14px;
    }

    .section-head {
        gap: 18px;
        margin-bottom: 26px;
    }

    .feature-grid {
        gap: 14px;
        margin-top: 24px;
    }

    .feature-pill {
        padding: 10px 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .service-card--wide {
        grid-column: auto;
    }

    .glass-card,
    .project-content,
    .fleet-content,
    .testimonial-card {
        padding: 18px;
    }

    .carousel-track {
        grid-auto-columns: 88%;
        gap: 16px;
        padding-bottom: 16px;
    }

    .project-media,
    .fleet-media {
        aspect-ratio: 1 / 0.64;
    }

    .fleet-thumb-row {
        padding: 8px 18px 0;
    }

    .why-shell {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .why-grid {
        gap: 18px;
    }

    .why-card {
        padding: 0 0 18px;
    }

    .why-card:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid rgba(18, 33, 61, 0.08);
    }

    .logo-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .logo-card {
        min-height: 82px;
        padding: 12px;
        border-radius: 16px;
    }

    .logo-card img {
        width: 92%;
        max-height: 52px;
    }

    .commitment-card {
        padding: 20px;
        border-radius: 20px;
    }

    .cta {
        padding-top: 28px;
        padding-bottom: 58px;
    }

    .cta-shell {
        gap: 18px;
        padding: 22px 18px;
        border-radius: 22px;
    }

    .cta-mark {
        width: 58px;
        height: 58px;
        border-radius: 16px;
    }

    .cta-copy h2 {
        font-size: 1.78rem;
    }

    .site-footer {
        padding-top: 46px;
    }
}

/* Final signature polish: lock header geometry, intensify enterprise showcases, and keep motion transform-only. */
.site-header,
.site-header.is-scrolled {
    padding-top: 14px;
    backface-visibility: hidden;
    isolation: isolate;
    will-change: filter;
}

.site-header.is-scrolled {
    filter: drop-shadow(0 18px 34px rgba(4, 13, 31, 0.16));
}

.header-shell,
.site-header.is-scrolled .header-shell {
    min-height: 76px;
    padding: 12px clamp(18px, 1.8vw, 30px);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: box-shadow, background-color, border-color;
    background: #ffffff;
    transition:
        background-color 0.34s var(--ease-premium),
        border-color 0.34s var(--ease-premium),
        box-shadow 0.34s var(--ease-premium),
        backdrop-filter 0.34s var(--ease-premium);
}

.brand,
.site-header.is-scrolled .brand {
    max-width: 270px;
    transform: translate3d(0, 0, 0);
    transition: none;
}

.brand img {
    display: block;
    width: 100%;
    background: #ffffff;
}

.site-header.is-scrolled .header-shell {
    border-color: rgba(255, 255, 255, 0.38);
    background: #ffffff;
    box-shadow: 0 20px 54px rgba(8, 24, 46, 0.2);
}

.hero-media,
.hero-media img {
    backface-visibility: hidden;
}

.stats-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    padding: 1px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(29, 229, 242, 0.62), rgba(255, 255, 255, 0.12), rgba(110, 54, 239, 0.62), rgba(29, 229, 242, 0.62));
    background-size: 260% 260%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: premiumBorderFlow 7s linear infinite;
}

.metric-card {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: translate3d(0, 0, 0);
    transition:
        transform 0.32s var(--ease-premium),
        background-color 0.32s var(--ease-premium),
        box-shadow 0.32s var(--ease-premium);
}

.metric-card:hover {
    transform: translate3d(0, -5px, 0);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 18px 36px rgba(29, 229, 242, 0.12);
}

.metric-card .icon-chip {
    animation: statIconFloat 5.8s var(--ease-premium) infinite alternate;
}

.metric-value span {
    display: inline-block;
    text-shadow: 0 0 22px rgba(29, 229, 242, 0.2);
    animation: metricGlow 1.8s var(--ease-premium) 0.35s both;
}

.section-copy h2,
.section-head h2 {
    position: relative;
    text-shadow: 0 18px 42px rgba(2, 9, 23, 0.1);
}

.section-copy h2::after,
.section-head h2::after {
    content: "";
    display: block;
    width: clamp(86px, 12vw, 158px);
    height: 3px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.78), rgba(110, 54, 239, 0));
    box-shadow: 0 0 24px rgba(29, 229, 242, 0.2);
    opacity: 0.82;
    transform: scaleX(0.42);
    transform-origin: left;
}

.reveal-ready [data-reveal].is-visible h2::after {
    animation: headingLineReveal 1.05s var(--ease-premium) 0.2s forwards;
}

.section-copy--inverted h2::after,
.section-head h2::after {
    background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.72), rgba(110, 54, 239, 0));
}

.project-card,
.fleet-card,
.testimonial-card,
.glass-card {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
}

.project-card::after,
.fleet-card::after,
.testimonial-card::after,
.glass-card::after,
.logo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 1px;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(135deg, rgba(29, 229, 242, 0.5), rgba(255, 255, 255, 0.08), rgba(110, 54, 239, 0.42));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    transition: opacity 0.34s var(--ease-premium);
}

.project-card:hover,
.fleet-card:hover,
.testimonial-card:hover {
    transform:
        perspective(1200px)
        rotateX(var(--tilt-y, 0deg))
        rotateY(var(--tilt-x, 0deg))
        translate3d(0, -10px, 0);
}

.project-card:hover::after,
.fleet-card:hover::after,
.testimonial-card:hover::after,
.glass-card:hover::after,
.logo-card:hover::after {
    opacity: 1;
}

.project-card .project-media::after,
.fleet-card .fleet-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 52%, rgba(4, 13, 31, 0.28));
    opacity: 0;
    transition: opacity 0.34s var(--ease-premium);
}

.project-card:hover .project-media::after,
.fleet-card:hover .fleet-media::after {
    opacity: 1;
}

.project-media,
.fleet-media {
    position: relative;
}

.carousel-track {
    -webkit-overflow-scrolling: touch;
}

.logo-card {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 0.62;
    min-height: clamp(112px, 8.6vw, 148px);
    padding: 0;
    border: 1px solid transparent;
    background:
        linear-gradient(180deg, #ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(29, 229, 242, 0.34), rgba(255, 255, 255, 0.5), rgba(110, 54, 239, 0.34)) border-box;
    background-size: auto, 240% 240%;
    overflow: hidden;
}

.logo-card::before {
    content: "";
    position: absolute;
    inset: -42% -78%;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.56) 50%, transparent 62%);
    transform: translate3d(-34%, 0, 0) rotate(7deg);
    transition: opacity 0.34s var(--ease-premium), transform 0.76s var(--ease-premium);
}

.logo-card::after {
    inset: -1px;
}

.logo-card img {
    width: var(--logo-width, 100%);
    height: var(--logo-height, 100%);
    display: block;
    max-height: none;
    max-width: none;
    object-fit: var(--logo-fit, contain);
    object-position: var(--logo-position, center);
    padding: var(--logo-inner-pad, 0);
    background: var(--logo-bg, #ffffff);
    transform: translate3d(0, 0, 0) scale(var(--logo-scale, 1.24));
}

.logo-card:hover {
    transform: translate3d(0, -8px, 0);
    background-position: center, 100% 50%;
    box-shadow: 0 36px 76px rgba(2, 9, 23, 0.26), 0 0 42px rgba(29, 229, 242, 0.1);
}

.logo-card:hover img {
    transform: translate3d(0, 0, 0) scale(var(--logo-hover-scale, 1.32));
}

.logo-card > img {
    z-index: 2;
}

.logo-card--synthite {
    --logo-scale: 0.94;
    --logo-hover-scale: 0.98;
    --logo-inner-pad: 14px 18px;
}

.logo-card--kseb {
    --logo-scale: 1.08;
    --logo-hover-scale: 1.14;
}

.logo-card--cial {
    --logo-scale: 1.08;
    --logo-hover-scale: 1.14;
}

.logo-card--kinfra {
    --logo-width: 84%;
    --logo-height: 84%;
    --logo-fit: contain;
    --logo-position: center;
    --logo-scale: 1;
    --logo-hover-scale: 1.04;
    --logo-mobile-scale: 1;
}

.logo-card--sobha {
    --logo-width: 100%;
    --logo-height: 100%;
    --logo-fit: contain;
    --logo-position: center;
    --logo-scale: 1;
    --logo-hover-scale: 1.02;
    --logo-mobile-scale: 1;
}

.logo-card--asset {
    --logo-width: 100%;
    --logo-height: 100%;
    --logo-scale: 1;
    --logo-hover-scale: 1.02;
}

.logo-card--goodearth {
    --logo-width: 100%;
    --logo-height: 100%;
    --logo-scale: 1;
    --logo-hover-scale: 1.02;
    --logo-mobile-scale: 1;
}

.logo-card--amrita {
    --logo-scale: 0.96;
    --logo-hover-scale: 1;
    --logo-inner-pad: 10px 12px;
}

.logo-card--bmh {
    --logo-width: 94%;
    --logo-height: 94%;
    --logo-scale: 1.02;
    --logo-hover-scale: 1.04;
    --logo-inner-pad: 10px 14px;
    --logo-mobile-scale: 1;
}

.logo-card:hover::before {
    opacity: 1;
    transform: translate3d(34%, 0, 0) rotate(7deg);
}

.logo-card:hover::after {
    opacity: 1;
}

.logo-card:hover {
    animation: premiumBorderFlow 3.8s linear infinite;
}

@keyframes premiumBorderFlow {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 200% 50%;
    }
}

@keyframes metricGlow {
    0% {
        filter: drop-shadow(0 0 0 rgba(29, 229, 242, 0));
        transform: translate3d(0, 4px, 0);
    }

    60% {
        filter: drop-shadow(0 0 18px rgba(29, 229, 242, 0.34));
    }

    100% {
        filter: drop-shadow(0 0 8px rgba(29, 229, 242, 0.16));
        transform: translate3d(0, 0, 0);
    }
}

@keyframes statIconFloat {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(0, -5px, 0);
    }
}

@keyframes headingLineReveal {
    from {
        transform: scaleX(0.24);
        opacity: 0.44;
    }

    to {
        transform: scaleX(1);
        opacity: 0.92;
    }
}

@media (max-width: 960px) {
    .site-header,
    .site-header.is-scrolled {
        padding-top: 12px;
    }

    .header-shell,
    .site-header.is-scrolled .header-shell {
        min-height: 68px;
        padding: 10px 14px;
    }

    .brand,
    .site-header.is-scrolled .brand {
        max-width: 226px;
    }

    .logo-card {
        min-height: 100px;
        padding: 0;
    }

    .logo-card img {
        height: 100%;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .brand,
    .site-header.is-scrolled .brand {
        width: min(192px, calc(100% - 58px));
        max-width: 192px;
    }

    .metric-card .icon-chip {
        animation: none;
    }

    .section-copy h2::after,
    .section-head h2::after {
        width: 96px;
        margin-top: 14px;
    }

    .logo-card {
        min-height: 84px;
        padding: 0;
    }

    .logo-card img {
        height: 100%;
        width: 100%;
        transform: translate3d(0, 0, 0) scale(var(--logo-mobile-scale, var(--logo-scale, 1.18)));
    }
}

/* Luxury experience layer: lightweight ambience, progress, active states, and deeper enterprise polish. */
html::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(circle 360px at var(--cursor-x, 50vw) var(--cursor-y, 30vh), rgba(29, 229, 242, 0.08), transparent 72%),
        radial-gradient(circle 520px at calc(var(--cursor-x, 50vw) + 18vw) calc(var(--cursor-y, 30vh) + 10vh), rgba(110, 54, 239, 0.07), transparent 76%);
    transition: opacity 0.55s var(--ease-premium);
    mix-blend-mode: screen;
}

html.is-loaded::before {
    opacity: 1;
}

body {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
    transition: opacity 0.72s var(--ease-premium), transform 0.72s var(--ease-premium);
}

html.is-loaded body {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 3px;
    pointer-events: none;
    background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.9), var(--purple));
    box-shadow: 0 0 22px rgba(29, 229, 242, 0.42);
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: left;
}

.site-nav a {
    border-radius: 999px;
}

.site-nav a.is-active {
    color: #351475;
}

.site-nav a.is-active::before {
    content: "";
    position: absolute;
    inset: 5px -12px;
    z-index: -1;
    border-radius: 999px;
    background:
        radial-gradient(circle at 30% 0%, rgba(29, 229, 242, 0.14), transparent 44%),
        rgba(110, 54, 239, 0.07);
    box-shadow: inset 0 0 0 1px rgba(110, 54, 239, 0.08);
}

main > section {
    content-visibility: auto;
    contain-intrinsic-size: 760px;
}

.hero,
.cta {
    content-visibility: visible;
}

.section::after {
    content: "";
    position: absolute;
    top: 12%;
    right: -22%;
    z-index: 0;
    width: min(740px, 58vw);
    height: 42%;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(120deg, transparent 14%, rgba(29, 229, 242, 0.075), rgba(110, 54, 239, 0.06), transparent 86%);
    filter: blur(10px);
    transform: translate3d(36px, 0, 0) rotate(-7deg);
    transition: opacity 0.82s var(--ease-premium), transform 0.82s var(--ease-premium);
}

.section.is-current-section::after {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-7deg);
}

.section > .container,
.clients-layout,
.hero-grid,
.hero-stats-wrap {
    position: relative;
    z-index: 1;
}

.eyebrow {
    position: relative;
}

.eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 32px;
    height: 1px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.45;
    transform: scaleX(0);
    transform-origin: left;
}

.reveal-ready [data-reveal].is-visible .eyebrow::before {
    animation: headingLineReveal 0.78s var(--ease-premium) 0.08s forwards;
}

.section-copy h2,
.section-head h2,
.hero-copy h1 {
    background:
        linear-gradient(100deg, currentColor 0%, currentColor 42%, rgba(255, 255, 255, 0.86) 50%, currentColor 58%, currentColor 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
}

.reveal-ready [data-reveal].is-visible h1,
.reveal-ready [data-reveal].is-visible h2 {
    animation: titleSheen 1.65s var(--ease-premium) 0.15s both;
}

.header-shell::after,
.stats-band::after,
.expertise-panel::before,
.why-shell::after,
.cta-shell::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.14) 44%, transparent 68%);
    opacity: 0;
    transform: translate3d(-18%, 0, 0);
    transition: opacity 0.42s var(--ease-premium), transform 0.72s var(--ease-premium);
}

.header-shell:hover::after,
.stats-band:hover::after,
.expertise-panel:hover::before,
.why-shell:hover::after,
.cta-shell:hover::after {
    opacity: 1;
    transform: translate3d(18%, 0, 0);
}

.header-shell > *,
.stats-band > *,
.expertise-panel > *,
.why-shell > *,
.cta-shell > * {
    position: relative;
    z-index: 1;
}

.mosaic-card,
.project-card,
.fleet-card,
.testimonial-card,
.safety-image,
.testimonial-visual {
    outline: 1px solid rgba(255, 255, 255, 0);
    outline-offset: -1px;
}

.mosaic-card:hover,
.project-card:hover,
.fleet-card:hover,
.testimonial-card:hover,
.safety-image:hover,
.testimonial-visual:hover {
    outline-color: rgba(29, 229, 242, 0.18);
}

.project-tag {
    overflow: hidden;
}

.project-tag::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.45) 48%, transparent 100%);
    transform: translate3d(-120%, 0, 0);
    transition: transform 0.72s var(--ease-premium);
}

.project-card:hover .project-tag::after {
    transform: translate3d(120%, 0, 0);
}

.project-tag,
.control-button,
.social-button {
    position: relative;
}

.feature-pill,
.why-card,
.service-card,
.project-card,
.fleet-card,
.testimonial-card,
.logo-card,
.commitment-card,
.cta-shell {
    transform-style: preserve-3d;
}

.feature-pill .icon-chip,
.why-card .icon-chip,
.service-card .icon-chip,
.fleet-card .icon-chip,
.commitment-card .icon-chip {
    transition: transform 0.34s var(--ease-premium), box-shadow 0.34s var(--ease-premium);
}

.feature-pill:hover .icon-chip,
.why-card:hover .icon-chip,
.service-card:hover .icon-chip,
.fleet-card:hover .icon-chip,
.commitment-card:hover .icon-chip {
    transform: translate3d(0, -3px, 18px);
    box-shadow: inset 0 0 0 1px rgba(29, 229, 242, 0.22), 0 14px 30px rgba(29, 229, 242, 0.12);
}

.check-list li::before {
    transition: border-color 0.34s var(--ease-premium), box-shadow 0.34s var(--ease-premium);
}

.check-list li:hover::before {
    border-color: rgba(29, 229, 242, 0.86);
    box-shadow: 0 0 18px rgba(29, 229, 242, 0.18);
}

.footer-links a,
.contact-list a {
    position: relative;
}

.footer-links a::after,
.contact-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s var(--ease-premium);
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.contact-list a:hover::after,
.contact-list a:focus-visible::after {
    transform: scaleX(1);
}

.site-footer {
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(1120px, calc(100% - 40px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(29, 229, 242, 0.26), rgba(255, 255, 255, 0.14), transparent);
}

.whatsapp-float {
    position: fixed;
    right: clamp(16px, 2.4vw, 28px);
    bottom: calc(clamp(16px, 2.6vw, 28px) + env(safe-area-inset-bottom, 0px));
    z-index: 25;
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: linear-gradient(135deg, #2fe06d 0%, #149448 100%);
    color: #ffffff;
    box-shadow: 0 22px 42px rgba(20, 148, 72, 0.34);
    transition: transform 0.28s var(--ease-premium), box-shadow 0.28s var(--ease-premium), filter 0.28s var(--ease-premium);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 26px 48px rgba(20, 148, 72, 0.42);
    filter: saturate(1.06);
}

.whatsapp-float .icon {
    width: 26px;
    height: 26px;
}

@keyframes titleSheen {
    from {
        background-position: 120% 50%;
    }

    to {
        background-position: -20% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    body {
        opacity: 1;
        transform: none;
    }

    html::before,
    .scroll-progress,
    .section::after {
        display: none;
    }
}

@media (max-width: 960px) {
    main > section {
        content-visibility: visible;
        contain-intrinsic-size: auto;
    }

    html::before {
        display: none;
    }

    .site-nav a.is-active::before {
        inset: 6px 4px;
    }
}

@media (max-width: 640px) {
    .scroll-progress {
        height: 2px;
    }

    .section::after {
        display: none;
    }

    .whatsapp-float {
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
        width: 54px;
        height: 54px;
    }

    .whatsapp-float .icon {
        width: 24px;
        height: 24px;
    }
}

/* Responsive layout corrections: keep the header edge-to-edge, anchor hero copy left, and stop stats from covering the CTA. */
.site-header .container {
    width: 100%;
    max-width: none;
}

.site-header {
    padding-inline: clamp(8px, 1.2vw, 18px);
}

.header-shell {
    width: 100%;
}

.hero {
    min-height: max(760px, 100vh);
    min-height: max(760px, 100svh);
    padding-bottom: clamp(40px, 6vh, 84px);
}

.hero-grid,
.hero-stats-wrap {
    width: calc(100% - clamp(24px, 6vw, 112px));
    max-width: none;
}

.hero-grid {
    grid-template-columns: minmax(0, clamp(320px, 42vw, 760px)) minmax(0, 1fr);
    column-gap: clamp(24px, 5vw, 96px);
    justify-items: start;
    min-height: clamp(500px, 68vh, 760px);
}

.hero-copy,
.hero-copy h1,
.hero-lead {
    max-width: none;
    margin-left: 0;
    text-align: left;
}

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

.hero-stats-wrap {
    margin-top: clamp(28px, 4vh, 54px);
}

.hero-media img {
    object-position: right center;
}

@media (max-width: 1180px) {
    .hero-grid,
    .hero-stats-wrap {
        width: calc(100% - 32px);
    }

    .hero-grid {
        grid-template-columns: minmax(0, min(100%, 640px));
        min-height: auto;
    }

    .hero-copy {
        max-width: min(100%, 640px);
    }
}

@media (max-width: 960px) {
    .site-header .container {
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding-bottom: 38px;
    }

    .hero-grid,
    .hero-stats-wrap {
        width: calc(100% - 24px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .hero-stats-wrap {
        margin-top: 24px;
    }
}

@media (max-width: 640px) {
    .hero-grid,
    .hero-stats-wrap {
        width: calc(100% - 18px);
    }

    .site-header .container {
        width: 100%;
    }

    .hero {
        padding-bottom: 30px;
    }

    .hero-stats-wrap {
        margin-top: 18px;
    }

    .hero-media img {
        object-position: 68% center;
    }
}

/* Mobile header normalization: keep the brand bar compact and only render the menu panel when opened. */
@media (max-width: 640px) {
    .site-header,
    .site-header.is-scrolled {
        padding-top: 10px;
        padding-inline: 9px;
    }

    .site-header .container {
        width: 100%;
    }

    .header-shell,
    .site-header.is-scrolled .header-shell {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        min-height: 64px;
        padding: 10px 12px;
        border-radius: 20px;
        overflow: visible;
    }

    .brand,
    .site-header.is-scrolled .brand {
        width: min(176px, calc(100% - 54px));
        max-width: 176px;
    }

    .brand img {
        display: block;
        height: auto;
    }

    .nav-toggle {
        position: relative;
        top: auto;
        right: auto;
        margin-left: 0;
        flex-basis: auto;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        z-index: 4;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        gap: 6px;
        padding: 12px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 22px 48px rgba(8, 24, 46, 0.2);
        z-index: 3;
    }

    .site-nav.is-open {
        display: grid;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .site-nav a,
    .site-nav a.is-active {
        padding: 12px 14px;
        border-radius: 14px;
    }

    .site-nav a.is-active::before {
        inset: 0;
        border-radius: 14px;
    }
}

@media (max-width: 1180px) {
    .about-grid--director {
        grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
    }
}

@media (max-width: 960px) {
    .about-grid--director {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .director-card {
        width: min(100%, 520px);
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .director-card {
        width: 100%;
        border-radius: 22px;
    }

    .director-portrait {
        aspect-ratio: 1 / 1.06;
    }

    .director-card__body {
        padding: 18px 16px 20px;
    }

    .director-card h3 {
        font-size: 1.55rem;
    }

    .director-role,
    .director-signoff__line,
    .director-signoff__role {
        font-size: 0.88rem;
    }

    .director-quote {
        margin-top: 14px;
        padding-top: 14px;
        font-size: 0.95rem;
    }

    .director-signoff {
        margin-top: 22px;
        padding-top: 16px;
    }
}
