:root {
    --sw-container: 1250px;
    --sw-navy: #065592;
    --sw-navy-soft: #403970;
    --sw-teal: #588A3E;
    --sw-teal-deep: #065592;
    --sw-amber: #ED3237;
    --sw-amber-soft: #F26A6D;
    --sw-ink: #162338;
    --sw-copy: #4f617a;
    --sw-muted: #7f92ad;
    --sw-line: rgba(18, 40, 72, 0.12);
    --sw-surface: #ffffff;
    --sw-surface-soft: #f4f8fc;
    --sw-surface-alt: #edf4fb;
    --sw-shadow-lg: 0 32px 70px rgba(7, 18, 39, 0.14);
    --sw-shadow-md: 0 22px 50px rgba(12, 31, 58, 0.12);
    --sw-shadow-sm: 0 14px 30px rgba(12, 31, 58, 0.08);
    --sw-radius-xl: 32px;
    --sw-radius-lg: 24px;
    --sw-radius-md: 18px;
    --sw-radius-sm: 14px;
    --sw-transition: 0.35s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--sw-copy);
    background:
        radial-gradient(circle at top left, rgba(6, 85, 146, 0.14), transparent 32%),
        radial-gradient(circle at 85% 0%, rgba(237, 50, 55, 0.13), transparent 24%),
        radial-gradient(circle at 12% 86%, rgba(88, 138, 62, 0.12), transparent 25%),
        linear-gradient(180deg, #f9fbfd 0%, #f4f8fc 100%);
    line-height: 1.65;
    overflow-x: hidden;
}

.container {
    max-width: var(--sw-container);
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto auto 10% -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(6, 85, 146, 0.08);
    filter: blur(10px);
    pointer-events: none;
    z-index: -1;
}

body::after {
    inset: 14% -100px auto auto;
    width: 320px;
    height: 320px;
    background: rgba(237, 50, 55, 0.08);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--sw-ink);
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.12;
    margin: 0;
}

p {
    margin: 0 0 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--sw-transition), transform var(--sw-transition), opacity var(--sw-transition);
}

a:hover {
    color: var(--sw-teal-deep);
}

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.text-gradient {
    background: linear-gradient(135deg, var(--sw-teal) 0%, var(--sw-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-space {
    padding: 96px 0;
}

.section-space-sm {
    padding: 72px 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-header.section-header-left {
    margin-left: 0;
    text-align: left;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sw-teal);
}

.section-kicker::before,
.section-kicker::after {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(6, 85, 146, 0.18), var(--sw-teal));
}

.section-heading {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 3.35rem);
    letter-spacing: -0.03em;
}

.section-lead {
    max-width: 62ch;
    margin: 0 auto;
    color: var(--sw-copy);
    font-size: 1.05rem;
}

.section-header-left .section-lead {
    margin-left: 0;
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(6, 85, 146, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--sw-teal-deep);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    box-shadow: var(--sw-shadow-sm);
}

.eyebrow-pill i {
    color: var(--sw-amber);
}

.sw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform var(--sw-transition), box-shadow var(--sw-transition), background-color var(--sw-transition), color var(--sw-transition), border-color var(--sw-transition);
}

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

.sw-btn-solid {
    background: linear-gradient(135deg, var(--sw-teal) 0%, var(--sw-teal-deep) 100%);
    color: #fff;
    box-shadow: 0 18px 40px rgba(6, 85, 146, 0.24);
}

.sw-btn-solid:hover {
    color: #fff;
    box-shadow: 0 26px 50px rgba(6, 85, 146, 0.28);
}

.sw-btn-outline {
    border-color: rgba(15, 37, 65, 0.14);
    background: rgba(255, 255, 255, 0.88);
    color: var(--sw-ink);
}

.sw-btn-outline:hover {
    border-color: rgba(6, 85, 146, 0.28);
    color: var(--sw-teal-deep);
}

.sw-btn-light {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.sw-btn-light:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.2);
}

.sw-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sw-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(6, 85, 146, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--sw-ink);
    font-size: 0.9rem;
    font-weight: 700;
}

.sw-chip i {
    color: var(--sw-amber);
}

