﻿
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #fff;
    color: #0f172a;
    line-height: 1.7;
}

/* ── HERO (dark) ── */
#hero {
    background: linear-gradient(135deg,#0b1120 0%,#111827 45%,#1e3a8a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    #hero::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -150px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle,rgba(183,110,121,.14) 0%,transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    #hero::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle,rgba(59,130,246,.12) 0%,transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}

.col-lg-6 {
    width: 100%;
    padding: 0 16px;
}

.col-lg-5 {
    width: 100%;
    padding: 0 16px;
}

@media(min-width:992px) {
    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.666%;
    }

    .offset-lg-1 {
        margin-left: 8.333%;
    }
}

.col-sm-6 {
    width: 100%;
    padding: 0 8px;
}

@media(min-width:576px) {
    .col-sm-6 {
        width: 50%;
    }
}

.col-md-4 {
    width: 100%;
    padding: 0 8px;
}

.col-md-6 {
    width: 100%;
    padding: 0 8px;
}

.col-md-8 {
    width: 100%;
    padding: 0 8px;
}

.col-md-3 {
    width: 100%;
    padding: 0 8px;
}

@media(min-width:768px) {
    .col-md-4 {
        width: 33.333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-8 {
        width: 66.666%;
    }

    .col-md-3 {
        width: 25%;
    }
}

.col-12 {
    width: 100%;
    padding: 0 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(183,110,121,.15);
    color: #e879e6;
    border: 1px solid rgba(183,110,121,.35);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.6rem,5.5vw,4.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

    .hero-title .highlight {
        background: linear-gradient(135deg, #b76e79, #FFC107);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f1f5f9;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    margin-top: 4px;
}

.hero-visual {
    background: #162035;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

@media(min-width:992px) {
    .hero-visual {
        margin-top: 0;
    }
}

.mini-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .mini-step:last-child {
        border-bottom: none;
    }

.mini-num {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: linear-gradient(135deg,#b76e79,#FFC107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.mini-label {
    font-size: 1.2rem;
    color: #f1f5f9;
    font-weight: 600;
}

.mini-sub {
    font-size: .95rem;
    color: #64748b;
}

/* ── BUTTONS ── */
.btn-primary {
    background: linear-gradient(135deg,#b76e79,#9f5b66);
    border: none;
    color: #fff;
    padding: 16px 42px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(183,110,121,.38);
        color: #fff;
        text-decoration: none;
    }

.btn-secondary {
    background: linear-gradient(135deg,#1676a2,#2563eb);
    border: none;
    color: #fff;
    padding: 16px 42px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(59,130,246,.38);
        color: #fff;
        text-decoration: none;
    }

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,.18);
    color: #f1f5f9;
    padding: 14px 38px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .btn-outline:hover {
        border-color: #b76e79;
        color: #b76e79;
        text-decoration: none;
    }

.btn-outline-dark {
    background: transparent;
    border: 2px solid #696969;
    color: #0f172a;
    padding: 14px 38px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .btn-outline-dark:hover {
        border-color: #b76e79;
        color: #b76e79;
        text-decoration: none;
    }

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.gap-1 {
    gap: .5rem;
}

.gap-2 {
    gap: 1rem;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ── WHITE SECTIONS ── */
section {
    padding: 90px 0;
}

#flow-overview {
    background: #f8fafc;
}

#form-section {
    background: #ffffff;
}

#why-section {
    background: #f8fafc;
}

#cta-section {
    background: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    #cta-section::before {
        content: '';
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        height: 400px;
        background: radial-gradient(ellipse,rgba(183,110,121,.06) 0%,transparent 70%);
        pointer-events: none;
    }

.section-eyebrow {
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b76e79;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title {
    font-size: clamp(1.9rem,4vw,3.1rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -.5px;
}

.section-sub {
    font-size: 1.2rem;
    color: #475569;
    max-width: 560px;
    line-height: 1.7;
}

/* FLOW CARDS */
.flow-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem 1.8rem;
    height: 100%;
    transition: border-color .25s,transform .25s;
    position: relative;
}

    .flow-card:hover {
        border-color: #b76e79;
        transform: translateY(-4px);
    }

.flow-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.fi-purple {
    background: rgba(183,110,121,.1);
    color: #b76e79;
}

.fi-teal {
    background: rgb(246 195 59 / 26%);
    color: #734400;
}

.flow-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .5rem;
}

.flow-card p {
    font-size: 1.2rem;
    color: #475569;
    margin: 0;
}

.step-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: .85rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(246, 196, 59, 0.374);
    color: #734400;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .92rem;
    font-weight: 600;
    margin: 3px;
}

.col-mb {
    margin-bottom: 1.5rem;
}


/* STAGE INDICATOR */
.stage-bar {
    display: flex;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.si {
    flex: 1;
    padding: 1.1rem .5rem;
    text-align: center;
    cursor: default;
    position: relative;
}

    .si:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: #e2e8f0;
    }

    .si.active {
        background: rgba(183,110,121,.07);
    }

    .si.done {
        background: rgba(59,130,246,.06);
    }

.si-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    margin: 0 auto 6px;
    transition: background .2s;
}

.si.active .si-num {
    background: #b76e79;
    color: #fff;
}

.si.done .si-num {
    background: #1676a2;
    color: #fff;
}

.si-label {
    font-size: .92rem;
    color: #94a3b8;
    font-weight: 600;
}

.si.active .si-label {
    color: #b76e79;
}

.si.done .si-label {
    color: #1676a2;
}

/* FORM CARD */
.form-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

    .form-card h3 {
        font-size: 1.9rem;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: .3rem;
    }

.fc-sub {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
}

.form-label-c {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0;
    color: #0f172a;
    margin-bottom: .5rem;
    display: block;
}

/* INPUTS */
.form-input {
    width: 100%;
    background: #f8fafc;
    border: 2px solid #696969;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1.15rem;
    color: #0f172a;
    outline: none;
    transition: border-color .2s,box-shadow .2s;
    margin-bottom: 0;
    font-family: inherit;
}

    .form-input:focus {
        border-color: #b76e79;
        box-shadow: 0 0 0 4px rgba(183,110,121,.12);
    }

    .form-input::placeholder {
        color: #94a3b8;
    }

    .form-input.error {
        border-color: #ef4444;
        box-shadow: 0 0 0 4px rgba(239,68,68,.1);
    }

    .form-input.success {
        border-color: #22c55e;
    }

textarea.form-input {
    resize: vertical;
}

.field-wrap {
    margin-bottom: 1.5rem;
}

.form-select {
    width: 100%;
    background: #f8fafc;
    border: 2px solid #696969;
    border-radius: 12px;
    padding: 16px 46px 16px 20px;
    font-size: 1.15rem;
    color: #0f172a;
    outline: none;
    transition: border-color .2s;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: #f8fafc;
}

    .form-select:focus {
        border-color: #1676a2;
        box-shadow: 0 0 0 4px rgba(59,130,246,.12);
    }

.err-msg {
    font-size: .95rem;
    color: #ef4444;
    margin-top: 6px;
    display: none;
}

    .err-msg.show {
        display: block;
    }

/* GOOGLE BTN */
.btn-google {
    width: 100%;
    background: #fff;
    color: #0f172a;
    border: 2px solid #696969;
    border-radius: 12px;
    padding: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all .2s;
    margin-bottom: 1.5rem;
    font-family: inherit;
}

    .btn-google:hover {
        border-color: #b76e79;
        box-shadow: 0 4px 16px rgba(183,110,121,.15);
    }

.divider-or {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 1.2rem 0;
    color: #94a3b8;
    font-size: 1rem;
}

    .divider-or::before, .divider-or::after {
        content: '';
        flex: 1;
        height: 1px;
        background: #e2e8f0;
    }

.info-badge {
    background: rgba(59,130,246,.07);
    border: 1px solid rgba(59,130,246,.2);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    color: #1676a2;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* OTP GRID */
.otp-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.otp-input {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 12px 4px;
    height: 52px;
    width: 52px;
    border-radius: 10px;
    background: #f8fafc;
    border: 2px solid #828282;
    color: #0f172a;
    outline: none;
    transition: border-color .2s,box-shadow .2s;
    font-family: inherit;
}

    .otp-input:focus {
        border-color: #b76e79;
        box-shadow: 0 0 0 4px rgba(183,110,121,.12);
    }

    .otp-input.filled {
        border-color: #22c55e;
    }

    .otp-input.error-otp {
        border-color: #ef4444;
    }

/* OTP hidden initially */
#otpSection {
    display: none;
    margin-top: 1.5rem;
}

/* COMMUNITY PANEL */
.community-panel {
    background: rgba(183,110,121,.05);
    border: 1px solid rgba(183,110,121,.2);
    border-radius: 14px;
    padding: 1.8rem;
    margin-bottom: 0;
}

    .community-panel h5 {
        font-size: 1.15rem;
        font-weight: 700;
        color: #b76e79;
        margin-bottom: 1.2rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

/* EXAM STEPPER */
.exam-stepper {
    display: flex;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.8rem;
}

.es-item {
    flex: 1;
    padding: 1rem .5rem;
    text-align: center;
    cursor: default;
    transition: background .2s;
    position: relative;
}

    .es-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: #e2e8f0;
    }

    .es-item.active {
        background: rgba(183,110,121,.08);
    }

    .es-item.done {
        background: rgba(59,130,246,.06);
    }

.es-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    margin: 0 auto 5px;
}

.es-item.active .es-num {
    background: #b76e79;
    color: #fff;
}

.es-item.done .es-num {
    background: #1676a2;
    color: #fff;
}

.es-label {
    font-size: .88rem;
    color: #94a3b8;
    font-weight: 600;
}

.es-item.active .es-label {
    color: #b76e79;
}

.es-item.done .es-label {
    color: #1676a2;
}

.exam-sub-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
}

    .exam-sub-card h5 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: .3rem;
    }

