
    /* ─── CSS Variables ─── */
:root {
    --primary: #563AFF;
    --primary-dark: #3d20e0;
    --title: #211F54;
    --para: #5A5F96;
    --light: #F7F7FC;
    --gray: #D8D4EB;
    --n8: #fff;
    --accent: #00D998;
    --warning: #FF813A;
}

/* ─── Hero ─── */
.ind-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #EEF0FF 0%, #E5F4FF 55%, #F7F7FC 100%);
    padding: 120px 0 0;
}

.ind-hero::before {
    content: '';
    position: absolute;
    top: -180px; right: -180px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(86,58,255,0.10) 0%, transparent 70%);
    pointer-events: none;
}

.ind-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ind-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(86,58,255,0.08);
    border: 1px solid rgba(86,58,255,0.22);
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
    font-family: "Jost", sans-serif;
}

.ind-hero__title {
    font-family: "Jost", sans-serif;
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--title);
    line-height: 1.15;
    margin-bottom: 18px;
}

.ind-hero__desc {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: var(--para);
    line-height: 1.75;
    margin-bottom: 16px;
}

.ind-hero__checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 32px;
}

.ind-hero__check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--title);
}

.ind-hero__check i {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.ind-hero__btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero mockup */
.ind-hero__mockup {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(86,58,255,0.15);
    background: #fff;
}

.ind-hero__mockup img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── Client Logos Marquee ─── */
.ind-clients {
    padding: 50px 0;
    overflow: hidden;
    background: var(--light);
}

.ind-clients__label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9490B5;
    margin-bottom: 22px;
    font-family: "Jost", sans-serif;
}

.ind-clients__track-wrap {
    position: relative;
    overflow: hidden;
}

.ind-clients__track-wrap::before,
.ind-clients__track-wrap::after {
    content: '';
    position: absolute;
    top: 0; width: 100px; height: 100%;
    z-index: 2; pointer-events: none;
}

.ind-clients__track-wrap::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.ind-clients__track-wrap::after  { right: 0; background: linear-gradient(to left, var(--light), transparent); }

.ind-clients__track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: logoScroll 28s linear infinite;
}

.ind-clients__track:hover { animation-play-state: paused; }

.ind-clients__item img {
    height: 30px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(40%);
    transition: all 0.3s;
}

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

@keyframes logoScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Industries Section Header ─── */
.ind-section-header {
    text-align: center;
    padding: 80px 0 60px;
}

.ind-section-header h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--title);
    margin-bottom: 12px;
}

.ind-section-header p {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: var(--para);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── Scroll reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal--left  { transform: translateX(-44px); }
.reveal.reveal--right { transform: translateX(44px); }

.reveal.is-visible { opacity: 1; transform: translate(0,0) !important; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Industry Row ─── */
.ind-row {
    padding: 80px 0;
    position: relative;
}

.ind-row--alt { background: var(--light); }

.ind-row__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Image panel */
.ind-img {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.ind-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Content panel */
.ind-content__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: "Jost", sans-serif;
}

.ind-content__eyebrow::before {
    content: '';
    display: inline-block;
    width: 18px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.ind-content__title {
    font-family: "Jost", sans-serif;
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 800;
    color: var(--title);
    line-height: 1.2;
    margin-bottom: 12px;
}

.ind-content__desc {
    font-family: "Jost", sans-serif;
    font-size: 17px;
    color: var(--para);
    line-height: 1.75;
    margin-bottom: 10px;
}

.ind-content__sub {
    font-family: "Jost", sans-serif;
    font-size: 17px;
    color: var(--para);
    line-height: 1.75;
    margin-bottom: 18px;
}

/* Feature bullets */
.ind-features {
    list-style: none;
    padding: 0; margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

.ind-features li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--title);
}

.ind-features li i {
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.ind-content__note {
    font-family: "Jost", sans-serif;
    font-size: 17px;
    color: var(--para);
    line-height: 1.65;
    margin-bottom: 28px;
}

/* ─── Tech Stack Section ─── */
.ind-tech {
    background: #fff;
    padding: 90px 0;
}

.ind-tech__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.ind-tech__header h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--title);
    line-height: 1.2;
}

.ind-tech__header p {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: var(--para);
    line-height: 1.7;
    padding-top: 8px;
}

/* Tab nav */
.ind-tech__tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.ind-tech__tab {
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid var(--gray);
    color: var(--para);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.ind-tech__tab:hover,
.ind-tech__tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Tech grid */
.ind-tech__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
}

.ind-tech__item {
    background: var(--light);
    border: 1px solid var(--gray);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.25s;
    cursor: default;
}

.ind-tech__item:hover {
    border-color: rgba(86,58,255,0.4);
    box-shadow: 0 4px 16px rgba(86,58,255,0.10);
    transform: translateY(-3px);
}

.ind-tech__item img {
    height: 36px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    margin: 0 auto 8px;
    display: block;
}

.ind-tech__item span {
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--title);
}

/* Tab panels */
.ind-tech__panel { display: none; }
.ind-tech__panel.active { display: block; }