.site-spinner {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 248, 252, 0.96);
    z-index: 9999;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-spinner.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner-ring {
    width: 64px;
    height: 64px;
    border: 4px solid rgba(6, 85, 146, 0.16);
    border-top-color: var(--sw-navy);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.site-topbar {
    padding: 10px 0;
    background: rgba(7, 18, 39, 0.92);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.site-topbar .container,
.site-header .container {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.topbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 clamp(16px, 2vw, 32px);
}

.topbar-list,
.topbar-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.topbar-list a,
.topbar-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-list i,
.topbar-social i {
    color: var(--sw-amber);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    transition: background-color var(--sw-transition), box-shadow var(--sw-transition), transform var(--sw-transition);
}

.site-header.scrolled .site-navbar {
    box-shadow: 0 20px 50px rgba(7, 18, 39, 0.08);
}

.site-navbar {
    margin: 0;
    padding: 0;
}

.navbar-shell {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 18px clamp(16px, 2vw, 32px);
    border-bottom: 1px solid rgba(15, 37, 65, 0.08);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 34px rgba(7, 18, 39, 0.08);
}

.navbar-brand {
    margin-right: auto;
    padding: 0;
}

.brand-wrap {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.site-header .brand-mark {
    width: 152px;
    height: 52px;
    border-radius: 0;
}

.brand-mark {
    display: block;
    width: 140px;
    height: 48px;
    border-radius: 0;
    object-fit: contain;
    box-shadow: none;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: "Space Grotesk", sans-serif;
    color: var(--sw-ink);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.site-header .brand-title {
    display: none;
}

.brand-subtitle {
    color: var(--sw-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-navbar .navbar-toggler {
    border: 0;
    padding: 0;
    color: var(--sw-ink);
    box-shadow: none;
}

.site-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.site-navbar .navbar-nav {
    gap: 10px;
}

.site-navbar .nav-link {
    position: relative;
    padding: 10px 14px !important;
    color: var(--sw-copy) !important;
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active,
.site-navbar .nav-link.show {
    color: var(--sw-ink) !important;
}

.site-navbar .nav-link.active::after,
.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.show::after {
    width: 100%;
}

.site-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    bottom: 4px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sw-teal), var(--sw-amber));
    transition: width var(--sw-transition);
}

.site-navbar .dropdown-menu {
    padding: 14px;
    border: 1px solid rgba(15, 37, 65, 0.08);
    border-radius: 18px;
    box-shadow: 0 24px 50px rgba(7, 18, 39, 0.14);
}

.site-navbar .dropdown-item {
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 700;
    color: var(--sw-copy);
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus {
    color: var(--sw-teal-deep);
    background: rgba(6, 85, 146, 0.08);
}

.enquiry-cta {
    flex-shrink: 0;
}

.hero-section {
    position: relative;
    padding: 0 0 80px;
}

.hero-section .container {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.hero-shell {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 0;
    border-radius: 0;
    background: linear-gradient(145deg, rgba(6, 85, 146, 0.18), rgba(64, 57, 112, 0.16));
    color: rgba(255, 255, 255, 0.84);
    box-shadow: none;
    min-height: clamp(460px, 72vh, 680px);
}

.hero-shell::before {
    content: "";
    position: absolute;
    inset: auto auto -120px -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(6, 85, 146, 0.18);
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
}

.hero-shell::after {
    content: "";
    position: absolute;
    inset: 18px 14% auto auto;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(237, 50, 55, 0.16);
    filter: blur(4px);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    width: min(100%, var(--sw-container));
    margin: 0 auto;
    min-height: inherit;
    padding: 34px clamp(16px, 2vw, 32px) 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
    justify-items: start;
}

.hero-copy {
    max-width: 650px;
    padding: 28px 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(7, 18, 39, 0.46), rgba(7, 18, 39, 0.26));
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 54px rgba(3, 10, 24, 0.24);
}

.hero-copy h1 {
    margin: 16px 0 18px;
    color: #fff;
    font-size: clamp(2.2rem, 3.8vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero-copy p {
    margin-bottom: 22px;
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
}

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

.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-note-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.hero-note-item i {
    color: var(--sw-amber);
}

.hero-chip-row {
    margin-top: 18px;
}

.hero-chip-row .sw-chip {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.hero-chip-row .sw-chip i {
    color: var(--sw-amber-soft);
}

.hero-carousel {
    position: relative;
}

.hero-carousel .carousel-inner {
    overflow: hidden;
}

.hero-carousel .carousel-item {
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: inherit;
    overflow: hidden;
}

.hero-slide-bg,
.hero-slide-scrim {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    filter: saturate(1.05) contrast(1.02);
}

.hero-slide-scrim {
    background: linear-gradient(145deg, rgba(6, 85, 146, 0.72), rgba(64, 57, 112, 0.56) 56%, rgba(237, 50, 55, 0.14));
}

.hero-slide--one .hero-slide-scrim {
    background: linear-gradient(145deg, rgba(6, 85, 146, 0.74), rgba(64, 57, 112, 0.56) 58%, rgba(237, 50, 55, 0.16));
}

.hero-slide--two .hero-slide-scrim {
    background: linear-gradient(145deg, rgba(88, 138, 62, 0.76), rgba(6, 85, 146, 0.56) 58%, rgba(64, 57, 112, 0.14));
}

.hero-slide--three .hero-slide-scrim {
    background: linear-gradient(145deg, rgba(237, 50, 55, 0.76), rgba(64, 57, 112, 0.56) 58%, rgba(6, 85, 146, 0.14));
}

.hero-slide--one {
    --hero-accent: var(--sw-navy);
    --hero-accent-soft: var(--sw-navy-soft);
}

.hero-slide--two {
    --hero-accent: var(--sw-teal);
    --hero-accent-soft: var(--sw-navy);
}

.hero-slide--three {
    --hero-accent: var(--sw-amber);
    --hero-accent-soft: var(--sw-navy-soft);
}

.hero-carousel .carousel-item.active .hero-slide-bg {
    animation: hero-zoom 10s ease both;
}

.hero-carousel .carousel-item.active .hero-copy {
    animation: hero-card-in 0.78s ease both;
}

.hero-carousel .carousel-item.active .eyebrow-pill {
    animation: hero-rise 0.72s ease 0.05s both;
}

.hero-carousel .carousel-item.active h1 {
    animation: hero-rise 0.78s ease 0.12s both;
}

.hero-carousel .carousel-item.active p {
    animation: hero-rise 0.78s ease 0.2s both;
}

.hero-carousel .carousel-item.active .hero-actions {
    animation: hero-rise 0.78s ease 0.28s both;
}

.hero-carousel .carousel-item.active .hero-chip-row {
    animation: hero-rise 0.78s ease 0.36s both;
}

.hero-copy .eyebrow-pill {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.92);
    color: var(--hero-accent, var(--sw-navy));
    box-shadow: var(--sw-shadow-sm);
}

.hero-copy .eyebrow-pill i {
    color: var(--hero-accent, var(--sw-navy));
}

.hero-copy .sw-btn-solid {
    background: linear-gradient(135deg, var(--hero-accent, var(--sw-teal)) 0%, var(--hero-accent-soft, var(--sw-navy-soft)) 100%);
    box-shadow: 0 18px 40px rgba(6, 85, 146, 0.24);
}

.hero-copy .sw-btn-outline {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.hero-copy .sw-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.hero-copy .sw-btn-light {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.22);
}

.hero-carousel .carousel-indicators {
    top: 20px;
    right: clamp(16px, 2vw, 32px);
    left: auto;
    bottom: auto;
    margin: 0;
    justify-content: flex-end;
    gap: 10px;
    z-index: 2;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 44px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    opacity: 1;
}

.hero-carousel .carousel-indicators .active {
    width: 66px;
    background: linear-gradient(90deg, var(--sw-teal), var(--sw-amber));
}

.hero-control {
    top: auto;
    bottom: 68px;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    opacity: 1;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 36px rgba(3, 10, 24, 0.18);
}

.hero-control:hover {
    background: rgba(255, 255, 255, 0.22);
}

.hero-control-prev {
    right: 96px;
    left: auto;
}

.hero-control-next {
    right: clamp(16px, 2vw, 32px);
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.4rem 1.4rem;
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-card-in {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hero-zoom {
    from {
        transform: scale(1.12);
    }

    to {
        transform: scale(1.03);
    }
}

.surface-card,
.content-card,
.metric-card,
.product-card,
.service-card,
.gallery-card,
.contact-card,
.process-card,
.spotlight-card,
.detail-card {
    height: 100%;
    border: 1px solid var(--sw-line);
    border-radius: var(--sw-radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--sw-shadow-sm);
}

.surface-card {
    padding: 30px;
}

.metric-card {
    padding: 28px;
}

.metric-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--sw-ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.55rem;
}

.metric-card p {
    margin-bottom: 0;
}

.image-panel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--sw-shadow-md);
}

.image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-panel.image-panel-tall {
    align-self: stretch;
    min-height: 0;
    height: 100%;
}

.image-panel.image-panel-tall img {
    height: 100%;
}

.image-panel-tag {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--sw-ink);
    font-weight: 800;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.icon-list {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.icon-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.icon-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(6, 85, 146, 0.12);
    color: var(--sw-teal-deep);
}

.icon-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--sw-ink);
    font-size: 1rem;
}

.technology-grid,
.service-grid,
.product-grid,
.detail-grid,
.contact-grid {
    display: grid;
    gap: 24px;
}

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

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

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

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

.contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
}

.technology-card,
.service-card,
.detail-card {
    padding: 28px;
}

.service-card strong,
.technology-card strong,
.detail-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--sw-ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.16rem;
}

.technology-card p,
.service-card p,
.detail-card p {
    margin-bottom: 0;
}

.service-icon,
.detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(6, 85, 146, 0.15), rgba(64, 57, 112, 0.16));
    color: var(--sw-teal-deep);
    font-size: 1.1rem;
}

