:root {
    --deep-purple: #2B093F;
    --dark-purple: #2B093F;
    --primary-purple: #7E277C;
    --rich-purple: #7E277C;
    --magenta-purple: #9D4B9D;
    --soft-purple: #D9BCD5;
    --light-purple: #F5ECF7;
    --off-white: #FAF8FB;
    --white: #FFFFFF;
    --dark-text: #17131A;
    --muted-text: #68616D;
    --border: rgba(126, 39, 124, 0.12);
    --shadow: 0 22px 50px rgba(43, 9, 63, 0.10);
    --radius: 22px;
    --radius-sm: 14px;
    --content-width: 1280px;
    --header-height: 92px;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--body-font);
    background: var(--off-white);
    color: var(--dark-text);
    line-height: 1.7;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body.menu-open {
    overflow: hidden;
}

section[id],
[id].page-hero {
    scroll-margin-top: calc(var(--header-height) + 110px);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

img {
    display: block;
    max-width: 100%;
}

.fit-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.fit-image-position-top {
    object-position: center 18%;
}

.fit-image-position-low {
    object-position: center 26%;
}

button,
input,
select,
textarea {
    font: inherit;
}

h1, h2, h3, h4, h5 {
    font-family: var(--heading-font);
    color: var(--dark-text);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 0;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 700;
}

p {
    margin: 0 0 1rem;
    color: var(--muted-text);
    font-size: 1.05rem;
}

main {
    min-height: 60vh;
}

.container {
    width: min(92%, var(--content-width));
    margin: 0 auto;
}

.section {
    padding: 7rem 0;
}

.section-header {
    margin-bottom: 2.8rem;
    max-width: 820px;
}

.section-header-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header-light h2,
.section-header-light .eyebrow { color: var(--white); }

body,
button,
input,
select,
textarea,
a,
.logo,
.site-header,
.main-nav,
.btn,
.form-group label,
.contact-link,
.footer-links a,
.footer-phone,
.service-item,
.product-body h3,
.product-body p,
.industry-content h3,
.why-item h3,
.why-item p,
.logo-card,
.featured-project-overlay h2,
.featured-project-overlay p,
.contact-panel,
.form-card,
.office-copy,
.timeline-copy,
.mission-panel,
.approach-item,
.story-copy,
.intro-copy,
.service-feature-copy,
.future-product-card h3,
.dealership-copy,
.dealership-copy li,
.tyre-copy p,
.founder-copy p {
    font-family: var(--body-font);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.72rem;
    color: var(--soft-purple);
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
}

.eyebrow-dark {
    color: var(--primary-purple);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--magenta-purple));
    color: var(--white);
    box-shadow: 0 16px 26px rgba(126, 39, 124, 0.22);
}

.btn-primary:hover {
    box-shadow: 0 16px 32px rgba(126, 39, 124, 0.28);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-light {
    background: var(--white);
    color: var(--primary-purple);
    border-color: rgba(126, 39, 124, 0.12);
}

.btn-light:hover {
    background: var(--light-purple);
}

.btn-header {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.22);
    min-height: 46px;
    padding-inline: 1.2rem;
}

.site-header.scrolled .btn-header {
    background: linear-gradient(135deg, var(--primary-purple), var(--magenta-purple));
    border-color: transparent;
    color: var(--white);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--white);
}

.logo-image {
    display: block;
    height: 90px;
    width: auto;
    max-width: 285px;
    filter: brightness(0) invert(1);
    transition: filter 0.25s ease;
}

.site-header.scrolled .logo {
    color: var(--dark-text);
}

.site-header.scrolled .logo-image {
    filter: none;
}

.site-footer .logo-image {
    filter: brightness(0) invert(1);
}

.logo-text {
    font-size: 0.78rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    opacity: 0.9;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(250, 248, 251, 0.96);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--border);
    box-shadow: 0 18px 40px rgba(43, 9, 63, 0.08);
}

.nav-container {
    width: min(92%, var(--content-width));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 1rem;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.main-nav a {
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.22s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}

.site-header.scrolled .main-nav a {
    color: var(--dark-text);
}

.site-header.scrolled .main-nav a::after {
    background: var(--primary-purple);
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active {
    color: var(--primary-purple);
}

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--deep-purple), var(--dark-purple));
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(126,39,124,0.18) 0%, rgba(43,9,63,0.28) 60%, rgba(126,39,124,0.36) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 2.5rem;
    min-height: auto;
    padding: 5rem 0 13rem;
}

.hero-copy {
    max-width: 680px;
    margin: 0 auto;
    color: var(--white);
    position: relative;
    z-index: 1;
    padding-top: 1.5rem;
    text-align: center;
}

.hero-copy .eyebrow {
    color: #e7ccef;
}

.hero-copy h1 {
    color: var(--white);
    margin: 0 0 1rem;
}

