/* ============================================
   HYLOSENSE - Custom Styles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary-purple: #9131d0;
    --primary-dark: #000000;
    --primary-white: #ffffff;
    --light-bg: #F2F7FE;
    --text-gray: #666666;
    --transition-speed: 0.3s;
}

/* ---------- Base Styles ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    background-color: #000000;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-purple);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
    background-color: var(--primary-purple);
    color: var(--primary-white);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    position: fixed;
    top: 0;
    z-index: 1001;
    width: 100%;
    display: none;
}

.announcement-bar a {
    color: var(--primary-white);
    text-decoration: none;
    transition: opacity var(--transition-speed);
}

.announcement-bar a:hover {
    color: var(--primary-white);
    opacity: 0.85;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .navbar,
    .navbar.scrolled,
    .page-inner .navbar {
        /* top: 2.5rem; */
    }
}

@media (max-width: 480px) {

    .navbar,
    .navbar.scrolled,
    .page-inner .navbar {
        /* top: 3rem; */
    }
}

/* ---------- Navigation ---------- */
.navbar {
    padding: 1rem 4rem;
    background: transparent;
    position: absolute;
    /* top: 2rem; */
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-speed);
}

.navbar>.container {
    max-width: 100%;
    padding: 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    /* top: 2rem; */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    height: 40px;
    border: none;
    outline: none;
}

.navbar-nav .nav-link {
    color: var(--primary-white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color var(--transition-speed);
}

.navbar.scrolled .nav-link {
    color: var(--primary-white);
}

.navbar-nav .nav-link:hover {
    text-decoration: underline;
}

.navbar-nav .nav-link.active {
    color: var(--primary-white);
}

/* Dropdown hover */
.navbar-nav .dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    text-decoration: underline;
}

.btn-cta {
    background-color: var(--primary-purple);
    color: var(--primary-white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: all var(--transition-speed);
}

.btn-cta:hover {
    background-color: var(--primary-white);
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

/* ---------- Hero Section ---------- */
.hero-section {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    /* align-items: flex-end; */
    justify-content: end;
    text-align: left;
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
    flex-direction: column;
    background: radial-gradient(140% 120% at 68% 8%, #a061e0 0%, #7a45c8 38%, #50308f 70%, #38215f 100%);
}

.hero-section::before {
    display: none;
}

/* Contrast overlay between the animated background and the hero text */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(40, 20, 70, 0.10) 0%, rgba(40, 20, 70, 0) 28%, rgba(30, 15, 55, 0) 50%, rgba(26, 14, 46, 0.58) 100%),
        linear-gradient(60deg, rgba(30, 15, 55, 0.45) 0%, rgba(40, 20, 70, 0) 48%),
        radial-gradient(135% 135% at 50% 38%, transparent 66%, rgba(20, 10, 44, 0.32) 100%);
}

/* ===================== Animated hero background ===================== */
.hero-anim {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-anim .aurora {
    position: absolute;
    inset: -30%;
    filter: blur(70px);
    will-change: transform;
    transform: translateZ(0);
}

.hero-anim .blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    will-change: transform, opacity;
    transform: translateZ(0);
    opacity: .72;
}

.hero-anim .blob.b1 {
    width: 60vw;
    height: 60vw;
    top: -12vw;
    left: -8vw;
    background: radial-gradient(circle at 50% 50%, rgba(168, 82, 228, 1) 0%, rgba(145, 49, 208, .5) 38%, rgba(145, 49, 208, 0) 68%);
    animation: heroDrift1 26s ease-in-out infinite -6s;
}

.hero-anim .blob.b2 {
    width: 55vw;
    height: 55vw;
    top: -6vw;
    right: -6vw;
    background: radial-gradient(circle at 50% 50%, rgba(140, 72, 210, .95) 0%, rgba(109, 40, 184, .45) 40%, rgba(109, 40, 184, 0) 70%);
    animation: heroDrift2 32s ease-in-out infinite -11s;
}

.hero-anim .blob.b3 {
    width: 48vw;
    height: 48vw;
    bottom: -10vw;
    left: 18vw;
    background: radial-gradient(circle at 50% 50%, rgba(96, 142, 255, .7) 0%, rgba(130, 80, 225, .3) 42%, rgba(130, 80, 225, 0) 70%);
    animation: heroDrift3 38s ease-in-out infinite -19s;
}

.hero-anim .blob.b4 {
    width: 38vw;
    height: 38vw;
    top: 24vw;
    left: 32vw;
    background: radial-gradient(circle at 50% 50%, rgba(205, 140, 255, .65) 0%, rgba(168, 90, 235, .25) 45%, rgba(168, 90, 235, 0) 72%);
    animation: heroDrift4 30s ease-in-out infinite -14s;
}

.hero-anim .curtain {
    position: absolute;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 120%;
    background: conic-gradient(from 200deg at 50% 40%,
            rgba(145, 49, 208, 0) 0deg,
            rgba(145, 49, 208, .22) 60deg,
            rgba(63, 116, 255, .18) 130deg,
            rgba(186, 110, 255, .25) 210deg,
            rgba(145, 49, 208, 0) 300deg,
            rgba(145, 49, 208, 0) 360deg);
    filter: blur(40px);
    mix-blend-mode: screen;
    opacity: .72;
    will-change: transform, opacity;
    animation: heroCurtain 44s linear infinite -20s;
}

@keyframes heroDrift1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: .55;
    }

    33% {
        transform: translate(8vw, 5vw) scale(1.12);
        opacity: .7;
    }

    66% {
        transform: translate(-4vw, 3vw) scale(.95);
        opacity: .45;
    }
}