.spotlight-card {
    overflow: hidden;
}

.spotlight-card img {
    width: 100%;
    height: 255px;
    object-fit: cover;
}

.spotlight-card-body {
    padding: 24px;
}

.spotlight-card-body h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.spotlight-card-body p {
    margin-bottom: 0;
}

.product-card {
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.product-card-body {
    padding: 24px;
}

.product-card-body h3 {
    margin-bottom: 12px;
    font-size: 1.32rem;
}

.product-card-body p {
    margin-bottom: 18px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.product-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(6, 85, 146, 0.08);
    color: var(--sw-ink);
    font-size: 0.82rem;
    font-weight: 800;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sw-teal-deep);
    font-weight: 800;
}

.card-link i {
    transition: transform var(--sw-transition);
}

.card-link:hover i {
    transform: translateX(4px);
}

.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(6, 85, 146, 0.92)),
        linear-gradient(120deg, rgba(237, 50, 55, 0.18), transparent 42%);
    color: rgba(255, 255, 255, 0.82);
    box-shadow: var(--sw-shadow-lg);
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-banner h2 {
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(2rem, 3vw, 3rem);
}

.cta-banner p {
    max-width: 58ch;
    margin-bottom: 22px;
}

.page-hero {
    position: relative;
    padding: 0 0 56px;
}

.page-hero .container {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.page-hero-shell {
    position: relative;
    overflow: hidden;
    padding: 86px 0 52px;
    border-radius: 0;
    background:
        linear-gradient(120deg, rgba(6, 85, 146, 0.76), rgba(64, 57, 112, 0.84)),
        center / cover no-repeat;
    box-shadow: var(--sw-shadow-lg);
}

.page-hero-shell.page-hero-home {
    background-image:
        linear-gradient(120deg, rgba(6, 85, 146, 0.76), rgba(64, 57, 112, 0.84)),
        url("../img/solarwalaa/hero-home.png");
}

.page-hero-shell.page-hero-about {
    background-image:
        linear-gradient(120deg, rgba(6, 85, 146, 0.76), rgba(237, 50, 55, 0.2)),
        url("../img/solarwalaa/about-team.png");
}

.page-hero-shell.page-hero-products {
    background-image:
        linear-gradient(120deg, rgba(6, 85, 146, 0.76), rgba(88, 138, 62, 0.24)),
        url("../img/solarwalaa/gallery-project.png");
}

.page-hero-shell.page-hero-gallery {
    background-image:
        linear-gradient(120deg, rgba(64, 57, 112, 0.76), rgba(237, 50, 55, 0.2)),
        url("../img/solarwalaa/gallery-project.png");
}

.page-hero-shell.page-hero-contact {
    background-image:
        linear-gradient(120deg, rgba(6, 85, 146, 0.76), rgba(237, 50, 55, 0.22)),
        url("../img/solarwalaa/hero-home.png");
}

.page-hero-shell.page-hero-cleaning {
    background-image:
        linear-gradient(120deg, rgba(88, 138, 62, 0.8), rgba(6, 85, 146, 0.72)),
        url("../img/solarwalaa/solar-cleaning.png");
}

.page-hero-shell.page-hero-lights {
    background-image:
        linear-gradient(120deg, rgba(64, 57, 112, 0.78), rgba(6, 85, 146, 0.74)),
        url("../img/solarwalaa/solar-lights.png");
}

.page-hero-shell.page-hero-acdb {
    background-image:
        linear-gradient(120deg, rgba(237, 50, 55, 0.76), rgba(64, 57, 112, 0.8)),
        url("../img/solarwalaa/acdb-dcdb.png");
}

.page-hero-shell.page-hero-wire {
    background-image:
        linear-gradient(120deg, rgba(6, 85, 146, 0.76), rgba(64, 57, 112, 0.82)),
        url("../img/solarwalaa/dc-wire.png");
}

.page-hero-shell.page-hero-mc4 {
    background-image:
        linear-gradient(120deg, rgba(6, 85, 146, 0.76), rgba(88, 138, 62, 0.22)),
        url("../img/solarwalaa/mc4-connector.png");
}

.page-hero-shell.page-hero-earthing {
    background-image:
        linear-gradient(120deg, rgba(64, 57, 112, 0.78), rgba(237, 50, 55, 0.18)),
        url("../img/solarwalaa/la-earthing.png");
}

.page-hero-shell.page-hero-fuse {
    background-image:
        linear-gradient(120deg, rgba(237, 50, 55, 0.78), rgba(6, 85, 146, 0.8)),
        url("../img/solarwalaa/fuse-spd-mcb.png");
}

.page-hero-copy {
    width: min(100%, var(--sw-container));
    margin: 0 auto;
    padding: 0 clamp(16px, 2vw, 32px);
    color: rgba(255, 255, 255, 0.82);
}

.page-hero-copy h1 {
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(2.6rem, 4vw, 4.1rem);
}

.page-hero-copy p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.76);
}