.esc-sub {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 1.2rem;
}

.q-block {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.4rem;
    margin-bottom: 1rem;
    background: #fff;
}

.q-num {
    background: #b76e79;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
}

/* WHY SECTION */
.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 1.6rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 1rem;
    transition: border-color .2s;
}

    .why-item:hover {
        border-color: #1676a2;
        background: rgba(59,130,246,.04);
    }

.why-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: rgba(59,130,246,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1676a2;
}

    .why-icon.purple {
        background: rgba(183,110,121,.1);
        color: #b76e79;
    }

.why-item h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .25rem;
}

.why-item p {
    font-size: 1.2rem;
    color: #475569;
    margin: 0;
}

/* FOOTER */
footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 2.5rem 0;
    text-align: center;
}

    footer p {
        font-size: 1rem;
        color: #94a3b8;
        margin-bottom: .5rem;
    }

    footer a {
        color: #1676a2;
        text-decoration: none;
    }

        footer a:hover {
            color: #b76e79;
        }

.footer-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a !important;
}

/* STICKY BAR */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12,18,42,.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    flex-wrap: wrap;
}

    .sticky-cta.visible {
        transform: translateY(0);
    }

.sticky-cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f1f5f9;
}

    .sticky-cta-text span {
        color: #64748b;
        font-weight: 400;
        font-size: 1rem;
    }