@keyframes heroDrift2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1.05);
        opacity: .5;
    }

    40% {
        transform: translate(-7vw, 6vw) scale(.92);
        opacity: .65;
    }

    70% {
        transform: translate(3vw, -4vw) scale(1.15);
        opacity: .5;
    }
}

@keyframes heroDrift3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: .5;
    }

    50% {
        transform: translate(6vw, -7vw) scale(1.18);
        opacity: .7;
    }
}

@keyframes heroDrift4 {

    0%,
    100% {
        transform: translate(0, 0) scale(.95);
        opacity: .4;
    }

    45% {
        transform: translate(-9vw, -5vw) scale(1.1);
        opacity: .6;
    }

    75% {
        transform: translate(5vw, 6vw) scale(1);
        opacity: .35;
    }
}

@keyframes heroCurtain {
    0% {
        transform: rotate(0deg) scale(1.05);
    }

    50% {
        transform: rotate(180deg) scale(1.18);
    }

    100% {
        transform: rotate(360deg) scale(1.05);
    }
}

.hero-anim .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(145, 49, 208, .10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(145, 49, 208, .10) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(120% 90% at 60% 75%, #000 25%, transparent 80%);
    mask-image: radial-gradient(120% 90% at 60% 75%, #000 25%, transparent 80%);
    opacity: .16;
    will-change: transform;
    animation: heroGridPan 60s linear infinite -30s;
}

@keyframes heroGridPan {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-64px, -64px, 0);
    }
}

.hero-anim .pcanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

    .hero-anim .blob,
    .hero-anim .curtain,
    .hero-anim .hero-grid {
        animation: none !important;
    }
}

/* Mobile: cheaper paint so scrolling stays smooth (big blurred, screen-blended
   layers are expensive to recomposite on phone GPUs). */
@media (max-width: 768px) {

    .hero-anim .aurora {
        filter: blur(48px);
    }

    .hero-anim .curtain {
        filter: blur(28px);
    }

    .hero-anim .blob,
    .hero-anim .curtain,
    .hero-anim .hero-grid {
        animation: none;
    }
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(-2%, -1%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    padding-left: 80px;
    padding-bottom: 40px;
}

.hero-content h1 {
    font-size: 3.7rem;
    font-weight: 100;
    margin-bottom: 0;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-purple);
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 100;
    line-height: 1.5;
}

.hero-arrow {
    display: inline-block;
    color: var(--primary-white);
    font-size: 2rem;
    transition: transform var(--transition-speed);
}