.breadcrumb-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
}

.breadcrumb-list span {
    opacity: 0.6;
}

.page-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 30px;
    align-items: start;
}

.quote-card {
    padding: 30px;
    border: 1px solid rgba(15, 37, 65, 0.1);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 251, 0.9));
    box-shadow: var(--sw-shadow-sm);
}

.quote-card blockquote {
    margin: 0 0 18px;
    color: var(--sw-ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.45rem;
    line-height: 1.35;
}

.quote-card cite {
    color: var(--sw-muted);
    font-style: normal;
    font-weight: 800;
}

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

.process-card {
    padding: 26px;
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(6, 85, 146, 0.14), rgba(237, 50, 55, 0.18));
    color: var(--sw-teal-deep);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.process-card h3 {
    margin-bottom: 12px;
    font-size: 1.12rem;
}

.process-card p {
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    min-height: 240px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-card:hover img {
    transform: scale(1.04);
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 34%, rgba(7, 18, 39, 0.78) 100%);
}

.gallery-card-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.82);
}

.gallery-card-content strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 1.08rem;
}

.gallery-span-4 {
    grid-column: span 4;
}

.gallery-span-5 {
    grid-column: span 5;
}

.gallery-span-6 {
    grid-column: span 6;
}

.gallery-span-7 {
    grid-column: span 7;
}

.gallery-span-8 {
    grid-column: span 8;
}

.gallery-tall {
    min-height: 360px;
}

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

.check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--sw-copy);
    font-weight: 600;
}

.check-list li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--sw-teal);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.contact-card {
    padding: 30px;
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.contact-list {
    display: grid;
    gap: 16px;
}

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

.contact-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 16px;
    background: rgba(6, 85, 146, 0.1);
    color: var(--sw-teal-deep);
}

.contact-label {
    display: block;
    margin-bottom: 4px;
    color: var(--sw-ink);
    font-weight: 800;
}

.contact-form-wrap {
    padding: 34px;
}

.contact-form-wrap h3 {
    margin-bottom: 14px;
    font-size: 1.55rem;
}

.contact-form-wrap p {
    margin-bottom: 22px;
}

.contact-side-stack {
    display: grid;
    gap: 24px;
    align-content: start;
}

.form-label {
    margin-bottom: 8px;
    color: var(--sw-ink);
    font-size: 0.92rem;
    font-weight: 800;
}

.form-control,
.form-select,
textarea.form-control {
    min-height: 52px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(15, 37, 65, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--sw-ink);
}

textarea.form-control {
    min-height: 150px;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(6, 85, 146, 0.34);
    box-shadow: 0 0 0 0.22rem rgba(6, 85, 146, 0.12);
}

.mini-note {
    margin-top: 14px;
    color: var(--sw-muted);
    font-size: 0.9rem;
}

.map-frame {
    overflow: hidden;
    min-height: clamp(320px, 34vw, 460px);
    border: 1px solid var(--sw-line);
    border-radius: 28px;
    box-shadow: var(--sw-shadow-sm);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: clamp(320px, 34vw, 460px);
    min-height: 0;
    border: 0;
}

