*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --brand: #1B4F8A;
    --brand-dark: #133A6B;
    --brand-darker: #0D2848;
    --brand-light: #E8EFF8;
    --brand-mid: #A8BFD9;
    --text: #0f1117;
    --text-secondary: #5c6070;
    --border: #e4e7ef;
    --bg: #ffffff;
    --bg-surface: #f7f9fc;
    --radius: 10px;
    --radius-lg: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ══════════════════════════════
   ACCURACY ANIMATION SECTION
══════════════════════════════ */
.hw {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    background: #fff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

canvas#dc {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}

.pz {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.pill {
    position: absolute;
    background: #fff;
    border: 0.5px solid #cde2ee;
    box-shadow: 0 4px 20px rgba(21, 101, 141, 0.08), 0 1px 3px rgba(21, 101, 141, 0.04);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #2a4a5a;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.pill.show {
    opacity: 1;
    transform: translateY(0);
}

.p1 {
    top: 22%;
    left: 2%;
}

.p2 {
    top: 66%;
    left: 3%;
}

.p3 {
    top: 16%;
    right: 3%;
}

.p4 {
    top: 68%;
    right: 2%;
}

.p5 {
    top: 43%;
    right: 1%;
}

.hi {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 8%;
}

.bw {
    font-size: clamp(48px, 14vw, 176px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.88;
    margin: 0 0 28px;
    user-select: none;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.bw.show {
    opacity: 1;
    transform: translateY(0);
}

.bw .a {
    color: #072840;
}

.bw .b {
    color: #0a3a55;
}

.bw .c {
    color: #0e4d6b;
}

.bw .d {
    color: #15658d;
}

.bw .e {
    color: #1a7eae;
}

.bw .f {
    color: #1f97ce;
}

.bw .g {
    color: #3aadde;
}

.bw .h {
    color: #55c3e8;
}

.sub {
    font-size: clamp(12px, 1.4vw, 17px);
    color: #6a8090;
    line-height: 1.9;
    max-width: 520px;
    font-weight: 400;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.55s ease 0.2s, transform 0.55s ease 0.2s;
}

.sub.show {
    opacity: 1;
    transform: translateY(0);
}

.stats-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.55s ease 0.35s, transform 0.55s ease 0.35s;
}

.stats-row.show {
    opacity: 1;
    transform: translateY(0);
}

.stat {
    padding: 0 24px;
    text-align: center;
    border-right: 1px solid #e0ecf3;
}

.stat:last-child {
    border-right: none;
}

.stat-val {
    font-size: clamp(18px, 3vw, 36px);
    font-weight: 900;
    color: #0a2233;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-val em {
    color: #15658d;
    font-style: normal;
}

.stat-label {
    font-size: 10.5px;
    color: #9ab0bc;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.heroContainer {
    background: #F0F5FB;
}

.hero {
    max-width: 1500px;
    margin: 0 auto;
    padding: 70px 5% 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 64px);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hero-eyebrow svg {
    width: 13px;
    height: 13px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

h1 {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 20px;
}

h1 .accent {
    color: var(--brand);
}

.hero-sub {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.btn-hero-primary {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--brand);
    padding: 13px 28px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    background: var(--brand-dark);
}

.btn-hero-primary svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-hero-outline {
    font-size: 15px;
    font-weight: 600;
    background: #1B4F8A;
    color: white;
    padding: 13px 28px;
    border-radius: var(--radius);
    border: 1.5px solid var(--brand);
    cursor: pointer;
    transition: background 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-outline:hover {
    background: #2c78cf;
}

.btn-hero-outline svg {
    width: 16px;
    height: 16px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.hero-stats .stat-val {
    font-size: 22px;
    font-weight: 600;
    color: var(--brand);
}

.hero-stats .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
    text-transform: none;
    letter-spacing: normal;
}

.hero-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
}

.image-placeholder {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    border: 1.5px dashed var(--brand-mid);
    background: var(--brand-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

/* Hero Animations */
.rotating-text-wrapper {
    display: inline-block;
    position: relative;
}

.rotating-word {
    display: inline-block;
    color: #1B4F8A;
    position: relative;
    white-space: nowrap;
    animation: fadeSlide 0.6s ease-in-out;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    animation: slideInLeft 1s ease forwards;
}

.hero-image-wrap {
    animation: slideInRight 1s ease forwards;
}

.hero-eyebrow,
.hero-text h1,
.hero-sub,
.hero-btns,
.hero-stats {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.hero-eyebrow {
    animation-delay: 0.2s;
}

.hero-text h1 {
    animation-delay: 0.4s;
}

.hero-sub {
    animation-delay: 0.6s;
}

.hero-btns {
    animation-delay: 0.8s;
}

.hero-stats {
    animation-delay: 1.0s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════
   SOLUTIONS MARQUEE
══════════════════════════════ */
.sol-section {
    padding: 80px 0;
    overflow: hidden;
    background: #ffffff;
}

.sol-header {
    text-align: center;
    padding: 0 5%;
    margin-bottom: 52px;
}

.sol-tag {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sol-header h2 {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.sol-header p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

.marquee-wrap {
    position: relative;
    overflow: hidden;
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: sol-slide 28s linear infinite;
    padding: 12px 4px;
}

.marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes sol-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.sol-card {
    flex-shrink: 0;
    width: 280px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    cursor: pointer;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}

.sol-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 18px 18px 0 0;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.sol-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand);
    box-shadow: 0 12px 40px rgba(27, 79, 138, .12);
}

.sol-card:hover::before {
    transform: scaleX(1);
}

.card-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background .25s;
}

.sol-card:hover .card-icon-wrap {
    background: var(--brand);
}

.card-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .25s;
}

.sol-card:hover .card-icon-wrap svg {
    stroke: #fff;
}

.card-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-mid);
    letter-spacing: .1em;
    margin-bottom: 8px;
    transition: color .25s;
}

.sol-card:hover .card-num {
    color: #7DA3C8;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.card-tags span {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    transition: gap .2s;
}

.sol-card:hover .card-link {
    gap: 10px;
}

.card-link svg {
    width: 14px;
    height: 14px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ══════════════════════════════
   WHY CHOOSE US
══════════════════════════════ */
.wcu {
    padding: 80px 5%;
    background: #F7F9FC;
}

.wcu-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.wcu-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wcu-tag {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 16px;
    width: fit-content;
}

.wcu-left h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.wcu-left p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 40px;
}

.items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .2s;
}

.item:hover,
.item.active {
    background: #fff;
    border-color: var(--border);
    box-shadow: 0 4px 24px rgba(27, 79, 138, .07);
}

.item.active {
    border-color: var(--brand-mid);
}

.item-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}

.item.active .item-icon,
.item:hover .item-icon {
    background: var(--brand-light);
}

.item-icon svg {
    width: 20px;
    height: 20px;
    stroke: #888;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s;
}

.item.active .item-icon svg,
.item:hover .item-icon svg {
    stroke: var(--brand);
}

.item-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.item-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.item-bar {
    height: 2px;
    background: var(--brand-light);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
    display: none;
}

.item.active .item-bar {
    display: block;
}

.item-bar-fill {
    height: 100%;
    background: var(--brand);
    border-radius: 2px;
    animation: barfill 3.5s linear forwards;
}

@keyframes barfill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.wcu-right {
    position: relative;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    background: var(--brand-light);
    border: 1.5px dashed var(--brand-mid);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ══════════════════════════════
   INDUSTRIES CAROUSEL
══════════════════════════════ */
.industries-section {
    background: #0D2848;
    padding: 88px 0;
    overflow: hidden;
}

.ind-header {
    text-align: center;
    padding: 0 5%;
    margin-bottom: 56px;
}

.ind-tag {
    display: inline-block;
    background: rgba(122, 184, 232, 0.1);
    color: #7ab8e8;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 100px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 0.5px solid rgba(122, 184, 232, 0.2);
}

.ind-header h2 {
    font-size: clamp(22px, 3.5vw, 40px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.ind-header h2 span {
    color: #7ab8e8;
}

.ind-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

.carousel-outer {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 4px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.ind-card {
    flex-shrink: 0;
    width: 280px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0a1e38;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.ind-card:hover {
    transform: translateY(-6px);
    border-color: rgba(122, 184, 232, 0.4);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.ind-card-img {
    width: 100%;
    height: 168px;
    position: relative;
    overflow: hidden;
    background: #0f2540;
}

.ind-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    filter: brightness(0.85);
}

.ind-card:hover .ind-card-img img {
    transform: scale(1.05);
    filter: brightness(0.75);
}

.ind-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 30, 56, 0.85) 100%);
    pointer-events: none;
}

.ind-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0f2540 0%, #163252 100%);
}

.ind-card-placeholder svg {
    width: 40px;
    height: 40px;
    stroke: #1B4F8A;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ind-card-placeholder span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ind-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #1B4F8A, #7ab8e8);
    border-radius: 16px 16px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 10;
}

.ind-card:hover::before {
    transform: scaleX(1);
}

.ind-card-body {
    padding: 20px 20px 22px;
}

.ind-card-num {
    font-size: 10px;
    font-weight: 700;
    color: rgba(122, 184, 232, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ind-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.ind-card-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 14px;
}

.ind-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.ind-card-tags span {
    font-size: 10px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(27, 79, 138, 0.25);
    color: #7ab8e8;
    border: 0.5px solid rgba(122, 184, 232, 0.15);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    z-index: 10;
}

.carousel-btn:hover {
    background: #1B4F8A;
    border-color: #1B4F8A;
    transform: translateY(-50%) scale(1.08);
}

.carousel-btn svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.6);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s;
}

.carousel-btn:hover svg {
    stroke: #fff;
}

.carousel-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

.prev-btn {
    left: 8px;
}

.next-btn {
    right: 8px;
}

.carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, width 0.2s;
    padding: 0;
}

.carousel-dot.active {
    background: #7ab8e8;
    width: 20px;
    border-radius: 3px;
}

/* ══════════════════════════════
   DEMO SECTION
══════════════════════════════ */
.demo-section {
    padding: 100px 5%;
    overflow: hidden;
    background: #0D2848;
}

.demo-header {
    text-align: center;
    margin-bottom: 60px;
}

.demo-tag {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.demo-header h2 {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.demo-header p {
    font-size: 15px;
    color: white;
    max-width: 580px;
    margin: 0 auto;
}

.demo-carousel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-stack {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: clamp(280px, 55vw, 700px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.demo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #fff;
}

.center-card {
    width: min(800px, 90%);
    height: clamp(200px, 45vw, 600px);
    z-index: 3;
    transform: scale(1);
}

.left-card {
    width: min(550px, 60%);
    height: clamp(130px, 30vw, 380px);
    left: 0;
    z-index: 1;
    transform: translateX(20px) scale(0.85);
    opacity: 0.6;
}

.left-card img {
    filter: blur(3px);
}

.right-card {
    width: min(550px, 60%);
    height: clamp(130px, 30vw, 380px);
    right: 0;
    z-index: 1;
    transform: translateX(-20px) scale(0.85);
    opacity: 0.6;
}

.right-card img {
    filter: blur(3px);
}

.demo-label {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
}

.demo-arrow {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.demo-arrow:hover {
    background: var(--brand);
}

.demo-arrow:hover svg {
    stroke: white;
}

.demo-arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--brand);
    stroke-width: 2;
    transition: stroke 0.3s;
}

.demo-arrow.left {
    margin-right: 16px;
}

.demo-arrow.right {
    margin-left: 16px;
}

.animate-next {
    animation: slideNext .3s ease;
}

.animate-prev {
    animation: slidePrev .3s ease;
}

@keyframes slideNext {
    0% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateX(-40px) scale(.95);
        opacity: .7;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes slidePrev {
    0% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateX(40px) scale(.95);
        opacity: .7;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-section {
    padding: 70px 5%;
    background: #F0F5FB;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-tag {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.faq-header h2 {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.faq-header p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--brand-mid);
    box-shadow: 0 4px 12px rgba(27, 79, 138, .08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
    gap: 12px;
}

.faq-question:hover {
    background: #fff;
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    width: 20px;
    height: 20px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 0px solid var(--border);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px 24px;
    border-top-width: 1px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    padding-top: 16px;
}

/* ══════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════ */

/* Tablet landscape */
@media (max-width: 1100px) {
    .hero {
        gap: 40px;
        padding: 60px 5%;
    }

    .wcu-inner {
        gap: 48px;
    }

    .carousel-outer {
        padding: 0 52px;
    }
}

/* Tablet portrait */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 5%;
        min-height: auto;
    }

    .hero-image-wrap {
        order: -1;
        max-width: 100%;
    }

    .image-placeholder {
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }

    .hero-sub {
        max-width: 100%;
    }

    .wcu-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wcu-right {
        order: -1;
    }

    .img-placeholder {
        min-height: 280px;
    }

    .carousel-outer {
        padding: 0 48px;
    }

    .ind-card {
        width: 240px;
    }

    .ind-card-img {
        height: 140px;
    }

    /* pills hidden on tablet/mobile — too cramped */
    .p1,
    .p2,
    .p3,
    .p4,
    .p5 {
        display: none;
    }
}

/* Mobile large */
@media (max-width: 680px) {
    .hero {
        padding: 36px 4%;
    }

    h1 {
        font-size: clamp(24px, 7vw, 34px);
    }

    .hero-sub {
        font-size: 14px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stats .stat-val {
        font-size: 18px;
    }

    .sol-section {
        padding: 56px 0;
    }

    .sol-header {
        margin-bottom: 36px;
    }

    .sol-card {
        width: 240px;
        padding: 22px 20px;
    }

    .wcu {
        padding: 56px 4%;
    }

    .wcu-left p {
        margin-bottom: 24px;
    }

    .item {
        padding: 14px;
    }

    .industries-section {
        padding: 56px 0;
    }

    .ind-header {
        padding: 0 4%;
        margin-bottom: 40px;
    }

    .carousel-outer {
        padding: 0 44px;
    }

    .ind-card {
        width: 220px;
    }

    .ind-card-img {
        height: 128px;
    }

    .demo-section {
        padding: 56px 4%;
    }

    .demo-header {
        margin-bottom: 40px;
    }

    .demo-arrow {
        width: 40px;
        height: 40px;
    }

    .demo-arrow.left {
        margin-right: 8px;
    }

    .demo-arrow.right {
        margin-left: 8px;
    }

    .demo-arrow svg {
        width: 18px;
        height: 18px;
    }

    /* hide side cards on small screens — just show center */
    .left-card,
    .right-card {
        display: none;
    }

    .demo-stack {
        height: clamp(200px, 60vw, 380px);
    }

    .center-card {
        width: 100%;
        height: 100%;
        position: relative;
        border-radius: 12px;
    }

    .faq-section {
        padding: 56px 4%;
    }

    .faq-header {
        margin-bottom: 36px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .hw {
        height: 80vh;
        min-height: 420px;
    }

    .bw {
        margin-bottom: 20px;
    }

    .sub {
        font-size: 13px;
        margin-bottom: 32px;
    }

    .stats-row {
        gap: 0;
    }

    .stat {
        padding: 0 14px;
    }
}

/* Mobile small */
@media (max-width: 400px) {
    .hero {
        padding: 28px 4%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .hero-eyebrow {
        font-size: 11px;
    }

    .sol-card {
        width: 210px;
    }

    .carousel-outer {
        padding: 0 36px;
    }

    .ind-card {
        width: 200px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .stats-row {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .stat {
        border-right: none;
        padding: 0;
    }

    .item {
        gap: 12px;
    }

    .item-icon {
        width: 38px;
        height: 38px;
    }

    .faq-question {
        font-size: 13px;
        padding: 14px 16px;
    }

    .demo-carousel {
        flex-direction: column;
        gap: 16px;
    }

    .demo-arrow.left,
    .demo-arrow.right {
        margin: 0;
    }

    .demo-carousel {
        flex-direction: row;
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hw {
        height: 100vh;
        min-height: 320px;
    }

    .hero {
        min-height: auto;
        padding: 32px 5%;
    }

    .bw {
        font-size: clamp(36px, 10vw, 80px);
        margin-bottom: 14px;
    }

    .sub {
        margin-bottom: 20px;
    }
}