.sticky-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sticky-cta .btn-primary, .sticky-cta .btn-secondary {
    padding: 12px 26px;
    font-size: 1.05rem;
}

/* TOAST */
.toast-wrap {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: #0f172a;
    color: #f1f5f9;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 28px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn .3s ease;
    pointer-events: auto;
}

    .toast.success {
        background: #16a34a;
    }

    .toast.error {
        background: #dc2626;
    }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

/* UTILITY */
.hidden {
    display: none !important;
}

.row-gap {
    margin: 0 -8px;
}

.mb-lg-0 {
}

@media(min-width:992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
}

@media(max-width:768px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .form-card {
        padding: 1.8rem 1.4rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .si-label, .es-label {
        font-size: .76rem;
    }

    .sticky-cta {
        flex-direction: column;
        text-align: center;
    }

    .otp-grid {
        gap: 7px;
    }
}

/*-----------Grid--------------*/
@media (min-width: 768px) {
    .container {
        max-width: 750px !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 970px !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px !important;
    }
}

/* NEW - large screens ke liye */
@media (min-width: 1400px) {
    .container, .nav-header-container {
        width: 100% !important;
        max-width: 1320px !important;
    }
}

@media (min-width: 1600px) {
    .container, .nav-header-container {
        width: 100% !important;
        max-width: 1450px !important;
    }
}

@media (min-width: 1800px) {
    .container, .nav-header-container {
        width: 100% !important;
        max-width: 1600px !important;
    }
}


/* ── Teams Section ── */
.iq-ts-section {
    background: #f5f6fa;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.iq-ts-inner {
    /* max-width: 860px; */
    margin: 0 auto;
}
/* Eyebrow */
.iq-ts-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #185FA5;
    background: #E6F1FB;
    border: 1px solid #b5d4f4;
    border-radius: 99px;
    padding: 5px 13px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

/* Heading */
.iq-ts-heading {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.2;
}

.iq-ts-accent {
    color: #d4872e;
}

.iq-ts-sub {
    font-size: 15px;
    color: #555e7a;
    margin: 0 0 48px;
    line-height: 1.65;
    max-width: 520px;
}

/* Timeline */
.iq-ts-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.iq-ts-row {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0 20px;
    align-items: stretch;
}

/* Left column: bubble + line */
.iq-ts-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iq-ts-bubble {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #534AB7;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #534AB7;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.iq-ts-bubble-done {
    background: #534AB7;
    color: #fff;
}

.iq-ts-line {
    width: 2px;
    background: #d8daea;
    flex: 1;
    min-height: 16px;
    margin: 6px 0;
}

.iq-ts-last .iq-ts-line {
    display: none;
}

/* Card */
.iq-ts-card {
    background: #ffffff;
    border: 1px solid #e4e7f0;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 20px;
    align-items: center;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

    .iq-ts-card:hover {
        box-shadow: 0 6px 24px rgba(30, 40, 110, 0.08);
        border-color: #c5c9e0;
    }

.iq-ts-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}

.iq-ts-card-desc {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 12px;
    line-height: 1.55;
}

/* Pills */
.iq-ts-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 99px;
}