.site-footer {
    padding: 82px 0 24px;
    background: linear-gradient(180deg, #081426 0%, #0b1f3a 100%);
    color: rgba(255, 255, 255, 0.72);
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.95fr 1fr;
    gap: 28px;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4,
.footer-gallery h4 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.2rem;
}

.footer-brand p {
    max-width: 34ch;
}

.footer-brand .brand-wrap {
    margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul {
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-links i,
.footer-contact i {
    color: var(--sw-amber);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: #fff;
}

.footer-social a:hover {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

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

.insta-grid a {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--sw-shadow-sm);
}

.insta-grid img {
    width: 100%;
    height: 112px;
    object-fit: cover;
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
}

.footer-bottom a {
    color: var(--sw-amber-soft);
}

.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1100;
}

.floating-actions a,
.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 18px;
    color: #fff;
    box-shadow: 0 20px 34px rgba(7, 18, 39, 0.2);
}

.floating-actions a {
    background: linear-gradient(135deg, var(--sw-teal) 0%, var(--sw-teal-deep) 100%);
}

.floating-actions a:last-child {
    background: linear-gradient(135deg, var(--sw-teal) 0%, var(--sw-navy) 100%);
}

.floating-actions a:hover,
.back-to-top:hover {
    color: #fff;
    transform: translateY(-2px);
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 158px;
    opacity: 0;
    visibility: hidden;
    background: linear-gradient(135deg, var(--sw-amber) 0%, var(--sw-navy-soft) 100%);
    transition: opacity var(--sw-transition), visibility var(--sw-transition), transform var(--sw-transition);
    z-index: 1100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.99);
    filter: blur(3px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        filter 0.7s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(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 {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

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

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

    .detail-grid.detail-grid-wide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .split-grid,
    .page-intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-image-frame {
        min-height: 420px;
    }

    .site-navbar .navbar-collapse {
        padding-top: 18px;
    }

    .site-navbar .navbar-nav {
        gap: 4px;
    }

    .site-navbar .nav-link {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .site-navbar .nav-link::after {
        left: 0;
    }

    .enquiry-cta {
        margin-top: 14px;
    }
}

@media (max-width: 991.98px) {
    .site-topbar {
        display: none;
    }

    .site-navbar {
        margin-top: 0;
    }

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

    .navbar-shell {
        align-items: flex-start;
        padding: 16px 18px;
    }

    .hero-section {
        padding-bottom: 64px;
    }

    .page-hero-shell,
    .cta-banner {
        padding: 32px 24px;
    }

    .hero-stat-grid,
    .technology-grid,
    .service-grid,
    .product-grid,
    .detail-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .gallery-span-4,
    .gallery-span-5,
    .gallery-span-6,
    .gallery-span-7,
    .gallery-span-8 {
        grid-column: span 12;
    }

    .gallery-tall {
        min-height: 260px;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .section-space {
        padding: 72px 0;
    }

    .section-space-sm {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .hero-copy h1,
    .page-hero-copy h1 {
        font-size: clamp(2rem, 7vw, 2.28rem);
    }

    .hero-copy {
        padding: 22px 20px;
    }

    .hero-section {
        padding-bottom: 64px;
    }

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

    .contact-form-wrap,
    .contact-card,
    .surface-card,
    .technology-card,
    .service-card,
    .detail-card,
    .metric-card,
    .process-card {
        padding: 24px;
    }

    .insta-grid img {
        height: 96px;
    }
}

@media (max-width: 575.98px) {
    .hero-shell {
        border-radius: 0;
        min-height: 460px;
    }

    .site-header .brand-copy {
        display: none;
    }

    .brand-subtitle {
        display: none;
    }

    .hero-actions,
    .hero-note {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-chip-row {
        display: none;
    }

    .hero-carousel .carousel-indicators {
        display: none;
    }

    .hero-control {
        display: none;
    }

    .sw-btn {
        width: 100%;
    }

    .floating-actions {
        right: 16px;
        bottom: 16px;
    }

    .back-to-top {
        right: 16px;
        bottom: 144px;
    }

    .floating-actions a,
    .back-to-top {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }
}

/* Alternate homepage concept: Solar Grid Premium */
body.solar-atmosphere-page {
    background:
        radial-gradient(circle at 9% 14%, rgba(247, 181, 41, 0.22), transparent 22%),
        radial-gradient(circle at 88% 10%, rgba(6, 85, 146, 0.18), transparent 26%),
        linear-gradient(180deg, #fbfdff 0%, #eef6fd 48%, #f8fbff 100%);
}

body.solar-atmosphere-page::before {
    inset: 108px auto auto -92px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 181, 41, 0.22) 0%, rgba(247, 181, 41, 0.14) 34%, transparent 72%);
    filter: blur(4px);
    opacity: 1;
}

body.solar-atmosphere-page::after {
    inset: 142px -72px auto auto;
    width: 540px;
    height: 540px;
    border-radius: 0;
    background: url("../img/solarwalaa/bg-solar-wave.svg") no-repeat center / contain;
    opacity: 0.24;
    filter: none;
}

body.solar-atmosphere-page .hero-section--solar-atmosphere {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding-bottom: 96px;
}

body.solar-atmosphere-page .hero-section--solar-atmosphere::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 20%, rgba(255, 205, 74, 0.5), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 24%);
    pointer-events: none;
    z-index: 0;
}

body.solar-atmosphere-page .hero-section--solar-atmosphere::after {
    content: "";
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 0;
    height: 240px;
    background: url("../img/solarwalaa/bg-solar-wave.svg") no-repeat bottom center / cover;
    opacity: 0.34;
    pointer-events: none;
    z-index: 0;
}

body.solar-atmosphere-page .hero-section--solar-atmosphere .container {
    position: relative;
    z-index: 1;
}

body.solar-atmosphere-page .hero-shell {
    background: linear-gradient(145deg, rgba(5, 31, 58, 0.24), rgba(64, 57, 112, 0.16));
}

body.solar-atmosphere-page .hero-shell::before {
    inset: -34px auto auto -24px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(247, 181, 41, 0.46), transparent 68%);
    filter: blur(8px);
}

body.solar-atmosphere-page .hero-shell::after {
    inset: auto -54px 18px auto;
    width: min(38vw, 520px);
    height: min(30vw, 380px);
    border-radius: 0;
    background: url("../img/solarwalaa/bg-solar-panel.svg") no-repeat center / contain;
    opacity: 0.24;
    filter: none;
}

body.solar-atmosphere-page .hero-slide-bg {
    filter: saturate(1.08) contrast(1.03) brightness(0.94);
}

body.solar-atmosphere-page .hero-slide--one .hero-slide-scrim {
    background: linear-gradient(118deg, rgba(3, 23, 48, 0.88), rgba(6, 85, 146, 0.62) 52%, rgba(247, 181, 41, 0.2) 100%);
}

body.solar-atmosphere-page .hero-slide--two .hero-slide-scrim {
    background: linear-gradient(120deg, rgba(10, 32, 28, 0.84), rgba(6, 85, 146, 0.58) 52%, rgba(247, 181, 41, 0.18) 100%);
}

body.solar-atmosphere-page .hero-slide--three .hero-slide-scrim {
    background: linear-gradient(120deg, rgba(32, 22, 48, 0.84), rgba(6, 85, 146, 0.56) 50%, rgba(237, 50, 55, 0.18) 100%);
}

body.solar-atmosphere-page .hero-copy {
    position: relative;
    overflow: hidden;
    max-width: 680px;
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(6, 18, 39, 0.72), rgba(8, 35, 67, 0.48));
    box-shadow: 0 28px 60px rgba(3, 10, 24, 0.28);
}

body.solar-atmosphere-page .hero-copy::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/solarwalaa/bg-solar-panel.svg") no-repeat right bottom / 320px auto;
    opacity: 0.14;
    pointer-events: none;
}

body.solar-atmosphere-page .hero-copy > * {
    position: relative;
    z-index: 1;
}

body.solar-atmosphere-page .hero-copy p {
    color: rgba(255, 255, 255, 0.82);
}

body.solar-atmosphere-page .hero-chip-row .sw-chip {
    background: rgba(255, 255, 255, 0.14);
}

body.solar-atmosphere-page .section-solar {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

body.solar-atmosphere-page .section-solar > .container {
    position: relative;
    z-index: 1;
}

body.solar-atmosphere-page .section-solar::before,
body.solar-atmosphere-page .section-solar::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

body.solar-atmosphere-page .section-solar--grid::before {
    inset: 48px 0 24px;
    background: url("../img/solarwalaa/bg-solar-panel.svg") center top / 360px auto repeat;
    opacity: 0.18;
}

body.solar-atmosphere-page .section-solar--grid::after {
    inset: 34px auto auto -40px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(247, 181, 41, 0.22), transparent 72%);
}

body.solar-atmosphere-page .section-solar--wave::before {
    left: 36%;
    right: -6%;
    bottom: 10px;
    height: 240px;
    background: url("../img/solarwalaa/bg-solar-wave.svg") no-repeat bottom right / cover;
    opacity: 0.18;
}

body.solar-atmosphere-page .section-solar--wave::after {
    top: 24px;
    left: 6%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(247, 181, 41, 0.14), transparent 70%);
}

