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

/* ─── 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 !important; transform: translate(0,0) !important; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* ─── HERO ─── */
.th-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #EEF0FF 0%, #E5F4FF 55%, #F7F7FC 100%);
    padding: 120px 0 0;
}
.th-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;
}
.th-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.th-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;
}
.th-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;
}
.th-hero__desc {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: var(--para);
    line-height: 1.75;
    margin-bottom: 16px;
}
.th-hero__checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 32px;
}
.th-hero__check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--title);
}
.th-hero__check i { color: var(--primary); font-size: 18px; flex-shrink: 0; }
.th-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.th-hero__mockup {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(86,58,255,0.15);
    background: #fff;
}
.th-hero__mockup img { width: 100%; height: auto; display: block; }

/* ─── Client Logos Marquee ─── */
.th-clients {
    padding: 50px 0;
    overflow: hidden;
    background: var(--light);
}
.th-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;
}
.th-clients__track-wrap {
    position: relative;
    overflow: hidden;
}
.th-clients__track-wrap::before,
.th-clients__track-wrap::after {
    content: '';
    position: absolute;
    top: 0; width: 100px; height: 100%;
    z-index: 2; pointer-events: none;
}
.th-clients__track-wrap::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.th-clients__track-wrap::after  { right: 0; background: linear-gradient(to left, var(--light), transparent); }
.th-clients__track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: thLogoScroll 28s linear infinite;
}
.th-clients__track:hover { animation-play-state: paused; }
.th-clients__item img {
    height: 30px; width: auto; max-width: 130px;
    object-fit: contain; opacity: 0.6; filter: grayscale(40%);
    transition: all 0.3s;
}
.th-clients__item:hover img { opacity: 1; filter: grayscale(0%); }
@keyframes thLogoScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── MAIN TECH SECTION (3-col layout like Vasundhara) ─── */
.th-main {
    background: #fff;
    padding: 90px 0;
}

/* The outer wrapper: label across the top, then 3-col below */
.th-main__top-label {
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 32px;
}

/* 3-column grid */
.th-main__grid {
    display: grid;
    grid-template-columns: 260px 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* LEFT col: heading + desc + CTA — sticky */
.th-main__left {
    position: sticky;
    top: 100px;
}
.th-main__left h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    color: var(--title);
    line-height: 1.25;
    margin-bottom: 14px;
}
.th-main__left p {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    color: var(--para);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* CENTER col: phone mockup image — sticky */
.th-main__center {
    position: sticky;
    top: 100px;
}
.th-main__center-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(86,58,255,0.12);
    background: var(--light);
}
.th-main__center-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* RIGHT col: scrollable tech cards */
.th-main__right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Each tech card */
.th-tech-card {
    background: #fff;
    border: 1px solid var(--gray);
    border-radius: 14px;
    padding: 18px 20px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    position: relative;
}
.th-tech-card:hover {
    border-color: rgba(86,58,255,0.35);
    box-shadow: 0 6px 24px rgba(86,58,255,0.09);
    transform: translateY(-2px);
}

/* Top row: icon left, Learn More button right */
.th-tech-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.th-tech-card__icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: var(--light);
    border: 1px solid var(--gray);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.th-tech-card__icon img {
    width: 24px; height: 24px;
    object-fit: contain;
}
.th-tech-card__btn {
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.th-tech-card__btn:hover { background: var(--primary-dark); color: #fff; }

/* Title */
.th-tech-card__title {
    font-family: "Jost", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--title);
    margin-bottom: 6px;
}
.th-tech-card__num {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

/* Description */
.th-tech-card__desc {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: var(--para);
    line-height: 1.65;
}

/* ─── Tech Stack Tabs ─── */
.th-stack {
    background: var(--light);
    padding: 90px 0;
}
.th-stack__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 36px;
}
.th-stack__header h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    color: var(--title);
    line-height: 1.2;
}
.th-stack__header p {
    font-family: "Jost", sans-serif;
    font-size: 17px;
    color: var(--para);
    line-height: 1.7;
    padding-top: 6px;
}
.th-stack__tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.th-stack__tab {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid var(--gray);
    color: var(--para);
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}
.th-stack__tab:hover,
.th-stack__tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.th-stack__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 14px;
}
.th-stack__item {
    background: #fff;
    border: 1px solid var(--gray);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.25s;
}
.th-stack__item:hover {
    border-color: rgba(86,58,255,0.4);
    box-shadow: 0 4px 16px rgba(86,58,255,0.10);
    transform: translateY(-3px);
}
.th-stack__item img {
    height: 36px; width: auto; max-width: 56px;
    object-fit: contain; margin: 0 auto 8px; display: block;
}
.th-stack__item span {
    font-family: "Jost", sans-serif;
    font-size: 12px; font-weight: 600; color: var(--title);
}
.th-stack__panel { display: none; }
.th-stack__panel.active { display: block; }