.iq-pill-purple {
    background: #EEEDFE;
    color: #3C3489;
}

.iq-pill-blue {
    background: #E6F1FB;
    color: #0C447C;
}

.iq-pill-amber {
    background: #FAEEDA;
    color: #633806;
}

.iq-pill-teal {
    background: #E1F5EE;
    color: #085041;
}

/* Screenshot thumbnail */
.iq-ts-thumb {
    border-radius: 10px;
    border: 1px solid #e4e7f0;
    background: #f0f2f8;
    overflow: hidden;
    height: 225px;
    position: relative;
}

    .iq-ts-thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

.iq-ts-thumb-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 100%;
    color: #aab0c8;
    font-size: 11px;
}

/* CTA */
.iq-ts-cta {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
    align-items: center;
}

.iq-ts-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #534AB7;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.15s ease;
    font-family: 'Inter', sans-serif;
}

    .iq-ts-btn-primary:hover {
        background: #3C3489;
        transform: translateY(-1px);
    }

.iq-ts-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 50px;
    border: 2px solid #1a1a2e;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
    font-family: 'Inter', sans-serif;
}

    .iq-ts-btn-outline:hover {
        background: #1a1a2e;
        color: #fff;
    }

/* ── Responsive ── */
@media (max-width: 680px) {
    .iq-ts-card {
        grid-template-columns: 1fr;
    }

    .iq-ts-thumb {
        height: 180px;
    }

    .iq-ts-heading {
        font-size: 26px;
    }
}

@media (max-width: 420px) {
    .iq-ts-row {
        grid-template-columns: 40px 1fr;
        gap: 0 12px;
    }

    .iq-ts-bubble {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}


/* Eyebrow */
.iq-ts-eyebrow {
    font-size: 18px; /* 12px → 18px */
}

/* Heading */
.iq-ts-heading {
    font-size: 51px; /* 34px → 51px */
}

/* Sub Heading */
.iq-ts-sub {
    font-size: 23px; /* 15px → 22.5px */
    line-height: 1.7;
}

/* Timeline Number */
.iq-ts-bubble {
    font-size: 21px; /* 14px → 21px */
}

/* Card Title */
.iq-ts-card-title {
    font-size: 35px; /* 15px → 22.5px */
}

/* Card Description */
.iq-ts-card-desc {
    font-size: 25px; /* 13px → 19.5px */
    line-height: 1.7;
}

/* Pills */
.iq-ts-pill {
    font-size: 19px; /* 11px → 16.5px */
    padding: 6px 14px;
}

/* Thumbnail Placeholder */
.iq-ts-thumb-placeholder {
    font-size: 19px; /* 11px → 16.5px */
}

/* Buttons */
.iq-ts-btn-primary,
.iq-ts-btn-outline {
    font-size: 21px; /* 14px → 21px */
    padding: 18px 32px;
}

/* Mobile */
@media (max-width: 680px) {
    .iq-ts-heading {
        font-size: 39px; /* 26px → 39px */
    }
}

@media (max-width: 420px) {
    .iq-ts-bubble {
        font-size: 18px; /* 12px → 18px */
    }
}


/* ── Thumbnail hover zoom ── */
.iq-ts-thumb {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: center center;
    cursor: zoom-in;
}

.iq-ts-card:hover .iq-ts-thumb {
    transform: scale(1.85);
    box-shadow: 0 12px 40px rgba(30, 40, 110, 0.18);
    z-index: 10;
    position: relative;
}