body.solar-atmosphere-page .section-solar--glow {
    background: linear-gradient(180deg, rgba(244, 249, 255, 0.72), rgba(236, 245, 252, 0.9));
}

body.solar-atmosphere-page .section-solar--glow::before {
    top: 50px;
    right: -44px;
    width: 420px;
    height: 260px;
    background: url("../img/solarwalaa/bg-solar-panel.svg") no-repeat center / contain;
    opacity: 0.16;
}

body.solar-atmosphere-page .section-solar--glow::after {
    left: -60px;
    bottom: -30px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(6, 85, 146, 0.16), transparent 70%);
}

body.solar-atmosphere-page .section-solar--collection::before {
    inset: 0 0 auto;
    height: 170px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
}

body.solar-atmosphere-page .section-solar--collection::after {
    top: 28px;
    right: -70px;
    width: 560px;
    height: 280px;
    background: url("../img/solarwalaa/bg-solar-wave.svg") no-repeat center / contain;
    opacity: 0.16;
    transform: rotate(-4deg);
}

body.solar-atmosphere-page .section-solar--showcase::before {
    inset: 38px 2.5% 38px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(6, 85, 146, 0.06), rgba(88, 138, 62, 0.08) 52%, rgba(237, 50, 55, 0.05));
}

body.solar-atmosphere-page .section-solar--showcase::after {
    left: 0;
    right: 0;
    bottom: 8px;
    height: 200px;
    background: url("../img/solarwalaa/bg-solar-panel.svg") center bottom / 360px auto repeat;
    opacity: 0.12;
}

body.solar-atmosphere-page .section-solar--cta::before {
    inset: auto auto 20px -40px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(247, 181, 41, 0.2), transparent 72%);
}

body.solar-atmosphere-page .surface-card,
body.solar-atmosphere-page .service-card,
body.solar-atmosphere-page .product-card,
body.solar-atmosphere-page .quote-card,
body.solar-atmosphere-page .gallery-card {
    border-color: rgba(11, 50, 82, 0.12);
}

body.solar-atmosphere-page .surface-card,
body.solar-atmosphere-page .service-card,
body.solar-atmosphere-page .quote-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 252, 0.9));
}

body.solar-atmosphere-page .product-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 248, 253, 0.94));
}

body.solar-atmosphere-page .product-card,
body.solar-atmosphere-page .service-card,
body.solar-atmosphere-page .image-panel,
body.solar-atmosphere-page .quote-card {
    box-shadow: 0 24px 52px rgba(7, 18, 39, 0.1);
}

body.solar-atmosphere-page .gallery-card {
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 30px;
    box-shadow: var(--sw-shadow-md);
}

body.solar-atmosphere-page .gallery-card::before {
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 181, 41, 0.34), transparent 72%);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

body.solar-atmosphere-page .section-kicker {
    color: #567f32;
}

body.solar-atmosphere-page .section-kicker::before,
body.solar-atmosphere-page .section-kicker::after {
    background: linear-gradient(90deg, rgba(6, 85, 146, 0.18), rgba(88, 138, 62, 0.84));
}

body.solar-atmosphere-page .cta-banner--solar {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(4, 31, 59, 0.98), rgba(6, 85, 146, 0.9) 52%, rgba(88, 138, 62, 0.84) 100%);
    box-shadow: 0 28px 64px rgba(7, 18, 39, 0.24);
}

body.solar-atmosphere-page .cta-banner--solar::before {
    content: "";
    position: absolute;
    inset: -10% -10% 0 30%;
    background: url("../img/solarwalaa/bg-solar-wave.svg") no-repeat right bottom / cover;
    opacity: 0.2;
    pointer-events: none;
}

body.solar-atmosphere-page .cta-banner--solar::after {
    content: "";
    position: absolute;
    inset: auto auto -90px -30px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(247, 181, 41, 0.36), transparent 72%);
    pointer-events: none;
}

body.solar-atmosphere-page .cta-banner--solar > * {
    position: relative;
    z-index: 1;
}

body.solar-atmosphere-page .site-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #081426 0%, #0b1f3a 100%);
}

body.solar-atmosphere-page .site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/solarwalaa/bg-solar-footer.svg") center / cover no-repeat;
    pointer-events: none;
}

body.solar-atmosphere-page .site-footer::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(247, 181, 41, 0.18), transparent 72%);
    pointer-events: none;
}

body.solar-atmosphere-page .site-footer .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 991.98px) {
    body.solar-atmosphere-page::after {
        width: 360px;
        height: 360px;
        inset: 180px -120px auto auto;
        opacity: 0.18;
    }

    body.solar-atmosphere-page .hero-section--solar-atmosphere {
        padding-bottom: 76px;
    }

    body.solar-atmosphere-page .hero-section--solar-atmosphere::after {
        height: 160px;
        opacity: 0.28;
    }

    body.solar-atmosphere-page .hero-shell::after {
        width: 280px;
        height: 200px;
        inset: auto -42px 18px auto;
        opacity: 0.18;
    }

    body.solar-atmosphere-page .section-solar--wave::before,
    body.solar-atmosphere-page .section-solar--collection::after {
        left: 12%;
        right: -12%;
    }
}

@media (max-width: 767.98px) {
    body.solar-atmosphere-page::before {
        width: 260px;
        height: 260px;
        inset: 120px auto auto -60px;
    }

    body.solar-atmosphere-page::after {
        width: 240px;
        height: 240px;
        inset: 190px -70px auto auto;
        opacity: 0.16;
    }

    body.solar-atmosphere-page .hero-section--solar-atmosphere::before {
        background: radial-gradient(circle at 20% 16%, rgba(255, 205, 74, 0.32), transparent 18%);
    }

    body.solar-atmosphere-page .hero-section--solar-atmosphere::after,
    body.solar-atmosphere-page .section-solar--wave::before,
    body.solar-atmosphere-page .section-solar--collection::after,
    body.solar-atmosphere-page .section-solar--showcase::after {
        opacity: 0.12;
    }

    body.solar-atmosphere-page .hero-copy::after {
        background-size: 220px auto;
        opacity: 0.12;
    }

    body.solar-atmosphere-page .section-solar--grid::before,
    body.solar-atmosphere-page .section-solar--glow::before {
        background-size: 240px auto;
        opacity: 0.12;
    }

    body.solar-atmosphere-page .section-solar--showcase::before {
        inset: 20px 0 20px;
        border-radius: 28px;
    }
}