/* ─── Trust / Stats ─── */
.th-trust {
    background: linear-gradient(135deg, #F0EDFF 0%, #E8F6FF 100%);
    padding: 90px 0;
}
.th-trust__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.th-trust__content h5 {
    font-family: "Jost", sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 10px;
}
.th-trust__content h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800; color: var(--title);
    margin-bottom: 14px; line-height: 1.2;
}
.th-trust__content p {
    font-family: "Jost", sans-serif;
    font-size: 15px; color: var(--para);
    line-height: 1.75; margin-bottom: 32px;
}
.th-trust__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.th-trust__stat {
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 4px 20px rgba(86,58,255,0.08);
}
.th-trust__stat-num {
    font-family: "Jost", sans-serif;
    font-size: 34px; font-weight: 800;
    color: var(--primary); line-height: 1; margin-bottom: 6px;
}
.th-trust__stat-label {
    font-family: "Jost", sans-serif;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em; color: var(--para);
}
.th-trust__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    position: relative;
}
.th-trust__photos img {
    width: 100%; height: 160px;
    object-fit: cover; border-radius: 14px; display: block;
}
.th-trust__photos img:first-child {
    grid-row: span 2; height: 332px;
}
.th-trust__badge {
    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);
}
.th-trust__badge span {
    font-family: "Jost", sans-serif;
    font-size: 26px; font-weight: 800;
    display: block; line-height: 1;
}
.th-trust__badge small {
    font-family: "Jost", sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.04em; opacity: 0.85;
}