/* ─── Trust / Stats ─── */
.ind-trust {
    background: linear-gradient(135deg, #F0EDFF 0%, #E8F6FF 100%);
    padding: 90px 0;
}

.ind-trust__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.ind-trust__content h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--title);
    margin-bottom: 14px;
    line-height: 1.2;
}

.ind-trust__content p {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: var(--para);
    line-height: 1.75;
    margin-bottom: 32px;
}

.ind-trust__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ind-trust__stat {
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 4px 20px rgba(86,58,255,0.08);
}

.ind-trust__stat-num {
    font-family: "Jost", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.ind-trust__stat-label {
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--para);
}

/* Photo collage */
.ind-trust__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    position: relative;
}

.ind-trust__photos img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.ind-trust__photos img:first-child {
    grid-row: span 2;
    height: 332px;
}

.ind-trust__badge-float {
    position: absolute;
    top: 16px; left: -20px;
    background: var(--primary);
    color: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(86,58,255,0.3);
}

.ind-trust__badge-float span {
    font-family: "Jost", sans-serif;
    font-size: 26px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.ind-trust__badge-float small {
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

/* ─── Success Stories ─── */
.ind-stories {
    background: #fff;
    padding: 90px 0;
}

.ind-stories__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.ind-stories__header h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--title);
    margin-bottom: 6px;
}

.ind-stories__header p {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: var(--para);
}

/* Story card */
.ind-story-card {
    border: 1.5px solid var(--gray);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.ind-story-card:hover {
    border-color: rgba(86,58,255,0.35);
    box-shadow: 0 8px 36px rgba(86,58,255,0.10);
}

.ind-story-card__info {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ind-story-card__logo {
    width: 52px; height: 52px;
    border-radius: 12px;
    object-fit: contain;
    margin-bottom: 16px;
    border: 1px solid var(--gray);
    padding: 6px;
    background: #fff;
}

.ind-story-card__title {
    font-family: "Jost", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--title);
    margin-bottom: 10px;
}

.ind-story-card__desc {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: var(--para);
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

.ind-story-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ind-story-card__tag {
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(86,58,255,0.07);
    border-radius: 20px;
    padding: 4px 12px;
}

.ind-story-card__metrics {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--gray);
}

.ind-story-metric__num {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 3px;
}

.ind-story-metric__label {
    font-family: "Jost", sans-serif;
    font-size: 11px;
    color: var(--para);
    font-weight: 600;
}

.ind-story-metric--green .ind-story-metric__num { color: #0E893F; }
.ind-story-metric--blue  .ind-story-metric__num { color: var(--primary); }
.ind-story-metric--orange .ind-story-metric__num { color: var(--warning); }

.ind-story-card__image {
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ind-story-card__image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.ind-story-card:hover .ind-story-card__image img { transform: scale(1.04); }

/* ─── FAQ ─── */
.ind-faq {
    background: var(--light);
    padding: 90px 0;
}

.ind-faq__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 70px;
    align-items: start;
}

.ind-faq__left h5 {
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.ind-faq__left h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--title);
    line-height: 1.25;
    margin-bottom: 14px;
}

.ind-faq__left p {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: var(--para);
    line-height: 1.7;
    margin-bottom: 28px;
}

.ind-faq__still {
    background: linear-gradient(135deg, #563AFF 0%, #3d20e0 100%);
    border-radius: 16px;
    padding: 28px 24px;
    color: #fff;
    text-align: center;
}

.ind-faq__still h4 {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* FAQ accordion items */
.ind-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ind-faq__item {
    background: #fff;
    border: 1px solid var(--gray);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.ind-faq__item.open {
    border-color: rgba(86,58,255,0.35);
}

.ind-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    gap: 12px;
}

.ind-faq__question span {
    font-family: "Jost", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--title);
}

.ind-faq__icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(86,58,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.25s;
    font-size: 16px;
}

.ind-faq__item.open .ind-faq__icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.ind-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 22px;
}

.ind-faq__answer p {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: var(--para);
    line-height: 1.7;
    padding-bottom: 18px;
}

.ind-faq__item.open .ind-faq__answer {
    max-height: 300px;
    padding: 0 22px;
}

/* ─── CTA ─── */
.ind-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #3d20e0 100%);
    padding: 80px 0px 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ind-cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 350px; height: 350px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.ind-cta h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.ind-cta p {
    font-family: "Jost", sans-serif;
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.ind-cta__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
    .ind-hero__inner,
    .ind-row__inner,
    .ind-trust__inner,
    .ind-tech__header,
    .ind-faq__inner { grid-template-columns: 1fr; gap: 40px; }

    .ind-hero { padding: 80px 0 40px; }
    .ind-trust__badge-float { left: 10px; }
    .ind-stories__header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .ind-story-card { grid-template-columns: 1fr; }
    .ind-story-card__image img { min-height: 220px; height: 220px; }
    .ind-tech__grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
}

@media (max-width: 767px) {
    .ind-hero__checks { grid-template-columns: 1fr; }
    .ind-trust__stats { grid-template-columns: 1fr 1fr; }
    .ind-trust__photos img:first-child { height: auto; grid-row: span 1; }
}