.hero-subtitle {
    font-family: var(--heading-font);
    font-size: clamp(1.2rem, 1.8vw, 1.65rem);
    color: rgba(255,255,255,0.88);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero-copy p {
    color: rgba(255,255,255,0.82);
    font-size: 1.06rem;
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-media {
    display: block;
    position: relative;
    z-index: 1;
    width: min(86%, 980px);
    margin: 1rem auto -5rem;
}

.hero-visual {
    position: relative;
    min-height: 440px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
        linear-gradient(130deg, rgba(147, 0, 163, 0.24), rgba(82,0,111,0.16));
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    transform: translateY(28px);
    opacity: 0;
    animation: heroReveal 1s cubic-bezier(.2,.8,.2,1) .55s forwards;
}

.hero-visual .fit-image {
    position: absolute;
    inset: 0;
}

@media (min-width: 980px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        padding: 6rem 0 12rem;
        gap: 3rem;
    }

    .hero-copy {
        text-align: left;
        margin: 0;
        max-width: none;
        padding-top: 0;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-media {
        margin: 0;
        width: 100%;
    }

    .hero-visual {
        transform: none;
        min-height: 460px;
    }
}

.hero-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-carousel-slide.is-active {
    opacity: 1;
}

.hero-carousel-control {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    background: rgba(43, 9, 63, 0.62);
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
}

.hero-carousel-control:hover,
.hero-carousel-control:focus-visible {
    background: var(--primary-purple);
}

.hero-carousel-prev { left: 1rem; }
.hero-carousel-next { right: 1rem; }

.hero-carousel-dots {
    position: absolute;
    right: 0;
    bottom: 1.2rem;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0.55rem;
}

.hero-carousel-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid var(--white);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.hero-carousel-dots button.is-active,
.hero-carousel-dots button:hover,
.hero-carousel-dots button:focus-visible {
    background: var(--white);
}

.visual-panel {
    position: absolute;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
}

.visual-panel-top {
    top: 8%;
    right: 12%;
    width: 52%;
    height: 38%;
    transform: rotate(-8deg);
}

@media (max-width: 640px) {
    .hero-inner {
        padding-top: 2rem;
    }
}

.visual-panel-bottom {
    left: 9%;
    bottom: 9%;
    width: 50%;
    height: 35%;
    transform: rotate(10deg);
}

.visual-badge {
    position: absolute;
    inset: auto 50% 26px 50%;
    transform: translateX(-50%);
    width: min(74%, 320px);
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    border: 1px dashed rgba(255,255,255,0.4);
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.8);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.5;
    z-index: 0;
}

.hero-glow-one {
    width: 440px;
    height: 440px;
    top: -90px;
    right: -80px;
    background: rgba(182, 76, 194, 0.4);
}

.hero-glow-two {
    width: 360px;
    height: 360px;
    bottom: -60px;
    left: -60px;
    background: rgba(147, 0, 163, 0.28);
}

.orb {
    position: absolute;
    display: block;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
}

.orb-one {
    width: 110px;
    height: 110px;
    right: 4%;
    top: 8%;
    background: rgba(255,255,255,0.05);
}

.orb-two {
    width: 140px;
    height: 140px;
    left: 4%;
    bottom: 10%;
    background: rgba(182, 76, 194, 0.08);
}

.grid-line {
    position: absolute;
    display: block;
    border: 1px solid rgba(255,255,255,0.08);
    transform: rotate(25deg);
}

.grid-line-one {
    width: 160px;
    height: 160px;
    right: 0;
    top: 20%;
}

.grid-line-two {
    width: 160px;
    height: 160px;
    left: 0;
    bottom: 15%;
}

.hero-delay-1,
.hero-delay-2,
.hero-delay-3,
.hero-delay-4,
.hero-delay-5,
.hero-delay-6 {
    opacity: 0;
    transform: translateY(26px);
    animation: riseIn 0.8s cubic-bezier(.2,.7,.2,1) forwards;
}

.hero-delay-1 { animation-delay: 0.15s; }
.hero-delay-2 { animation-delay: 0.35s; }
.hero-delay-3 { animation-delay: 0.55s; }
.hero-delay-4 { animation-delay: 0.75s; }
.hero-delay-5 { animation-delay: 0.95s; }
.hero-delay-6 { animation-delay: 1.1s; }

@keyframes riseIn {
    0% {
        opacity: 0;
        transform: translateY(26px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: translateY(36px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.split-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.split-content {
    max-width: 640px;
}

.split-content h2 {
    margin-bottom: 1.2rem;
}

.split-content p {
    font-size: 1.08rem;
}

.split-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-visual {
    width: min(100%, 540px);
    min-height: 540px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(82,0,111,0.08), rgba(147,0,163,0.04));
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: var(--shadow);
}

.info-box {
    position: absolute;
    left: -2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(135deg, var(--deep-purple), var(--primary-purple));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    color: var(--white);
    box-shadow: 0 22px 44px rgba(126, 39, 124, 0.18);
}

.info-box::before {
    content: "";
    position: absolute;
    left: 1.5rem;
    top: 0.9rem;
    width: 32px;
    height: 2px;
    background: rgba(255,255,255,0.7);
}

.year {
    margin-top: 0.8rem;
    font-size: clamp(1.8rem, 2vw, 2.3rem);
    line-height: 1;
    font-weight: 800;
    font-family: var(--heading-font);
}

.label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}

.services-section {
    background: rgba(245, 234, 247, 0.6);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.service-item {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 32px;
    gap: 1.2rem;
    align-items: center;
    padding: 1.5rem 1.2rem 1.5rem 1rem;
    background: rgba(255,255,255,0.82);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 30px rgba(37,0,61,0.04);
}

.service-item:hover {
    transform: translateY(-4px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.service-index {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: var(--heading-font);
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(43, 9, 63, 0.38);
    transition: color 0.25s ease;
}

.service-copy h3 {
    margin-bottom: 0.4rem;
    font-size: clamp(1.05rem, 1.4vw, 1.4rem);
    letter-spacing: -0.03em;
}

.service-copy p {
    margin-bottom: 0;
    color: var(--muted-text);
}

.service-arrow {
    font-size: 1.7rem;
    color: var(--primary-purple);
    opacity: 0.72;
    transform: translateX(0);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.service-item:hover .service-index {
    color: var(--primary-purple);
}

.service-item:hover .service-arrow {
    transform: translateX(6px);
    opacity: 1;
}

.supply-section {
    background: var(--off-white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.2rem;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(37,0,61,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.product-art {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: rgba(255,255,255,0.82);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.product-art::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,0,61,0.72), rgba(82,0,111,0.2));
}

.product-art > * {
    position: relative;
    z-index: 1;
}

.art-1 { background: linear-gradient(135deg, rgba(82,0,111,0.28), rgba(0,0,0,0.18)), linear-gradient(120deg, #d7d7d7, #8d6f95); }
.art-2 { background: linear-gradient(135deg, rgba(82,0,111,0.28), rgba(0,0,0,0.18)), linear-gradient(120deg, #f0d0aa, #6b4d7a); }
.art-3 { background: linear-gradient(135deg, rgba(82,0,111,0.28), rgba(0,0,0,0.18)), linear-gradient(120deg, #d5d6d8, #6e7988); }
.art-4 { background: linear-gradient(135deg, rgba(82,0,111,0.28), rgba(0,0,0,0.18)), linear-gradient(120deg, #a8a8aa, #5c6874); }
.art-5 { background: linear-gradient(135deg, rgba(82,0,111,0.28), rgba(0,0,0,0.18)), linear-gradient(120deg, #d1d9df, #695f7a); }
.art-6 { background: linear-gradient(135deg, rgba(82,0,111,0.28), rgba(0,0,0,0.18)), linear-gradient(120deg, #c7b09d, #7a4f4e); }
.art-7 { background: linear-gradient(135deg, rgba(82,0,111,0.28), rgba(0,0,0,0.18)), linear-gradient(120deg, #b8c9d9, #5d587d); }
.art-8 { background: linear-gradient(135deg, rgba(82,0,111,0.28), rgba(0,0,0,0.18)), linear-gradient(120deg, #b9b5c8, #6e6a7c); }
.art-9 { background: linear-gradient(135deg, rgba(82,0,111,0.28), rgba(0,0,0,0.18)), linear-gradient(120deg, #e0c29a, #7d5f48); }
.art-10 { background: linear-gradient(135deg, rgba(82,0,111,0.28), rgba(0,0,0,0.18)), linear-gradient(120deg, #d5d2cf, #4d585d); }

.product-body {
    padding: 1.2rem 1rem 1.2rem;
}

.product-body h3 {
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
    line-height: 1.3;
}

.product-body p {
    margin-bottom: 0;
    font-size: 0.96rem;
}

.dealership-section,
.military-section,
.battery-program-section,
.partnership-section,
.target-section,
.civil-servant-programme-section,
.future-products-section,
.tyre-section,
.founder-message-section {
    background: var(--off-white);
}

.military-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.military-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(37,0,61,0.04);
}

.military-card img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.military-copy {
    padding: 1.1rem 1rem 1.3rem;
}

.military-copy h3 {
    margin: 0 0 0.55rem;
    font-size: 1.06rem;
}

.military-copy p {
    margin: 0;
    color: var(--muted-text);
    font-size: 0.96rem;
}

.battery-program-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
    padding: 1rem 0;
}

.battery-program-copy {
    max-width: 620px;
}

.battery-program-copy h2 {
    margin-bottom: 1rem;
}

.battery-program-copy p {
    margin-bottom: 1.2rem;
}

.check-list,
.target-list {
    list-style: none;
    display: grid;
    gap: 0.85rem;
    margin: 0 0 1.8rem;
    padding: 0;
}

.check-list li,
.target-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--muted-text);
    font-weight: 500;
}

.check-list li::before,
.target-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-purple);
}

.battery-program-visual,
.partnership-media,
.partnership-image,
.battery-image,
.programme-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.battery-image,
.partnership-image,
.programme-visual {
    width: 100%;
    min-height: 360px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(82,0,111,0.08), rgba(147,0,163,0.04));
    color: var(--primary-purple);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 18px 36px rgba(37,0,61,0.05);
}

.partnership-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.partnership-copy {
    max-width: 820px;
}

.partnership-copy h2 {
    margin-bottom: 1rem;
}

.partnership-copy p {
    margin-bottom: 1rem;
}

.psmd-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    min-width: 120px;
    min-height: 52px;
    border-radius: 999px;
    background: rgba(126, 39, 124, 0.08);
    border: 1px solid rgba(126, 39, 124, 0.12);
    color: var(--primary-purple);
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.target-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2.2rem;
    box-shadow: var(--shadow);
}

.target-panel h2 {
    margin-bottom: 1rem;
}

.target-panel p {
    margin-bottom: 1.2rem;
}

.civil-programme-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
}

.civil-programme-copy {
    max-width: 560px;
}

.civil-programme-copy h2 {
    margin-bottom: 0.8rem;
}

.programme-subheading {
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-purple);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.86rem;
}

.civil-programme-product {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.product-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(82,0,111,0.08);
    color: var(--primary-purple);
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.product-card-copy {
    margin-bottom: 1rem;
}

.product-card-copy h3 {
    margin-bottom: 0.6rem;
}

.programme-visual {
    min-height: 240px;
    margin-bottom: 1.2rem;
}

.future-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.future-product-card {
    position: relative;
    padding: 1.5rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(37,0,61,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.future-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(126, 39, 124, 0.18);
    box-shadow: var(--shadow);
}

.future-number {
    display: inline-block;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    font-weight: 800;
    color: rgba(82,0,111,0.34);
}

.future-product-card h3 {
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.service-context {
    margin-top: 0.6rem;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    background: rgba(126, 39, 124, 0.06);
    border: 1px solid rgba(126, 39, 124, 0.08);
    color: var(--primary-purple);
    font-size: 0.92rem;
    font-weight: 600;
}

.service-context[hidden] {
    display: none;
}

.dealership-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.dealership-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.2rem;
    padding: 1.2rem;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 18px 36px rgba(37,0,61,0.05);
}

.dealership-image {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(126,39,124,0.08), rgba(43,9,63,0.04));
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
}

.dealership-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dealership-copy h3 {
    margin-bottom: 0.75rem;
}

.dealership-copy p {
    margin-bottom: 0.8rem;
}

.dealership-copy ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.dealership-copy li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--muted-text);
}

.dealership-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-purple);
}

.tyre-layout,
.founder-message-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.tyre-image,
.founder-photo {
    width: 100%;
    min-height: 320px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(126,39,124,0.08), rgba(43,9,63,0.04));
    color: var(--primary-purple);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 18px 36px rgba(37,0,61,0.05);
}

.founder-portrait {
    background: linear-gradient(135deg, rgba(82,0,111,0.08), rgba(147,0,163,0.06));
    border: 1px solid rgba(126, 39, 124, 0.15);
}

.founder-message-layout {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.founder-copy h2 {
    margin-bottom: 1rem;
}

@media (max-width: 1100px) {
    .dealership-grid,
    .tyre-layout,
    .founder-message-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .hero-inner {
        padding-bottom: 3.5rem;
    }
}

.industries-section {
    background: linear-gradient(135deg, var(--deep-purple), var(--dark-purple));
    color: var(--white);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.industry-block {
    position: relative;
    min-height: 290px;
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
}

.industry-art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: transform 0.4s ease;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    z-index: 0;
}

.industry-art::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 19, 26, 0.28), rgba(23, 19, 26, 0.72));
    z-index: 1;
}

.industry-art img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.industry-art span {
    position: relative;
    z-index: 1;
}

.industry-block:hover .industry-art {
    transform: scale(1.05);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(37,0,61,0.12), rgba(37,0,61,0.66));
}

.industry-content {
    position: absolute;
    inset: auto 1.2rem 1.2rem 1.2rem;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    transition: transform 0.25s ease;
}

.industry-content h3 {
    color: var(--white);
    font-size: clamp(1.15rem, 1.5vw, 1.6rem);
    max-width: 220px;
}

.industry-arrow {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.9;
    transform: translateX(0);
    transition: transform 0.25s ease;
}

.industry-block:hover .industry-content {
    transform: translateY(-4px);
}

.industry-block:hover .industry-arrow {
    transform: translateX(6px);
}

.art-mining { background: linear-gradient(135deg, rgba(93,88,89,0.5), rgba(37,0,61,0.34)), linear-gradient(120deg, #7c756f, #312f33); }
.art-government { background: linear-gradient(135deg, rgba(93,88,89,0.5), rgba(37,0,61,0.34)), linear-gradient(120deg, #8b978f, #404b4f); }
.art-construction { background: linear-gradient(135deg, rgba(93,88,89,0.5), rgba(37,0,61,0.34)), linear-gradient(120deg, #b3a89b, #5d5e64); }
.art-security { background: linear-gradient(135deg, rgba(93,88,89,0.5), rgba(37,0,61,0.34)), linear-gradient(120deg, #6d6d74, #1c2332); }
.art-commercial { background: linear-gradient(135deg, rgba(93,88,89,0.5), rgba(37,0,61,0.34)), linear-gradient(120deg, #c7be9a, #5e594b); }
.art-ngo { background: linear-gradient(135deg, rgba(93,88,89,0.5), rgba(37,0,61,0.34)), linear-gradient(120deg, #a8a8ab, #4f4d57); }

.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 1.3rem;
}

.why-item {
    padding: 2rem 1.6rem 1.7rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--white), rgba(245,236,247,0.35));
}

.why-number {
    display: inline-block;
    font-family: var(--heading-font);
    font-size: clamp(2.4rem, 2.5vw, 3rem);
    font-weight: 800;
    color: var(--primary-purple);
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.why-line {
    width: 42px;
    height: 2px;
    background: rgba(82,0,111,0.28);
    margin-bottom: 1rem;
}

.why-item h3 {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.why-item p {
    margin-bottom: 0;
}

.clients-section {
    background: rgba(245, 234, 247, 0.26);
}

.clients-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.logo-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border: none;
    background: transparent;
    color: var(--primary-purple);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: none;
    padding: 0.75rem;
    overflow: hidden;
}

.logo-card img {
    display: block;
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.1);
}

.product-card img,
.military-card img,
.battery-program-visual img,
.tyre-image-wrap img,
.team-visual img,
.industry-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-card img {
    aspect-ratio: 4 / 3;
    height: auto;
}

.battery-program-visual img,
.tyre-image-wrap img,
.team-visual img {
    border-radius: 24px;
}

.battery-program-visual {
    overflow: hidden;
    border-radius: 24px;
}

.logo-card span {
    display: block;
    text-align: center;
    font-size: 0.68rem;
    line-height: 1.45;
    letter-spacing: 0.08em;
    color: var(--deep-purple);
}

.cta-section {
    background: var(--off-white);
}

.documents-section {
    background: var(--light-purple);
}

.documents-layout {
    align-items: center;
}

.documents-action {
    display: flex;
    justify-content: flex-end;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.document-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--white);
}

.document-item .document-meta {
    color: var(--deep-purple);
}

@media (min-width: 900px) {
    .documents-layout {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 2rem;
        align-items: center;
    }
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--deep-purple), var(--primary-purple));
    border-radius: 28px;
    box-shadow: var(--shadow);
    text-align: center;
    color: var(--white);
}

.cta-panel::before,
.cta-panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.6;
}

.cta-panel::before {
    width: 220px;
    height: 220px;
    background: rgba(182, 76, 194, 0.22);
    top: -80px;
    right: -20px;
}

.cta-panel::after {
    width: 180px;
    height: 180px;
    background: rgba(147, 0, 163, 0.18);
    left: -40px;
    bottom: -60px;
}

.cta-panel > * {
    position: relative;
    z-index: 1;
}

.cta-panel .eyebrow {
    color: #e3c2f1;
}

.cta-panel h2 {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 1rem;
}

.cta-panel p {
    color: rgba(255,255,255,0.8);
    max-width: 640px;
    margin: 0 auto 1.8rem;
    font-size: 1.08rem;
}

.center-row {
    justify-content: center;
}

.site-footer {
    background: linear-gradient(180deg, #1c062b, var(--deep-purple));
    color: rgba(255,255,255,0.9);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr;
    gap: 2rem;
    padding-bottom: 2.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

.footer-col p,
.footer-col a,
.footer-col li {
    color: rgba(255,255,255,0.76);
    font-size: 0.98rem;
}

.footer-brand .brand-tag {
    margin-top: 1rem;
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.footer-phone {
    font-weight: 700;
    color: var(--white);
}

.footer-bottom {
    padding: 1.4rem 0 2.2rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.68);
}

.mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.site-header.scrolled .mobile-toggle {
    border-color: rgba(37,0,61,0.15);
    background: rgba(255,255,255,0.7);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(18, 10, 22, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 998;
}

.mobile-nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    position: relative;
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.site-header.scrolled .hamburger,
.site-header.scrolled .hamburger::before,
.site-header.scrolled .hamburger::after {
    background: var(--dark-text);
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.mobile-toggle.is-open .hamburger {
    background: transparent;
}

.mobile-toggle.is-open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-toggle.is-open .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-38px) translateY(18px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(38px) translateY(18px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-image {
    opacity: 0;
    transform: scale(0.97) translateY(18px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-image.visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(43, 9, 63, 0.96), rgba(126, 39, 124, 0.82));
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about-hero-inner,
.services-hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
    min-height: 620px;
    padding: 4rem 0;
}

.about-copy,
.services-copy {
    position: relative;
    z-index: 1;
    max-width: 620px;
    color: var(--white);
}

.about-copy .eyebrow,
.services-copy .eyebrow {
    color: #e7c9f8;
    margin-bottom: 1.2rem;
}

.about-copy h1,
.services-copy h1 {
    color: var(--white);
    max-width: 520px;
    margin-bottom: 1rem;
}

.hero-tag {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-size: 1.12rem;
    letter-spacing: 0.02em;
}

.about-image-wrap,
.services-visual {
    position: relative;
    min-height: 520px;
    z-index: 1;
}

.about-visual,
.services-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 520px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    padding: 1.5rem;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.about-visual::before,
.services-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,0,61,0.36), rgba(82,0,111,0.2));
}

.about-visual,
.services-media {
    text-align: center;
    position: relative;
}

.shape {
    position: absolute;
    display: block;
    border: 1px solid rgba(247, 227, 255, 0.38);
    background: rgba(255,255,255,0.02);
}

.shape-one {
    width: 170px;
    height: 170px;
    right: -18px;
    top: -16px;
    border-radius: 26px;
    transform: rotate(14deg);
}

.shape-two {
    width: 120px;
    height: 120px;
    left: -30px;
    bottom: -10px;
    border-radius: 50%;
    border-width: 2px;
}

.shape-three {
    width: 200px;
    height: 2px;
    left: 12%;
    bottom: 18%;
    background: rgba(229, 182, 255, 0.8);
    border: 0;
    box-shadow: 0 0 0 1px rgba(229, 182, 255, 0.18);
}

.abstract-visual,
.icon-panel,
.founder-portrait {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.abstract-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 2;
    padding: 0.6rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: white;
    font-family: var(--heading-font);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.abstract-icon,
.panel-icon,
.portrait-icon {
    position: relative;
    z-index: 1;
    display: block;
    width: min(88%, 260px);
    height: auto;
    filter: drop-shadow(0 18px 36px rgba(37,0,61,0.14));
}

.icon-frame {
    fill: rgba(255,255,255,0.12);
    stroke: rgba(255,255,255,0.78);
    stroke-width: 2;
}

.icon-line {
    fill: none;
    stroke: rgba(255,255,255,0.9);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-line.subtle {
    stroke: rgba(255,255,255,0.6);
    stroke-width: 3;
}

.icon-dot {
    fill: rgba(230, 199, 245, 0.96);
}

.panel-icon .icon-frame,
.portrait-icon .icon-frame {
    fill: rgba(126, 39, 124, 0.08);
    stroke: rgba(126, 39, 124, 0.78);
}

.panel-icon .icon-line,
.portrait-icon .icon-line {
    stroke: rgba(82,0,111,0.9);
}

.panel-icon .icon-line.subtle,
.portrait-icon .icon-line.subtle {
    stroke: rgba(82,0,111,0.5);
}

.abstract-visual::after,
.icon-panel::after,
.founder-portrait::after {
    content: "";
    position: absolute;
    inset: auto auto -16% -9%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
    animation: drift 12s ease-in-out infinite alternate;
}

.icon-panel::after,
.founder-portrait::after {
    inset: auto auto -14% -12%;
    border-color: rgba(126, 39, 124, 0.18);
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(12px, -10px) scale(1.08);
    }
}

.story-section {
    background: var(--off-white);
}

.story-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.story-copy {
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(126, 39, 124, 0.26);
}

.story-copy h2 {
    margin-bottom: 1rem;
}

.story-media {
    display: flex;
    justify-content: center;
}

.story-image {
    width: min(100%, 520px);
    min-height: 500px;
    border-radius: 26px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(82,0,111,0.08), rgba(147,0,163,0.04));
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: var(--shadow);
}

.band-graphic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(70%, 380px);
    height: 220px;
}

.band-ring,
.band-bar {
    position: absolute;
    display: block;
    border: 1px solid rgba(255,255,255,0.7);
}

.band-ring {
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.ring-one {
    width: 180px;
    height: 180px;
    animation: drift 10s ease-in-out infinite alternate;
}

.ring-two {
    width: 110px;
    height: 110px;
    transform: translate(60px, -26px);
}

.ring-three {
    width: 80px;
    height: 80px;
    transform: translate(-68px, 42px);
}

.band-bar {
    width: 140px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
}

.bar-one {
    transform: rotate(32deg) translate(18px, 44px);
}

.bar-two {
    transform: rotate(-26deg) translate(-18px, -36px);
}

.fact-section {
    background: linear-gradient(135deg, var(--deep-purple), var(--primary-purple));
    padding: 0;
}

.fact-block {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 0.6rem;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.fact-block::before,
.fact-block::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
}

.fact-block::before {
    width: 260px;
    height: 260px;
    right: -70px;
    top: -110px;
}

.fact-block::after {
    width: 220px;
    height: 220px;
    left: -80px;
    bottom: -100px;
}

.fact-number {
    position: relative;
    z-index: 1;
    font-family: var(--heading-font);
    font-size: clamp(5rem, 9vw, 11rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
    font-weight: 800;
    color: var(--white);
}

.fact-label {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}

.fact-block p {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0;
    color: rgba(255,255,255,0.82);
    font-size: 1.06rem;
}

.approach-section {
    background: rgba(245, 234, 247, 0.38);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.approach-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1.5rem 1.5rem;
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 18px 36px rgba(37,0,61,0.04);
}

.approach-number {
    font-family: var(--heading-font);
    font-size: clamp(2.3rem, 3vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    color: var(--primary-purple);
}

.approach-line {
    width: 48px;
    height: 2px;
    background: rgba(126, 39, 124, 0.26);
}

.approach-item h3 {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.approach-item p {
    margin-bottom: 0;
}

.mission-vision-section {
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mission-panel {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--deep-purple), var(--dark-purple));
    border-radius: 28px;
    color: var(--white);
    box-shadow: var(--shadow);
}

.mission-panel-alt {
    background: linear-gradient(135deg, #ffffff, #F5ECF7);
    border: 1px solid var(--border);
    color: var(--dark-text);
}

.mission-panel .eyebrow {
    color: #e7c9f8;
    margin-bottom: 1rem;
}

.mission-panel-alt .eyebrow {
    color: var(--primary-purple);
}

.mission-panel h3 {
    color: var(--white);
    margin-bottom: 1rem;
    max-width: 420px;
}

.mission-panel-alt h3 {
    color: var(--dark-text);
}

.mission-panel p {
    margin: 0;
    color: rgba(255,255,255,0.8);
}

.mission-panel-alt p {
    color: var(--muted-text);
}

.timeline-section {
    background: rgba(245, 234, 247, 0.24);
}

.timeline {
    position: relative;
    display: grid;
    gap: 1.5rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(126, 39, 124, 0.18);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 150px 2px minmax(0,1fr);
    align-items: start;
    gap: 1.4rem;
    padding-left: 0.25rem;
}

.timeline-label {
    position: relative;
    z-index: 1;
    padding-top: 0.6rem;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-purple);
}

.timeline-line {
    position: relative;
    width: 2px;
    height: 100%;
    min-height: 110px;
    background: rgba(126, 39, 124, 0.18);
}

.timeline-line::before {
    content: "";
    position: absolute;
    top: 0.7rem;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--primary-purple);
    box-shadow: 0 0 0 6px rgba(126, 39, 124, 0.08);
}

.timeline-copy {
    padding: 1.2rem 1.5rem 1.25rem;
    background: rgba(255,255,255,0.82);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(37,0,61,0.04);
}

.timeline-copy h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}

.timeline-copy p {
    margin: 0;
}

.about-image-band {
    position: relative;
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(82,0,111,0.12), rgba(147,0,163,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: var(--shadow);
}

.about-image-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,0,61,0.38), rgba(37,0,61,0.12));
}

.about-image-band > * {
    position: relative;
    z-index: 1;
}

.image-band-overlay {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 340px;
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.9);
    color: var(--primary-purple);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 16px 36px rgba(37,0,61,0.14);
}

.services-intro {
    background: rgba(255,255,255,0.9);
}

.intro-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
}

.intro-copy h2 {
    margin-bottom: 1rem;
}

.intro-metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.4rem;
    min-height: 220px;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(82,0,111,0.06), rgba(245,234,247,0.88));
    border: 1px solid var(--border);
    border-radius: 22px;
}

.metric-number {
    display: block;
    font-family: var(--heading-font);
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
    font-weight: 800;
    color: var(--primary-purple);
}

.metric-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-purple);
    font-weight: 700;
}

.service-scroll-nav {
    position: sticky;
    top: calc(var(--header-height) + 18px);
    z-index: 20;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 0 0;
    margin: 0 auto 1rem;
    width: min(92%, var(--content-width));
    background: rgba(250, 248, 251, 0.72);
    backdrop-filter: blur(6px);
    border-radius: 999px;
}

.service-scroll-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(82,0,111,0.14);
    background: rgba(255,255,255,0.8);
    color: var(--dark-text);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(37,0,61,0.04);
}

.service-scroll-nav a:hover,
.service-scroll-nav a:focus-visible {
    background: var(--light-purple);
    color: var(--primary-purple);
}

.service-feature {
    position: relative;
    padding: 4.5rem 0;
    background: var(--white);
    border-top: 1px solid rgba(82,0,111,0.08);
    transition: background 0.25s ease;
}

.service-feature.alt {
    background: rgba(245, 234, 247, 0.28);
}

.service-feature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.service-feature-copy {
    position: relative;
    padding-right: 1rem;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: clamp(2.6rem, 4vw, 4rem);
    line-height: 1;
    font-weight: 800;
    color: rgba(37,0,61,0.35);
    transition: color 0.25s ease;
}

.feature-accent {
    display: inline-block;
    width: 72px;
    height: 2px;
    background: rgba(82,0,111,0.18);
    transition: width 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.service-feature-copy h2 {
    margin-bottom: 1.1rem;
}

.service-feature-copy ul {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    padding: 0;
    margin: 0;
}

.service-feature-copy li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--muted-text);
    font-size: 1.02rem;
}

.service-feature-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-purple);
}

.service-feature-media {
    display: flex;
    justify-content: center;
}

.service-image {
    position: relative;
    width: min(100%, 620px);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(82,0,111,0.08), rgba(147,0,163,0.04));
    color: var(--primary-purple);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 18px 36px rgba(37,0,61,0.05);
}

.service-feature:hover .feature-number {
    color: var(--primary-purple);
}

.service-feature:hover .feature-accent {
    width: 96px;
    background: rgba(82,0,111,0.7);
}

.service-feature:hover .service-image {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

.service-feature-large .service-image {
    min-height: 460px;
}

.interior-solutions-section {
    background: rgba(245, 234, 247, 0.38);
}

.interior-intro {
    max-width: 820px;
    margin: 0 auto 2rem;
    text-align: center;
}

.interior-intro p {
    margin: 0;
    color: var(--muted-text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.interior-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.interior-gallery-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(37,0,61,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.interior-gallery-card:hover {
    transform: translateY(-6px);
    border-color: rgba(126, 39, 124, 0.16);
    box-shadow: var(--shadow);
}

.interior-gallery-media {
    position: relative;
    height: 360px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(82,0,111,0.08), rgba(147,0,163,0.04));
}

.interior-gallery-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.interior-gallery-card:hover .interior-gallery-media img {
    transform: scale(1.06);
}

.interior-gallery-copy {
    padding: 1rem 1rem 1.2rem;
}

.interior-gallery-tag {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-purple);
    font-weight: 700;
}

.interior-gallery-copy h3 {
    margin: 0;
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.interior-gallery-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 1100px) {
    .interior-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .approach-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-feature-inner,
    .story-layout,
    .about-hero-inner,
    .services-hero-inner,
    .intro-layout,
    .industries-hero-inner,
    .projects-hero-inner,
    .contact-hero-inner,
    .contact-layout,
    .office-layout,
    .industry-feature {
        grid-template-columns: 1fr;
    }

    .service-feature-copy {
        padding-right: 0;
    }

    .about-image-wrap,
    .services-visual,
    .story-image,
    .about-visual,
    .services-media,
    .industry-figure,
    .contact-office-image,
    .office-location-image {
        min-height: 430px;
    }
}

@media (max-width: 760px) {
    .about-copy h1,
    .services-copy h1,
    .industries-copy h1,
    .projects-copy h1,
    .contact-copy h1 {
        max-width: none;
    }

    .story-copy {
        padding-left: 1rem;
    }

    .approach-grid,
    .mission-grid,
    .timeline-item,
    .form-grid,
    .project-grid,
    .clients-row,
    .industry-grid,
    .product-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        gap: 0.6rem;
    }

    .timeline-line {
        display: none;
    }

    .service-scroll-nav {
        position: static;
        top: auto;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.6rem 0.8rem 0;
        width: min(96%, var(--content-width));
        border-radius: 18px;
    }

    .service-scroll-nav a {
        width: 38px;
        height: 38px;
        flex: 0 0 auto;
    }

    .service-feature {
        padding: 3.5rem 0;
    }

    .interior-gallery {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .interior-gallery-media {
        height: 300px;
    }

    .feature-header {
        gap: 0.8rem;
    }

    .service-image,
    .industry-figure,
    .contact-office-image,
    .office-location-image {
        min-height: 300px;
    }

    .cta-panel,
    .form-card,
    .contact-panel,
    .office-copy {
        padding: 1.5rem;
    }

    .documents-action {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .logo-image {
        height: 72px;
        max-width: 225px;
    }

    .hero-visual {
        min-height: 280px;
    }

    .project-filter {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .filter-button {
        width: 100%;
    }

    .service-scroll-nav {
        justify-content: center;
    }

    .service-scroll-nav a {
        width: 36px;
        height: 36px;
    }

    .form-actions .btn,
    .cta-row .btn,
    .documents-action .btn,
    .btn-header {
        width: 100%;
    }

    .cta-row,
    .hero-actions {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-image {
        opacity: 1 !important;
        transform: none !important;
    }
}

.industries-hero-inner,
.projects-hero-inner,
.contact-hero-inner {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 2.5rem;
    align-items: center;
    min-height: 620px;
    padding: 4rem 0;
}

.industries-copy,
.projects-copy,
.contact-copy {
    position: relative;
    z-index: 1;
    max-width: 620px;
    color: var(--white);
}

.industries-copy .eyebrow,
.projects-copy .eyebrow,
.contact-copy .eyebrow {
    color: #e7c9f8;
    margin-bottom: 1.2rem;
}

.industries-copy h1,
.projects-copy h1,
.contact-copy h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.industries-copy p,
.projects-copy p,
.contact-copy p {
    color: rgba(255,255,255,0.82);
    margin: 0;
    max-width: 560px;
}

.industries-visual,
.projects-visual,
.contact-visual {
    position: relative;
    z-index: 1;
}

.industries-image,
.projects-image,
.contact-image,
.industry-figure,
.contact-office-image,
.office-location-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 510px;
    padding: 1.4rem;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    color: rgba(255,255,255,0.82);
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.industries-image::before,
.projects-image::before,
.contact-image::before,
.industry-figure::before,
.contact-office-image::before,
.office-location-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,0,61,0.38), rgba(82,0,111,0.18));
}

.industries-image,
.projects-image,
.contact-image,
.industry-figure,
.contact-office-image,
.office-location-image {
    position: relative;
    text-align: center;
}

.industries-intro,
.project-intro-section {
    background: rgba(255,255,255,0.94);
}

.intro-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
}

.project-intro {
    max-width: 760px;
    text-align: center;
}

.project-intro h2 {
    margin: 0;
}

.industry-feature-block {
    background: var(--white);
    border-top: 1px solid rgba(82,0,111,0.08);
}

.industry-feature-block.industry-feature-alt {
    background: rgba(245, 234, 247, 0.28);
}

.industry-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 4rem 0;
}

.industry-feature.reverse {
    direction: rtl;
}

.industry-feature.reverse > * {
    direction: ltr;
}

.industry-feature-copy {
    position: relative;
    padding-right: 1rem;
}

.industry-feature-copy h2 {
    margin-bottom: 0.9rem;
}

.industry-feature-copy p {
    margin: 0;
    max-width: 540px;
}

.industry-feature-media {
    display: flex;
    justify-content: center;
}

.industry-figure {
    width: min(100%, 620px);
    min-height: 400px;
    border-radius: 26px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(82,0,111,0.08), rgba(147,0,163,0.04));
    color: var(--primary-purple);
    box-shadow: 0 18px 36px rgba(37,0,61,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-feature:hover .industry-figure,
.industry-feature:focus-within .industry-figure {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

.industry-feature:hover .feature-accent,
.industry-feature:focus-within .feature-accent {
    width: 96px;
    background: rgba(82,0,111,0.7);
}

.industry-feature:hover .feature-number,
.industry-feature:focus-within .feature-number {
    color: var(--primary-purple);
}

.project-filter-section {
    background: rgba(255,255,255,0.9);
}

.project-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-button {
    appearance: none;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.7);
    color: var(--dark-text);
    border-radius: 999px;
    padding: 0.75rem 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
    background: var(--primary-purple);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 16px 32px rgba(82,0,111,0.18);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1.5rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(37,0,61,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, max-height 0.25s ease;
}

.project-card.hidden {
    display: none;
}

.project-card:hover,
.project-card:focus-within {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.project-image,
.featured-project-image {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(82,0,111,0.08), rgba(147,0,163,0.04));
    border-bottom: 1px solid rgba(82,0,111,0.08);
    color: var(--primary-purple);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image,
.featured-project:hover .featured-project-image {
    transform: scale(1.04);
}

.project-body {
    position: relative;
    display: grid;
    gap: 0.8rem;
    padding: 1.4rem 1.2rem 1.3rem;
}

.project-category {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-purple);
    font-weight: 700;
}

.project-body h3 {
    margin: 0;
    font-size: 1.3rem;
}

.project-body p {
    margin: 0;
    color: var(--muted-text);
}

.project-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: rgba(126, 39, 124, 0.08);
    color: var(--primary-purple);
    font-size: 1.5rem;
    transition: transform 0.25s ease, background 0.25s ease;
}

.project-card:hover .project-arrow {
    transform: translateX(8px);
    background: rgba(126, 39, 124, 0.12);
}

.featured-project-section {
    background: rgba(245, 234, 247, 0.22);
}

.featured-project {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(82,0,111,0.12);
    background: var(--white);
    box-shadow: var(--shadow);
}

.featured-project-image {
    min-height: 440px;
    border-bottom: 0;
    background: linear-gradient(135deg, rgba(82,0,111,0.12), rgba(147,0,163,0.06));
    color: var(--primary-purple);
    border-radius: 0;
}

.featured-project-overlay {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    max-width: 540px;
    padding: 1.2rem 1.4rem;
    background: rgba(43, 9, 63, 0.7);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    color: var(--white);
}

.featured-tag {
    display: inline-block;
    margin-bottom: 0.7rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e7c9f8;
    font-weight: 700;
}

.featured-project-overlay h2 {
    color: var(--white);
    margin-bottom: 0.6rem;
}

.featured-project-overlay p {
    margin: 0;
    color: rgba(255,255,255,0.82);
}

.contact-hero-inner {
    display: flex;
    align-items: center;
    min-height: 620px;
    padding: 4rem 0;
}

.contact-hero {
    background-image: linear-gradient(90deg, rgba(26, 5, 38, 0.92), rgba(43, 9, 63, 0.58)), url("../images/contact.png");
    background-position: center;
    background-size: cover;
}

.contact-details-section,
.contact-form-section {
    background: var(--off-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
}

.contact-panel,
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-panel h2,
.form-card h2 {
    margin-bottom: 1.2rem;
}

.contact-info-block {
    padding-top: 1rem;
    border-top: 1px solid rgba(82,0,111,0.1);
    margin-top: 1rem;
}

.contact-info-block h3 {
    margin-bottom: 0.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-purple);
}

.contact-info-block p,
.contact-link {
    margin: 0;
    color: var(--muted-text);
}

.contact-link {
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1.15rem;
}

.form-card {
    margin: 0 auto;
}

.contact-form-wrap {
    width: min(92%, 820px);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-purple);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(82,0,111,0.18);
    border-radius: 14px;
    background: rgba(255,255,255,0.96);
    min-height: 52px;
    padding: 0.8rem 0.95rem;
    color: var(--dark-text);
    font: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(82,0,111,0.08);
    outline: none;
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: #b63d5f;
    background: rgba(255, 240, 246, 0.7);
}

.form-actions {
    margin-top: 1.5rem;
}

.form-status {
    margin-top: 1rem;
    min-height: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.form-status.visible {
    opacity: 1;
}

.form-status.error {
    color: #8d1f42;
}

.mobile-toggle:focus-visible,
.main-nav a:focus-visible,
.btn:focus-visible,
.filter-button:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 3px solid rgba(126, 39, 124, 0.38);
    outline-offset: 2px;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .future-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .industries-hero-inner,
    .projects-hero-inner,
    .contact-hero-inner,
    .industry-feature,
    .contact-layout,
    .intro-layout,
    .battery-program-grid,
    .partnership-layout,
    .civil-programme-layout {
        grid-template-columns: 1fr;
    }

    .project-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 980px) {
    .hero-inner,
    .split-layout,
    .service-list,
    .industry-grid,
    .footer-grid,
    .industry-feature,
    .contact-layout,
    .industries-hero-inner,
    .projects-hero-inner,
    .contact-hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        min-height: auto;
        padding-top: 3rem;
    }

    .hero-media {
        width: min(92%, 820px);
    }

    .hero-visual {
        min-height: 420px;
    }

    .main-nav {
        display: none;
    }

    .site-header .btn-header {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .main-nav.open {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: min(82vw, 330px);
        height: 100vh;
        background: rgba(43, 9, 63, 0.98);
        padding: 6rem 1.4rem 2rem;
        z-index: 999;
        box-shadow: -18px 0 40px rgba(0,0,0,0.2);
    }

    .main-nav.open ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .main-nav.open a {
        color: var(--white);
        font-size: 1.1rem;
    }

    .clients-row {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .info-box {
        left: 0.8rem;
    }
}

@media (max-width: 760px) {
    .logo {
        flex-shrink: 0;
    }

    .logo-image {
        height: 72px;
        max-width: 225px;
    }

    .nav-container {
        gap: 0.5rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-inner {
        padding-bottom: 8rem;
    }

    .hero-media {
        width: 100%;
        margin-bottom: -2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-copy p,
    .split-content p,
    .section-header {
        max-width: none;
    }

    .team-visual {
        min-height: 420px;
    }

    .product-grid,
    .why-grid,
    .clients-row,
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .service-arrow {
        display: none;
    }

    .cta-panel {
        padding: 2.5rem 1.2rem;
    }

    .site-footer {
        padding-top: 3rem;
    }
}