@media (max-width: 575.98px) {
    body.solar-atmosphere-page .hero-shell::after,
    body.solar-atmosphere-page .section-solar--grid::before,
    body.solar-atmosphere-page .section-solar--glow::before,
    body.solar-atmosphere-page .section-solar--showcase::after {
        opacity: 0.08;
    }
}

/* Alternate homepage concept: Panel Blue Dark */
body.solar-atmosphere-page--panel-dark {
    color: rgba(230, 240, 252, 0.82);
    background:
        url("../img/solarwalaa/bg-solar-darkfield.svg") top center / cover fixed no-repeat,
        linear-gradient(180deg, #091426 0%, #0b1d38 34%, #0d2443 64%, #112947 100%);
}

body.solar-atmosphere-page--panel-dark::before {
    inset: 110px auto auto -70px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(247, 181, 41, 0.18), rgba(247, 181, 41, 0.08) 34%, transparent 72%);
}

body.solar-atmosphere-page--panel-dark::after {
    inset: 150px -70px auto auto;
    width: 520px;
    height: 520px;
    background: url("../img/solarwalaa/bg-solar-dark-panel.svg") no-repeat center / contain;
    opacity: 0.18;
}

body.solar-atmosphere-page--panel-dark h1,
body.solar-atmosphere-page--panel-dark h2,
body.solar-atmosphere-page--panel-dark h3,
body.solar-atmosphere-page--panel-dark h4,
body.solar-atmosphere-page--panel-dark h5,
body.solar-atmosphere-page--panel-dark h6,
body.solar-atmosphere-page--panel-dark .section-heading,
body.solar-atmosphere-page--panel-dark .brand-title {
    color: #eef5ff;
}

body.solar-atmosphere-page--panel-dark .site-header {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
}

body.solar-atmosphere-page--panel-dark .navbar-shell {
    border-bottom-color: rgba(6, 85, 146, 0.1);
    background:
        url("../img/solarwalaa/bg-solar-navbar-light.svg") center / cover no-repeat,
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
    box-shadow: 0 16px 34px rgba(4, 16, 31, 0.12);
}

body.solar-atmosphere-page--panel-dark .brand-subtitle,
body.solar-atmosphere-page--panel-dark .site-navbar .nav-link,
body.solar-atmosphere-page--panel-dark .site-navbar .dropdown-toggle {
    color: rgba(16, 44, 76, 0.82);
}

body.solar-atmosphere-page--panel-dark .site-navbar .nav-link:hover,
body.solar-atmosphere-page--panel-dark .site-navbar .nav-link.active,
body.solar-atmosphere-page--panel-dark .site-navbar .nav-link.show {
    color: #0a568e;
}

body.solar-atmosphere-page--panel-dark .site-header .brand-title {
    color: #0d355d;
}

body.solar-atmosphere-page--panel-dark .site-navbar .dropdown-menu {
    border-color: rgba(6, 85, 146, 0.1);
    background:
        url("../img/solarwalaa/bg-solar-navbar-light.svg") center / cover no-repeat,
        rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px rgba(4, 16, 31, 0.14);
}

body.solar-atmosphere-page--panel-dark .site-navbar .dropdown-item {
    color: rgba(16, 44, 76, 0.82);
}

body.solar-atmosphere-page--panel-dark .site-navbar .dropdown-item:hover,
body.solar-atmosphere-page--panel-dark .site-navbar .dropdown-item:focus {
    color: #0a568e;
    background: rgba(88, 138, 62, 0.12);
}

body.solar-atmosphere-page--panel-dark .hero-section--solar-atmosphere::before {
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 194, 71, 0.32), transparent 16%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 26%);
}

body.solar-atmosphere-page--panel-dark .hero-section--solar-atmosphere::after {
    opacity: 0.24;
}

body.solar-atmosphere-page--panel-dark .hero-shell {
    background: linear-gradient(145deg, rgba(5, 16, 31, 0.42), rgba(18, 46, 86, 0.26));
}

body.solar-atmosphere-page--panel-dark .hero-shell::before {
    background: radial-gradient(circle, rgba(247, 181, 41, 0.34), transparent 70%);
}

body.solar-atmosphere-page--panel-dark .hero-shell::after {
    opacity: 0.18;
}

body.solar-atmosphere-page--panel-dark .hero-slide-bg {
    filter: saturate(0.95) contrast(1.04) brightness(0.72);
}

body.solar-atmosphere-page--panel-dark .hero-slide--one .hero-slide-scrim {
    background: linear-gradient(118deg, rgba(4, 14, 29, 0.92), rgba(7, 37, 72, 0.78) 48%, rgba(24, 96, 150, 0.34) 76%, rgba(247, 181, 41, 0.12) 100%);
}

body.solar-atmosphere-page--panel-dark .hero-slide--two .hero-slide-scrim {
    background: linear-gradient(120deg, rgba(4, 18, 28, 0.9), rgba(8, 49, 78, 0.74) 52%, rgba(88, 138, 62, 0.26) 82%, rgba(247, 181, 41, 0.1) 100%);
}

body.solar-atmosphere-page--panel-dark .hero-slide--three .hero-slide-scrim {
    background: linear-gradient(120deg, rgba(10, 16, 30, 0.92), rgba(22, 38, 74, 0.76) 48%, rgba(237, 50, 55, 0.16) 82%, rgba(247, 181, 41, 0.12) 100%);
}

body.solar-atmosphere-page--panel-dark .hero-copy {
    border-color: rgba(151, 196, 235, 0.14);
    background: linear-gradient(180deg, rgba(6, 18, 37, 0.82), rgba(9, 30, 56, 0.58));
    box-shadow: 0 28px 60px rgba(1, 6, 18, 0.38);
}