.hero-arrow:hover {
    color: var(--primary-white);
    transform: translateY(5px);
}

/* ---------- Clients Logo Section ---------- */
.clients-section {
    padding: 2rem 0;
    background: var(--primary-dark);
}

.clients-section h2 {
    text-align: center;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: marquee var(--marquee-duration, 20s) linear infinite;
}

.logo-set {
    display: flex;
    flex-shrink: 0;
}

.logo-set img {
    height: 35px;
    margin: 0 3rem;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-speed);
    flex-shrink: 0;
}

.logo-set img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.nda-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    padding-left: 80px;
    margin-top: 10px;
}

/* ---------- Weather Cost Impact Section ---------- */
.weather-cost-section {
    padding: 6rem 0;
    background: var(--primary-dark);
    color: var(--primary-white);
}

.weather-cost-header {
    margin-bottom: 3rem;
}

.weather-cost-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.weather-cost-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

.weather-cost-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.weather-stat {
    border-left: 3px solid var(--primary-purple);
    padding-left: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--primary-white);
}

.stat-context {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.weather-cost-narrative {}

.weather-cost-narrative p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.weather-cost-narrative p:last-child {
    margin-bottom: 0;
}

.weather-cost-sources {
    margin-top: 2rem;
}

.weather-cost-sources p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .weather-cost-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .weather-cost-header h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .weather-cost-section {
        padding: 3rem 0;
    }

    .weather-cost-header {
        margin-bottom: 2.5rem;
    }

    .weather-cost-header h2 {
        font-size: 1.75rem;
    }

    .weather-cost-lead {
        font-size: 1rem;
    }

    .weather-cost-stats {
        margin-bottom: 2.5rem;
    }

    .weather-cost-narrative p {
        font-size: 0.95rem;
    }
}

/* ---------- Shared Section Header ---------- */
.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

/* ---------- Savings Calculator Section ---------- */
.calc-section {
    padding: 6rem 0;
    background: var(--primary-white);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.calc-inputs {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2.25rem;
}

.calc-field {
    margin-bottom: 1.75rem;
}

.calc-field:last-child {
    margin-bottom: 0;
}

.calc-asset-btns {
    display: flex;
    gap: 0.6rem;
}

.calc-asset-btn {
    flex: 1;
    padding: 0.85rem 1rem;
    border: 1.5px solid #dfe3ee;
    border-radius: 10px;
    background: var(--primary-white);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    transition: all var(--transition-speed);
}

.calc-asset-btn:hover {
    border-color: var(--primary-purple);
    color: var(--primary-dark);
}

.calc-asset-btn.active {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--primary-white);
}

.calc-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.calc-val {
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1.05rem;
}

.calc-hint {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: none;
    letter-spacing: 0;
    margin-top: 1px;
}

.calc-field input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 4px;
    background: #dfe3ee;
    outline: none;
}

.calc-field input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-purple);
    border: 3px solid var(--primary-white);
    box-shadow: 0 2px 8px rgba(145, 49, 208, 0.4);
    cursor: pointer;
    transition: transform var(--transition-speed);
}

.calc-field input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-field input[type=range]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-purple);
    border: 3px solid var(--primary-white);
    box-shadow: 0 2px 8px rgba(145, 49, 208, 0.4);
    cursor: pointer;
}