/* ─── Success Stories ─── */
.th-stories {
    background: #fff;
    padding: 90px 0;
}
.th-stories__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.th-stories__header h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800; color: var(--title); margin-bottom: 6px;
}
.th-stories__header p {
    font-family: "Jost", sans-serif;
    font-size: 15px; color: var(--para);
}
.th-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;
}
.th-story-card:hover {
    border-color: rgba(86,58,255,0.35);
    box-shadow: 0 8px 36px rgba(86,58,255,0.10);
}
.th-story-card__info {
    padding: 36px;
    display: flex; flex-direction: column; justify-content: space-between;
}
.th-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;
}
.th-story-card__title {
    font-family: "Jost", sans-serif;
    font-size: 24px; font-weight: 800; color: var(--title); margin-bottom: 10px;
}
.th-story-card__desc {
    font-family: "Jost", sans-serif;
    font-size: 16px; color: var(--para); line-height: 1.7;
    margin-bottom: 14px; flex-grow: 1;
}
.th-story-card__tags {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.th-story-card__tag {
    font-family: "Jost", sans-serif;
    font-size: 14px; font-weight: 600; color: var(--primary);
    background: rgba(86,58,255,0.07); border-radius: 20px; padding: 4px 12px;
}
.th-story-card__store-btns {
    display: flex; gap: 10px; margin-bottom: 18px;
}
.th-story-card__store-btns img { height: 32px; width: auto; }
.th-story-card__metrics {
    display: flex; gap: 24px;
    padding-top: 16px; border-top: 1px solid var(--gray);
}
.th-metric__num {
    font-family: "Jost", sans-serif;
    font-size: 18px; font-weight: 800; line-height: 1; margin-bottom: 3px;
}
.th-metric__label {
    font-family: "Jost", sans-serif;
    font-size: 11px; color: var(--para); font-weight: 600;
}
.th-metric--green .th-metric__num { color: #0E893F; }
.th-metric--blue  .th-metric__num { color: var(--primary); }
.th-metric--orange .th-metric__num { color: var(--warning); }
.th-story-card__image {
    background: var(--light);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.th-story-card__image img {
    width: 100%; height: 100%; min-height: 300px;
    object-fit: cover; display: block; transition: transform 0.5s;
}
.th-story-card:hover .th-story-card__image img { transform: scale(1.04); }

/* ─── FAQ ─── */
.th-faq {
    background: var(--light);
    padding: 90px 0;
}
.th-faq__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 70px; align-items: start;
}
.th-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;
}
.th-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;
}
.th-faq__left p {
    font-family: "Jost", sans-serif;
    font-size: 15px; color: var(--para); line-height: 1.7; margin-bottom: 28px;
}
.th-faq__still {
    background: linear-gradient(135deg, #563AFF 0%, #3d20e0 100%);
    border-radius: 16px; padding: 28px 24px; color: #fff; margin-top: 24px;
    text-align: center;
}
.th-faq__still h4 {
    font-family: "Jost", sans-serif;
    font-size: 18px; font-weight: 700; margin-bottom: 16px;
}
.th-faq__list { display: flex; flex-direction: column; gap: 12px; }
.th-faq__item {
    background: #fff; border: 1px solid var(--gray);
    border-radius: 14px; overflow: hidden; transition: border-color 0.2s;
}
.th-faq__item.open { border-color: rgba(86,58,255,0.35); }
.th-faq__question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 22px; cursor: pointer; gap: 12px;
}
.th-faq__question span {
    font-family: "Jost", sans-serif;
    font-size: 17px; font-weight: 600; color: var(--title);
}
.th-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;
}
.th-faq__item.open .th-faq__icon {
    background: var(--primary); color: #fff; transform: rotate(45deg);
}
.th-faq__answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease; padding: 0 22px;
}
.th-faq__answer p {
    font-family: "Jost", sans-serif;
    font-size: 16px; color: var(--para); line-height: 1.7; padding-bottom: 18px;
}
.th-faq__item.open .th-faq__answer { max-height: 300px; }

/* ─── CTA ─── */
.th-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #3d20e0 100%);
    padding: 80px 0 180px;
    text-align: center; position: relative; overflow: hidden;
}
.th-cta::before {
    content: ''; position: absolute;
    top: -100px; right: -100px;
    width: 350px; height: 350px;
    background: rgba(255,255,255,0.05); border-radius: 50%;
}
.th-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;
}
.th-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;
}
.th-cta__btns {
    display: flex; gap: 16px; justify-content: center;
    flex-wrap: wrap; position: relative; z-index: 1;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
    .th-main__grid {
        grid-template-columns: 220px 1fr 1fr;
        gap: 30px;
    }
}
@media (max-width: 991px) {
    .th-hero__inner,
    .th-stack__header,
    .th-trust__inner,
    .th-faq__inner { grid-template-columns: 1fr; gap: 40px; }
    .th-hero { padding: 80px 0 40px; }
    .th-main__grid { grid-template-columns: 1fr; }
    .th-main__left,
    .th-main__center { position: static; }
    .th-trust__badge { left: 10px; }
    .th-stories__header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .th-story-card { grid-template-columns: 1fr; }
    .th-story-card__image img { min-height: 220px; height: 220px; }
}
@media (max-width: 767px) {
    .th-hero__checks { grid-template-columns: 1fr; }
    .th-trust__stats { grid-template-columns: 1fr 1fr; }
    .th-trust__photos img:first-child { height: auto; grid-row: span 1; }
}