body.solar-atmosphere-page--panel-dark .hero-copy p,
body.solar-atmosphere-page--panel-dark .section-lead,
body.solar-atmosphere-page--panel-dark .gallery-card-content,
body.solar-atmosphere-page--panel-dark .mini-note {
    color: rgba(225, 236, 249, 0.78);
}

body.solar-atmosphere-page--panel-dark .hero-copy .eyebrow-pill {
    background: rgba(255, 255, 255, 0.9);
    color: #0b2d52;
}

body.solar-atmosphere-page--panel-dark .section-solar--grid,
body.solar-atmosphere-page--panel-dark .section-solar--glow,
body.solar-atmosphere-page--panel-dark .section-solar--collection,
body.solar-atmosphere-page--panel-dark .section-solar--showcase {
    background:
        url("../img/solarwalaa/bg-solar-dark-panel.svg") center / cover no-repeat,
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

body.solar-atmosphere-page--panel-dark .section-solar--wave::before,
body.solar-atmosphere-page--panel-dark .section-solar--collection::after,
body.solar-atmosphere-page--panel-dark .cta-banner--solar::before,
body.solar-atmosphere-page--panel-dark .site-footer::before {
    opacity: 0.16;
}

body.solar-atmosphere-page--panel-dark .section-solar--grid::before {
    background: url("../img/solarwalaa/bg-solar-dark-panel.svg") center top / 340px auto repeat;
    opacity: 0.12;
}

body.solar-atmosphere-page--panel-dark .section-solar--showcase::before {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(88, 138, 62, 0.06) 52%, rgba(14, 108, 180, 0.08)),
        url("../img/solarwalaa/bg-solar-dark-panel.svg") center / cover no-repeat;
}

body.solar-atmosphere-page--panel-dark .surface-card,
body.solar-atmosphere-page--panel-dark .service-card,
body.solar-atmosphere-page--panel-dark .product-card,
body.solar-atmosphere-page--panel-dark .quote-card {
    border-color: rgba(132, 181, 229, 0.14);
    background: linear-gradient(180deg, rgba(11, 31, 58, 0.84), rgba(13, 39, 71, 0.74));
    box-shadow: 0 22px 46px rgba(2, 8, 20, 0.22);
}

body.solar-atmosphere-page--panel-dark .service-card strong,
body.solar-atmosphere-page--panel-dark .surface-card strong,
body.solar-atmosphere-page--panel-dark .detail-card strong,
body.solar-atmosphere-page--panel-dark .icon-list strong,
body.solar-atmosphere-page--panel-dark .product-card-body h3,
body.solar-atmosphere-page--panel-dark .quote-card blockquote {
    color: #eef5ff;
}

body.solar-atmosphere-page--panel-dark .surface-card p,
body.solar-atmosphere-page--panel-dark .service-card p,
body.solar-atmosphere-page--panel-dark .product-card-body p,
body.solar-atmosphere-page--panel-dark .quote-card cite,
body.solar-atmosphere-page--panel-dark .icon-list span,
body.solar-atmosphere-page--panel-dark .check-list li {
    color: rgba(222, 233, 247, 0.76);
}

body.solar-atmosphere-page--panel-dark .image-panel {
    box-shadow: 0 24px 52px rgba(1, 6, 18, 0.24);
}

body.solar-atmosphere-page--panel-dark .image-panel-tag,
body.solar-atmosphere-page--panel-dark .product-tags span,
body.solar-atmosphere-page--panel-dark .sw-chip {
    border-color: rgba(145, 194, 236, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(240, 246, 255, 0.9);
}

body.solar-atmosphere-page--panel-dark .sw-chip i,
body.solar-atmosphere-page--panel-dark .product-tags span i {
    color: #f7b529;
}

body.solar-atmosphere-page--panel-dark .card-link,
body.solar-atmosphere-page--panel-dark .section-kicker {
    color: #98c85d;
}

body.solar-atmosphere-page--panel-dark .section-kicker::before,
body.solar-atmosphere-page--panel-dark .section-kicker::after {
    background: linear-gradient(90deg, rgba(88, 138, 62, 0.2), rgba(152, 200, 93, 0.92));
}

body.solar-atmosphere-page--panel-dark .gallery-card {
    border-color: rgba(185, 219, 246, 0.12);
    box-shadow: 0 24px 48px rgba(1, 6, 18, 0.26);
}

body.solar-atmosphere-page--panel-dark .gallery-card::after {
    background: linear-gradient(180deg, rgba(4, 10, 21, 0.04) 26%, rgba(4, 10, 21, 0.84) 100%);
}

body.solar-atmosphere-page--panel-dark .cta-banner--solar {
    background:
        url("../img/solarwalaa/bg-solar-dark-panel.svg") center / cover no-repeat,
        linear-gradient(135deg, rgba(5, 17, 32, 0.98), rgba(9, 42, 75, 0.92) 54%, rgba(64, 108, 44, 0.88) 100%);
    box-shadow: 0 28px 64px rgba(1, 6, 18, 0.38);
}

body.solar-atmosphere-page--panel-dark .cta-banner--solar p {
    color: rgba(233, 242, 255, 0.78);
}

body.solar-atmosphere-page--panel-dark .sw-btn-outline {
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

body.solar-atmosphere-page--panel-dark .site-footer::before {
    opacity: 0.14;
}

@media (max-width: 991.98px) {
    body.solar-atmosphere-page--panel-dark::after {
        width: 360px;
        height: 360px;
        inset: 182px -120px auto auto;
        opacity: 0.12;
    }
}

@media (max-width: 767.98px) {
    body.solar-atmosphere-page--panel-dark::before {
        width: 250px;
        height: 250px;
        inset: 128px auto auto -54px;
    }

    body.solar-atmosphere-page--panel-dark .hero-slide-bg {
        filter: saturate(0.92) contrast(1.02) brightness(0.68);
    }

    body.solar-atmosphere-page--panel-dark .surface-card,
    body.solar-atmosphere-page--panel-dark .service-card,
    body.solar-atmosphere-page--panel-dark .product-card,
    body.solar-atmosphere-page--panel-dark .quote-card {
        background: linear-gradient(180deg, rgba(11, 31, 58, 0.9), rgba(13, 39, 71, 0.82));
    }
}