.calc-result {
    background: linear-gradient(160deg, #2a1240 0%, var(--primary-purple) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: var(--primary-white);
    display: flex;
    flex-direction: column;
}

.calc-result-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.calc-result-value {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    margin: 0.5rem 0 0.25rem;
}

.calc-bars {
    margin: 1.75rem 0 2rem;
}

.calc-bar-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr auto;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.calc-bar-name {
    font-size: 0.85rem;
    opacity: 0.85;
}

.calc-bar-track {
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.calc-bar-fill {
    height: 100%;
    border-radius: 5px;
    transition: width var(--transition-speed);
}

.calc-bar-fill.base {
    background: rgba(255, 255, 255, 0.55);
}

.calc-bar-fill.hylo {
    background: var(--primary-white);
}

.calc-bar-num {
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 56px;
    text-align: right;
}

.calc-cta {
    margin-top: auto;
    align-self: flex-end;
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem !important;
    border-radius: 10px !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.calc-cta i {
    font-size: 0.8rem;
    transition: transform var(--transition-speed);
}

.calc-cta:hover i {
    transform: translateX(3px);
}

.calc-disclaimer {
    margin: 1rem 0 0;
    font-size: 0.7rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.6);
}

.calc-adv-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 0.5rem;
    padding: 1.1rem 0 0;
    border: none;
    border-top: 1px solid #dfe3ee;
    background: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-purple);
    cursor: pointer;
}

.calc-adv-toggle i {
    transition: transform var(--transition-speed);
}

.calc-adv-toggle.is-open i {
    transform: rotate(180deg);
}

.calc-advanced {
    display: none;
    padding-top: 1.6rem;
}

.calc-advanced.is-open {
    display: block;
}

.calc-info {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
    color: var(--primary-purple);
    cursor: help;
    vertical-align: middle;
}

.calc-info i {
    font-size: 0.9rem;
}

.calc-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: -8px;
    width: 300px;
    max-width: 76vw;
    background: #1c0f2b;
    color: #fff;
    padding: 0.8rem 0.95rem;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.55;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity var(--transition-speed), transform var(--transition-speed), visibility var(--transition-speed);
    z-index: 30;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
    pointer-events: none;
}

.calc-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 14px;
    border: 6px solid transparent;
    border-top-color: #1c0f2b;
}

.calc-info:hover .calc-tooltip,
.calc-info:focus .calc-tooltip,
.calc-info:focus-within .calc-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile: the info icon sits near the left edge, so a fixed-width tooltip
   anchored to it overflows the viewport (black bar on the right). Anchor it to
   the full field instead, so it stays within the card. */
@media (max-width: 768px) {
    .calc-field {
        position: relative;
    }

    .calc-info {
        position: static;
    }

    .calc-tooltip {
        left: 0;
        right: 0;
        width: auto;
        max-width: none;
    }

    .calc-tooltip::after {
        left: 18px;
    }
}

@media (max-width: 900px) {
    .calc-section {
        padding: 3rem 0;
    }

    .calc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calc-result-value {
        font-size: 3rem;
    }
}

/* ---------- Solution Section ---------- */
.solution-section {
    padding: 6rem 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.solution-section .container {
    position: relative;
    z-index: 2;
}

.solution-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(242, 247, 254, 0.85);
    z-index: 1;
}

.solution-header {
    margin-bottom: 3rem;
}

.solution-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.solution-lead {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.solution-feature {
    background: var(--primary-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.solution-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(145, 49, 208, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.solution-feature-icon i {
    font-size: 1.4rem;
    color: var(--primary-purple);
}

.solution-step {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.solution-feature h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.solution-feature p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.solution-feature-value {
    margin-top: 1rem !important;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--primary-dark) !important;
    font-weight: 700 !important;
}

/* ---------- Generic-vs-hylosense comparison ---------- */
.vs-intro {
    margin: 2.75rem 0 1.1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
}

.vs-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.vs-col {
    background: var(--primary-white);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.vs-col.vs-hylo {
    border-color: var(--primary-purple);
    box-shadow: 0 8px 34px rgba(145, 49, 208, 0.16);
}

.vs-head {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.vs-generic .vs-head {
    color: var(--text-gray);
}

.vs-hylo .vs-head {
    color: var(--primary-purple);
}

.vs-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vs-col li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 0.6rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.vs-col li:first-child {
    border-top: none;
}

.vs-col li i {
    font-size: 0.95rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.vs-generic li {
    color: var(--text-gray);
}

.vs-generic li i {
    color: #b6aec6;
}

.vs-hylo li {
    color: var(--primary-dark);
    font-weight: 600;
}

.vs-hylo li i {
    color: var(--primary-purple);
    font-size: 1.425rem;
    margin-top: 0;
}

@media (max-width: 768px) {
    .vs-block {
        grid-template-columns: 1fr;
    }
}

.solution-cta {
    text-align: left;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1.05rem;
    transition: gap var(--transition-speed), color var(--transition-speed);
}

.solution-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

@media (max-width: 991px) {
    .solution-features {
        grid-template-columns: 1fr;
    }

    .solution-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .solution-section {
        padding: 3rem 0;
    }

    .solution-header h2 {
        font-size: 1.75rem;
    }

    .solution-lead {
        font-size: 1rem;
    }
}

/* ---------- Energy Sectors Section ---------- */
.sectors-section {
    padding: 6rem 0;
    background: var(--primary-white);
}

.sectors-image-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.sectors-image-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(145, 49, 208, 0.7) 0%, rgba(145, 49, 208, 0.5) 50%, rgba(145, 49, 208, 0.3) 100%);
    z-index: 0;
}

.sectors-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.sectors-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    z-index: 1;
}

.sectors-image-overlay h2 {
    font-size: 2.8rem;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
}

.sectors-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 0;
}

.sectors-list {
    padding-left: 2rem;
}

a.sector-item {
    display: block;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed);
}

a.sector-item:last-child {
    border-bottom: none;
}

a.sector-item:hover {
    color: inherit;
}

a.sector-item:hover h4,
a.sector-item:hover i {
    color: var(--primary-purple);
}

.sector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.sector-header h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.sector-header i {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.sector-item p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .sectors-image-box {
        min-height: 145px;
        max-height: 145px !important;
        margin-bottom: 2rem;
        height: 145px;
    }

    .sectors-list {
        padding-left: 0;
    }

    .sector-header h4 {
        font-size: 1.4rem;
    }
}

/* ---------- Client Showcases Section ---------- */
.showcases-section {
    padding: 6rem 0;
    background: var(--light-bg);
}


.showcase-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.showcase-card {
    background: var(--primary-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.showcase-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.showcase-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.showcase-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.showcase-card-logo {
    height: 32px;
    width: auto;
    flex-shrink: 0;
}

.showcase-card-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.showcase-card-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

@media (max-width: 991px) {
    .showcase-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .showcase-card-image {
        height: 180px;
    }
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 6rem 0;
    background: var(--primary-dark);
    color: var(--primary-white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-section h3 {
    font-size: 1.8rem;
    display: inline-block;
    border-bottom: 2px solid var(--primary-purple);
    font-weight: normal;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 700px;
    opacity: 0.85;
    margin-bottom: 2rem;
    display: block;
    line-height: 1.5;
}

.cta-video {
    border-radius: 12px;
    overflow: hidden;
    margin-left: 4rem;
}

.cta-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .cta-video {
        margin-top: 3rem;
        margin-left: 0;
    }
}

.btn-cta-light {
    background-color: var(--primary-purple);
    color: var(--primary-white) !important;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: all var(--transition-speed);
}

.btn-cta-light:hover {
    background-color: var(--primary-white);
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

/* ---------- Inner Pages (non-index) ---------- */
.page-inner .navbar {
    background: var(--primary-dark);
    position: sticky;
    top: 0rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.page-inner .navbar .nav-link {
    color: var(--primary-white);
}

.page-inner .navbar .nav-link:hover {
    text-decoration: underline;
}

.team-hero {
    padding: 5rem 0;
    background: var(--primary-white);
}

.team-hero h1 {
    font-size: 2.8rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.team-intro {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.team-intro strong {
    color: var(--primary-dark);
}

.investors-title {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.investors-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    align-items: center;
}

.investors-logos img {
    height: 35px;
    width: auto;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-speed);
}

.investors-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 576px) {
    .investors-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

.team-card {
    text-align: center;
    padding: 2rem;
    background: var(--primary-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-dark);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.9rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.team-bio {
    list-style: disc;
    text-align: left;
    padding-left: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.team-bio li {
    margin-bottom: 0.5rem;
}

.team-social {
    margin-top: 1.5rem;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    margin: 0 0.25rem;
    color: var(--primary-dark);
    transition: all var(--transition-speed);
}

.team-social a:hover {
    background: var(--primary-purple);
    color: var(--primary-white);
}

/* Global Presence / Gallery Section */
.global-presence {
    padding: 5rem 0;
    background: var(--light-bg);
    border-top: 1px solid #e5e5e5;
}

.global-presence h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.global-intro {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--primary-white);
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-hero h1 {
        font-size: 2.2rem;
    }

    .team-hero,
    .global-presence {
        padding: 3rem 0;
    }

    .investors-logos img {
        height: 30px;
    }
}

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

    .team-photo {
        width: 120px;
        height: 120px;
    }
}

/* ---------- Industries Page ---------- */
.industries-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.industries-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.industries-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(145, 49, 208, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.industries-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.industries-hero h1 {
    font-size: 3rem;
    color: var(--primary-white);
    margin: 0;
}

/* Industry Sections */
.industry-section {
    padding: 5rem 0;
}

.industry-light {
    background: var(--light-bg);
}

.industry-white {
    background: var(--primary-white);
}

.industry-section h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-purple);
    display: inline-block;
}

.industry-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.industry-section .row {
    align-items: stretch !important;
    --bs-gutter-x: 4rem;
}

.industry-section .row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.industry-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-height: 300px;
}

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

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.industry-light .feature-card {
    background: var(--primary-white);
}

.industry-white .feature-card {
    background: var(--light-bg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(145, 49, 208, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.feature-card h5 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Featured Client */
.featured-client {
    background: var(--primary-white);
    border-left: 4px solid var(--primary-purple);
    padding: 1.25rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.industry-white .featured-client {
    background: var(--light-bg);
}

.featured-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.featured-client p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .industries-hero {
        height: 200px;
    }

    .industries-hero h1 {
        font-size: 2.5rem;
    }

    .industry-image {
        margin-bottom: 2rem;
        min-height: unset;
        height: 100px;
        max-height: 110px;
    }

    .gallery-item {
        aspect-ratio: unset;
        max-height: 165px;
    }

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

    .industry-section .order-lg-1,
    .industry-section .order-lg-2 {
        order: unset;
    }
}

@media (max-width: 576px) {
    .industries-hero h1 {
        font-size: 2rem;
    }

    .industry-section {
        padding: 3rem 0;
    }

    .industry-section h2 {
        font-size: 1.5rem;
    }
}

/* ---------- Tech Page ---------- */
.industries-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.tech-intro {
    padding: 4rem 0;
    background: var(--primary-white);
}

.tech-intro .lead {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Tech Timeline */
.tech-timeline {
    position: relative;
}

.tech-step {
    position: relative;
}

.tech-step .container {
    position: relative;
}

.tech-step .container::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-purple);
    opacity: 0.3;
}

.tech-step:first-of-type .container::before {
    top: 5rem;
    opacity: 1;
}

.tech-step:last-of-type .container::before {
    bottom: auto;
    height: 6rem;
}

.step-number {
    position: absolute;
    left: -65px;
    top: 5rem;
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(145, 49, 208, 0.3);
}

@media (max-width: 1399px) {

    .tech-step .container::before,
    .step-number {
        display: none;
    }
}

.tech-highlight {
    background: rgba(145, 49, 208, 0.08);
    border-left: 4px solid var(--primary-purple);
    padding: 1.25rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tech-highlight i {
    font-size: 1.5rem;
    color: var(--primary-purple);
    flex-shrink: 0;
}

.tech-highlight p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.variables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.variable-item {
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.variable-item i {
    font-size: 1.5rem;
    color: var(--primary-purple);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.variable-item h5 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.variable-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ---------- Trusted By Label ---------- */
.trusted-by-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding-left: 80px;
    margin-bottom: 0.5rem;
}

.api-example {
    background: var(--primary-dark);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.api-example h5 {
    color: var(--primary-white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.api-example pre {
    margin-bottom: 0;
    background: transparent;
}

.api-example code {
    color: #a8d4a8;
    font-size: 0.85rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .variables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .tech-intro {
        padding: 2.5rem 0;
    }

    .tech-highlight {
        flex-direction: column;
        gap: 0.75rem;
    }

    .variable-item {
        flex-direction: column;
        text-align: center;
    }

    .variable-item i {
        margin: 0 auto;
    }
}

/* ---------- Contact Page ---------- */
.contact-hero {
    padding: 5rem 0;
    background: var(--primary-white);
    min-height: calc(100dvh - 200px);
}

.contact-hero h1 {
    font-size: 2.8rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-email-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.contact-email-cta p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.contact-email-cta .btn-outline-light {
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.contact-email-cta .btn-outline-light:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--primary-white);
}

.booking-widget {
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.booking-widget iframe {
    display: block;
    min-height: 812px;
}

@media (max-width: 991px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .booking-widget {
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 3rem 0;
    }

    .booking-widget iframe {
        min-height: 500px;
    }
}

/* ---------- Footer ---------- */
.footer {
    background: var(--primary-dark);
    color: var(--primary-white);
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed);
}

.footer-nav a:hover {
    color: var(--primary-purple);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--primary-purple);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    transition: all var(--transition-speed);
}

.social-links a:hover {
    background: var(--primary-purple);
    color: var(--primary-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 991px) {

    .cta-video {
        display: none;
    }

    .industry-section .row {
        --bs-gutter-x: 0;
    }

    .nda-note {
        padding-left: 16px;
    }

    .navbar {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 1rem;
    }

    .navbar-nav {
        background: var(--primary-dark);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .sectors-section {
        padding: 1rem 0;
    }

    .tech-intro .lead {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .hero-subtitle {
        line-height: 1.2;
    }

    .value-section p {
        font-size: 1rem;
    }

    .hero-content {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .trusted-by-label {
        padding-left: 2rem;
    }

    .navbar-nav .nav-link {
        color: var(--primary-white);
    }

    .navbar-toggler {
        border: none;
    }


    .navbar-toggler-icon {
        filter: invert(1);
    }

    .navbar.scrolled .navbar-toggler-icon {
        filter: invert(1);
    }

    .hero-content h1 {
        font-size: 40px;
        margin-bottom: 14px;
        line-height: 1;
    }

    .hero-content p {
        font-size: 20px;
        line-height: 1.3;
    }

    .sectors-image-overlay {
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: left;
        padding: 20px;
        height: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {


    .clients-section h2,
    .value-section h2,
    .sectors-section h2,
    .showcases-section h2,
    .cta-section h2 {
        font-size: 1.75rem;
    }

    .value-section,
    .sectors-section,
    .showcases-section,
    .cta-section {
        padding: 3rem 0;
    }

    .clients-section {
        padding: 2.5rem 0;
    }

    .sector-card {
        margin-bottom: 1.5rem;
    }


    .logo-set img {
        height: 35px;
        margin: 0 2rem;
    }
}


/* ---------- Persona Entry Points Section ---------- */
.personas-section {
    padding: 5rem 0;
    background: var(--primary-white);
}

.persona-card {
    display: flex;
    flex-direction: column;
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border: 1.5px solid transparent;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed), transform var(--transition-speed);
}

a.persona-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 8px 32px rgba(145, 49, 208, 0.12);
    transform: translateY(-3px);
    color: inherit;
}

.persona-icon {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.persona-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.persona-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

.persona-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap var(--transition-speed);
}

.persona-card>.persona-link {
    align-self: flex-start;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.78rem;
}

a.persona-card:hover .persona-link {
    gap: 0.65rem;
}

/* ---------- Trust Signals Section ---------- */
.trust-section {
    padding: 4rem 0;
    background: var(--light-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-item {
    text-align: center;
    padding: 1rem;
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
    display: block;
}

.trust-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .personas-section {
        padding: 3rem 0;
    }

    .trust-section {
        padding: 2.5rem 0;
    }

    .personas-section h2,
    .trust-section h2 {
        font-size: 1.75rem;
    }
}