/* =====================================================
   job-placement.css
   ===================================================== */

/* --- Utility cards --- */
.jp-card-green {
    color: #00c853;
    font-size: 2rem;
}



.cp-accent,
.cp-typed-cursor {
    color: var(--clr-blue);
}

.card-hover-green {
    transition: all 0.3s ease;
}

.card-hover-green:hover {
    box-shadow: 0 8px 20px rgba(111, 218, 68, 0.4) !important;
    transform: translateY(-5px);
}

.card-hover-green:hover {
    box-shadow: 0 8px 20px rgba(111, 218, 68, 0.4) !important;
    transform: translateY(-5px);
}
.jp-timeline {
    position: relative;
    max-width: 760px;
    margin: 40px auto 0;
    padding-left: 56px; /* space for the marker circles */
}

/* Continuous vertical line via pseudo-element — no extra HTML needed */
.jp-timeline::before {
    content: '';
    position: absolute;
    left: 20px;           /* centre of the 56px marker column */
    top: 22px;            /* start at centre of first circle */
    bottom: 22px;         /* end at centre of last circle */
    width: 3px;
    background: #0d6efd;
    border-radius: 10px;
    z-index: 0;
}

/* --- Each step row --- */
.jp-timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.jp-timeline-item:last-child {
    margin-bottom: 0;
}

/* --- Number circle --- */
.jp-timeline-marker {
    position: absolute;
    left: -56px;          /* pulls back into the padding-left gutter */
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 0 0 5px #e8eeff, 0 4px 14px rgba(13, 110, 253, 0.35);
    z-index: 2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jp-timeline-item:hover .jp-timeline-marker {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 0 7px #e8eeff, 0 6px 20px rgba(13, 110, 253, 0.45);
}

/* --- Card content --- */
.jp-timeline-content {
    border-left: 4px solid #0d6efd !important;
    border-radius: 10px !important;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jp-timeline-item:hover .jp-timeline-content {
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(13, 110, 253, 0.12) !important;
}
/* =====================================================
   partner-companies.css
   Link: <link rel="stylesheet" href="{{ asset('css/partner-companies.css') }}">
   ===================================================== */

.jp-partner-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #090909 !important;
    letter-spacing: -0.02em;
}

.jp-partner-desc {
    color: #6b7280 !important;
    font-size: 1rem;
    margin-top: 10px;
}

/* --- Card --- */
.jp-partner-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 28px !important;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Animated top border line */
.jp-partner-card-topline {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: #0d6efd;
    border-radius: 3px 3px 0 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.jp-partner-card:hover .jp-partner-card-topline {
    width: 100%;
}

.jp-partner-card:hover {
    border-color: rgba(13, 110, 253, 0.3) !important;
    box-shadow: 0 8px 32px rgba(13, 110, 253, 0.1);
}

/* --- Header row: avatar + name --- */
.jp-partner-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* --- Avatar square --- */
.jp-partner-avatar {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

/* --- Company name & type --- */
.jp-partner-name {
    color: #0f172a !important;
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0 0 4px;
}

.jp-partner-type {
    color: #0d6efd !important;
    font-size: 0.82rem;
    font-weight: 500;
}

/* --- Roles text --- */
.jp-partner-roles {
    color: #64748b !important;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* --- Country badge --- */
.jp-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a !important;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    width: fit-content;
}

.jp-partner-badge i {
    font-size: 0.85rem;
}

/* --- Visit Website link --- */
.jp-cta-section {
    background: #f8f9fa; /* light background */
    position: relative;
    padding: 80px 0;
}

.jp-partner-link {
    color: #0d6efd !important;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap 0.2s ease, opacity 0.2s ease;
}

.jp-partner-link:hover {
    opacity: 0.75;
    gap: 10px;
    color: #0d6efd !important;
}

.jp-partner-link i {
    font-size: 0.78rem;
}
.jp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #0d6efd !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
 
.jp-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: #0d6efd !important;
}
 
.jp-cta-btn i {
    font-size: 1rem;
}

.cp-hero {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.faq-page-section {
    background: #f8fafc;
}
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-color: rgba(15, 23, 42, 0.08) !important;
    color: #0f172a;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.certificate-dark-card:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 110, 253, 0.3) !important;
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.12) !important;
}

.certificate-dark-card-inner {
    border-color: rgba(15, 23, 42, 0.08) !important;
    color: #0f172a;
    transition: border-color 0.3s ease;
}

.certificate-dark-card:hover .certificate-dark-card-inner {
    border-color: rgba(13, 110, 253, 0.2) !important;
}

.certificate-dark-card-stat,
.certificate-dark-card-highlight {
    border-color: rgba(15, 23, 42, 0.06) !important;
    color: #0f172a;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.certificate-dark-card-stat:hover,
.certificate-dark-card-highlight:hover {
    border-color: rgba(13, 110, 253, 0.25) !important;
    transform: translateY(-2px);
}

.ss-hero-badge {
    display: inline-block;
    padding: 6px 22px;
    border-radius: 50px;
    border: 1.5px solid #3b82f6;
    background: transparent;
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.cp-typed-cursor {
    display: inline-block;
    font-weight: 300;
    margin-left: 1px;
    animation: cpCursorBlink .75s step-end infinite;
}
@keyframes cpCursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}
 
.cp-accent {
    color: #0d6efd;
}

.ss-story-section {
    background: #f8fafc;
}

.ss-story-shell {
    padding: 56px 42px 42px;
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(13, 110, 253, 0.05), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.07);
}

.ss-story-header {
    background: transparent;
}

.ss-story-header .container {
    padding: 0;
    max-width: 100%;
}

.ss-story-header .section_title {
    max-width: 760px;
    margin: 0 auto 18px;
}

.ss-story-header .ss-hero-badge {
    background: rgba(13, 110, 253, 0.08);
    border-color: rgba(13, 110, 253, 0.16);
    color: #0d6efd;
}

.ss-story-header .title {
    color: #0f172a !important;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.ss-story-header .desc {
    max-width: 640px;
    margin: 0 auto;
    color: #64748b !important;
    line-height: 1.75;
}

.ss-story-wrap {
    margin-top: 8px;
}

.faq-page-section {
    background: #f8fafc;
}

.faq-page-shell {
    padding: 40px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(13, 110, 253, 0.06), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.06);
}

.faq-page-intro,
.faq-page-accordion-shell {
    height: 100%;
}

.faq-page-intro {
    padding: 10px 10px 10px 0;
}

.faq-page-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: #eff6ff;
    color: #0d6efd;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.faq-page-intro h2 {
    color: #0f172a;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
}

.faq-page-intro > p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 28px;
    max-width: 540px;
}

.faq-page-highlights {
    display: grid;
    gap: 16px;
}

.faq-page-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.faq-page-highlight__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d6efd 0%, #3b82f6 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-page-highlight h3 {
    color: #0f172a;
    font-size: 1rem;
    margin: 0 0 6px;
}

.faq-page-highlight p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.faq-page-support {
    margin-top: 22px;
    padding: 24px;
    border-radius: 24px;
    background: #0f172a;
    color: #ffffff;
}

.faq-page-support__badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.faq-page-support p {
    color: #cbd5e1;
    line-height: 1.75;
    margin: 0 0 14px;
}

.faq-page-support .jp-partner-link {
    color: #ffffff !important;
}

.faq-page-support .jp-partner-link:hover {
    color: #ffffff !important;
}

.faq-page-accordion-shell {
    padding: 6px 0 6px 12px;
}

.faq-page-accordion {
    display: grid;
    gap: 16px;
}

.faq-page-item {
    border: 1px solid #dbe5f0 !important;
    border-radius: 20px !important;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.faq-page-item .accordion-button {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: #ffffff;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: none;
}

.faq-page-item .accordion-button:not(.collapsed) {
    background: #ffffff;
    color: #0f172a;
    box-shadow: none;
}

.faq-page-item .accordion-button::after {
    width: 36px;
    height: 36px;
    background-size: 14px;
    border-radius: 999px;
    background-color: #eff6ff;
    background-position: center;
    flex-shrink: 0;
}

.faq-page-item__index {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #eff6ff;
    color: #0d6efd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-page-item .accordion-body {
    padding: 0 22px 22px 76px;
}

.faq-page-item .accordion-body p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.faq-tabs-section {
    background: #f8fafc;
}

.faq-tabs-shell {
    padding: 10px 0 0;
}

.faq-tabs-shell .faq-tabs-nav {
    background: transparent;
    box-shadow: none;
}

/* FAQ category tabs: premium toggle row with icon-led buttons */
.faq-tabs-nav {
    gap: 12px;
    margin-bottom: 38px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 12px;
    border-radius: 28px;
    background: linear-gradient(180deg, #0f172a 0%, #111c31 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 34px rgba(15, 23, 42, 0.14);
}

.faq-tabs-nav .nav-link {
    min-width: 154px;
    padding: 6px 18px;
    border-radius: 999px;
    border: 1px solid #0066cc;
    color: #010c1a;
    font-size: 0.98rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-tabs-nav .nav-link:hover {
    color: #ffffff;
    background: #0066cc;
    border-color: #475569;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.22);
}

.faq-tabs-nav .nav-link.active {
    background: linear-gradient(135deg, #0d6efd 0%, #3b82f6 100%);
    color: #ffffff;
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.2), 0 14px 30px rgba(13, 110, 253, 0.28);
}

.faq-tabs-content .tab-pane {
    outline: none;
}

.faq-tabs-accordion {
    gap: 18px;
}

.faq-tabs-item {
    border: 1px solid #e2e8f0 !important;
    border-radius: 24px !important;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-tabs-item:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 110, 253, 0.18) !important;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.07);
}

.faq-tabs-button {
    padding: 24px 28px !important;
    background: #ffffff !important;
    color: #0f172a !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    border: 0 !important;
    box-shadow: none !important;
}

.faq-tabs-button:not(.collapsed) {
    padding-bottom: 14px !important;
}

.faq-tabs-button::after {
    width: 34px !important;
    height: 34px !important;
    background-size: 14px !important;
    background-position: center !important;
    border-radius: 999px;
    background-color: #eff6ff !important;
    filter: none;
}

.faq-tabs-item .accordion-collapse {
    background: #ffffff;
}

.faq-tabs-item .accordion-body {
    padding: 0 28px 24px !important;
}

.faq-tabs-item .accordion-body p {
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.8;
}
/* Removed: Use Bootstrap 'bg-light' instead of .cp-section */
/* Removed: Use Bootstrap 'bg-white' instead of .cp-section-alt */
 
/* --- Section sub-title & heading --- */
/* .cp-subheading: Use Bootstrap 'fs-5 fw-bold' instead */
 
/* --- Card --- */
.cp-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
 
.cp-section-alt .cp-card {
    background: #f8fafc;
}
 
/* Animated top border line */
.cp-card-topline {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: #0d6efd;
    border-radius: 3px 3px 0 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}
 
.cp-card:hover .cp-card-topline {
    width: 100%;
}
 
.cp-card:hover {
    border-color: rgba(13, 110, 253, 0.3);
    box-shadow: 0 8px 32px rgba(13, 110, 253, 0.1);
}
 
/* --- Level badge --- */
.cp-level {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 12px;
    border-radius: 20px;
}
 
.cp-level.entry {
    background: #dbeafe;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}
 
.cp-level.mid {
    background: #fef9c3;
    color: #a16207;
    border: 1px solid #fde68a;
}
 
.cp-level.senior {
    background: #f0fdf4;
    color: #22c55e;
    border: 1px solid #86efac;
}
 
.cp-level.expert {
    background: #f3e8ff;
    color: #7c3aed;
    border: 1px solid #ddd6fe;
}
 
/* --- Icon box --- */
.cp-icon {
    width: 40px;
    height: 40px;
    background: #0d6efd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    flex-shrink: 0;
}
 
/* .cp-role: Use Bootstrap 'fw-bold' instead */
 
/* .cp-salary: Use Bootstrap 'badge bg-success' instead */
 
/* --- Bullet list --- */
.cp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
 
.cp-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 0.9rem;
}
 
.cp-list li i {
    color: #22c55e;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Student Success Section */
.ss-card {
    background: #0f1e30;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.ss-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(13, 110, 253, 0.2);
}
 
/* --- Photo fills top half --- */
.ss-card__img-wrap {
    width: 100%;
    aspect-ratio: 3 / 2;
    max-height: 200px;
    overflow: hidden;
}
 
.ss-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}
 
.ss-card:hover .ss-card__img {
    transform: scale(1.04);
}
 
/* --- Text body --- */
.ss-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
 
.ss-card__quote {
    color: #cbd5e1;
    font-size: 0.82rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}
 
.ss-card__name {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 4px 0 0;
}
 
.ss-card__role {
    color: #3b82f6;
    font-size: 0.8rem;
    font-weight: 500;
}
 
.ss-card__course {
    color: #94a3b8;
    font-size: 0.78rem;
    margin: 0;
}

/* Success story milestones */
.milestone-band {
    background: #f8fafc;
}

.milestone-hero {
    background: transparent;
    border-bottom: 0;
}

.milestone-hero .title {
    color: #0f172a !important;
}

.milestone-hero .desc {
    color: #64748b !important;
    max-width: 760px;
    margin: 14px auto 0;
}

.milestone-hero .ss-hero-badge {
    border-color: rgba(24, 195, 126, 0.45);
    color: #119c67;
    background: rgba(24, 195, 126, 0.06);
}

.milestone-stats-section {
    background: transparent;
    padding-top: 4px;
    padding-bottom: 72px;
}

.milestone-card {
    position: relative;
    padding: 40px 34px 34px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #dbe5f0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-4px);
    border-color: rgba(24, 195, 126, 0.28);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.milestone-card__topline {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 6px;
    background: #18c37e;
    border-radius: 6px 6px 0 0;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.milestone-card:hover .milestone-card__topline {
    width: 100%;
}

.milestone-card__icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: #eaf3ff;
    color: #3b82f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 26px;
}

.milestone-card__count {
    color: #1877f2;
    font-size: clamp(3.2rem, 4vw, 4.15rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0 0 18px;
}

.milestone-card__title {
    color: #0f172a;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 12px;
}

.milestone-card__desc {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 767.98px) {
    .faq-tabs-nav {
        width: 100%;
        padding: 10px;
        border-radius: 24px;
        gap: 10px;
    }

    .faq-tabs-nav .nav-link {
        min-width: unset;
        width: 100%;
        padding: 13px 16px;
        font-size: 0.95rem;
        justify-content: flex-start;
    }

    .faq-tabs-button {
        padding: 20px 18px !important;
        font-size: 0.98rem !important;
    }

    .faq-page-shell {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .faq-page-intro {
        padding-right: 0;
    }

    .faq-page-accordion-shell {
        padding-left: 0;
    }

    .faq-page-item .accordion-button {
        padding: 18px 16px;
        font-size: 0.95rem;
    }

    .faq-page-item .accordion-body {
        padding: 0 16px 18px 16px;
    }

    .ss-story-shell {
        padding: 38px 20px 28px;
        border-radius: 24px;
    }

    .ss-story-header .title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .milestone-card {
        padding: 30px 24px 28px;
        border-radius: 24px;
    }

    .milestone-card__icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

}

/* Partner companies page */
.pc-search-section {
    background: #f8fafc;
}

.pc-search-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(220px, 1fr));
    gap: 16px;
    padding: 26px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.pc-search-box {
    position: relative;
}

.pc-search-box i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #0d6efd;
    font-size: 0.95rem;
}

.pc-search-box input,
.pc-filter-select {
    width: 100%;
    min-height: 56px;
    border-radius: 16px;
    border: 1px solid #d7e2ef;
    background: #f8fafc;
    color: #0f172a;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.pc-search-box input {
    padding: 0 18px 0 48px;
}

.pc-filter-select {
    padding: 0 18px;
}

.pc-search-box input:focus,
.pc-filter-select:focus {
    border-color: rgba(13, 110, 253, 0.45);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.08);
    background: #ffffff;
}

.pc-company-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pc-company-card:hover {
    transform: translateY(-8px);
    border-color: rgba(13, 110, 253, 0.22);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
}

.pc-company-banner {
    min-height: 96px;
    padding: 24px 24px 0;
    background:
        radial-gradient(circle at top right, rgba(13, 110, 253, 0.18), transparent 38%),
        linear-gradient(135deg, #0b2239 0%, #12365d 100%);
}

.pc-company-logo {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.pc-company-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: calc(100% - 96px);
}

.pc-company-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.pc-company-title h3 {
    color: #0f172a;
    font-size: 1.15rem;
    margin: 0 0 8px;
}

.pc-company-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.88rem;
}

.pc-company-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff7dd;
    color: #b7791f;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pc-company-category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 14px;
    border-radius: 999px;
    background: #eaf3ff;
    color: #0d6efd;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pc-company-description {
    color: #64748b;
    font-size: 0.93rem;
    line-height: 1.7;
    margin: 0;
}

.pc-company-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.pc-company-stat {
    padding: 14px 10px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e7eef7;
    text-align: center;
}

.pc-company-stat .value {
    display: block;
    color: #0f172a;
    font-size: 0.98rem;
    font-weight: 800;
}

.pc-company-stat .label {
    display: block;
    color: #64748b;
    font-size: 0.76rem;
    margin-top: 4px;
}

.pc-company-positions h4 {
    color: #0f172a;
    font-size: 0.95rem;
    margin: 0 0 12px;
}

.pc-position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pc-position-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0066cc;
    font-size: 0.8rem;
    font-weight: 600;
}

.pc-company-card-lite {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.pc-company-card-topline-green {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #18c37e;
    border-radius: 26px 26px 0 0;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.pc-company-card-lite:hover .pc-company-card-topline-green {
    width: 100%;
}

.pc-company-card-lite .pc-company-body {
    height: 100%;
    padding: 28px;
    gap: 20px;
}

.pc-company-identity {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pc-company-logo-lite {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d6efd 0%, #3b82f6 100%);
    color: #ffffff;
    flex-shrink: 0;
    font-size: 1.35rem;
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.18);
}

.pc-company-card-lite .pc-company-head {
    align-items: flex-start;
}

.pc-company-card-lite .pc-company-title h3 {
    font-size: 1.22rem;
    margin-bottom: 10px;
}

.pc-company-card-lite .pc-company-location {
    color: #64748b;
}

.pc-company-card-lite .pc-company-rating {
    margin-left: auto;
}

.pc-company-card-lite .pc-company-category {
    background: #eef4ff;
    border: 1px solid #d9e7ff;
}

.pc-company-card-lite .pc-company-description {
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.75;
}

.pc-company-card-lite .pc-company-stats {
    gap: 12px;
}

.pc-company-card-lite .pc-company-stat {
    padding: 18px 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #f2f7fd 100%);
    border-color: #dbe7f3;
}

.pc-company-card-lite .pc-company-stat .value {
    font-size: 1.15rem;
}

.pc-company-card-lite .pc-company-stat .label {
    font-size: 0.8rem;
}

.pc-company-card-lite .pc-company-positions h4 {
    font-size: 1rem;
    margin-bottom: 14px;
}

.pc-company-card-lite .pc-position-tag {
    padding: 8px 14px;
    background: #f1f5f9;
    color: #475569;
}

.pc-company-card-lite .jp-partner-link {
    margin-top: auto;
}

.pc-benefits-section {
    background: #f8fafc;
}

.pc-benefit-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pc-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 110, 253, 0.18);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.09);
}

.pc-benefit-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.pc-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #eaf3ff;
    color: #0d6efd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.pc-benefit-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eefdf5;
    color: #16a34a;
    font-size: 0.75rem;
    font-weight: 700;
}

.pc-benefit-card h3 {
    color: #0f172a;
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.pc-benefit-card p {
    color: #64748b;
    margin: 0 0 18px;
    line-height: 1.7;
}

.pc-benefit-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e7eef7;
}

.pc-benefit-highlight span {
    color: #64748b;
    font-size: 0.82rem;
}

.pc-benefit-highlight strong {
    color: #0f172a;
    font-size: 0.88rem;
}

.pc-step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pc-step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 110, 253, 0.18);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.09);
}

.pc-step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.pc-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #eff6ff;
    color: #0d6efd;
    font-size: 0.9rem;
    font-weight: 800;
}

.pc-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #0d6efd;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.pc-step-card h3 {
    color: #0f172a;
    font-size: 1.08rem;
    margin: 0 0 10px;
}

.pc-step-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 18px;
}

.pc-step-footer {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 600;
}

.tt-analysis-tools-section {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.tt-analysis-tools-section .sub-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 12px 28px;
    border: 0;
    border-radius: 999px;
    background: rgba(160, 133, 255, 0.12);
    color: #0d6efd;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.tt-analysis-tools-section .title {
    color: #0f172a !important;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

.tt-analysis-tools-section .desc {
    max-width: 920px;
    margin: 0 auto;
    color: #64748b !important;
    font-size: 1.05rem;
    line-height: 1.7;
}

.tt-analysis-card {
    background: #ffffff;
    border: 1px solid #dbe5f0;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05), 0 12px 28px rgba(111, 95, 255, 0.06);
}

.tt-analysis-card:hover {
    border-color: rgba(13, 110, 253, 0.22);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08), 0 14px 34px rgba(111, 95, 255, 0.1);
}

.tt-analysis-tools-section .pc-step-card.tt-analysis-card {
    background: #ffffff !important;
    border: 1px solid #dbe5f0 !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05), 0 12px 28px rgba(111, 95, 255, 0.06) !important;
}

.tt-analysis-tools-section .pc-step-card.tt-analysis-card:hover {
    border-color: rgba(13, 110, 253, 0.22) !important;
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08), 0 14px 34px rgba(111, 95, 255, 0.1) !important;
}

.tt-analysis-card .pc-step-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(180deg, #2b7bff 0%, #1b6fe6 100%);
    color: #ffffff;
    border: 0;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.tt-analysis-tools-section .tt-analysis-card .pc-step-icon {
    background: linear-gradient(180deg, #2b7bff 0%, #1b6fe6 100%) !important;
    color: #ffffff !important;
    border: 0 !important;
}

.tt-analysis-card h3 {
    color: #0f172a;
    font-size: 1.08rem;
    line-height: 1.3;
}

.tt-analysis-tools-section .tt-analysis-card h3 {
    color: #0f172a !important;
}

.tt-analysis-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

.tt-analysis-tools-section .tt-analysis-card p {
    color: #64748b !important;
}

.tt-analysis-card .btn {
    min-height: 58px;
    width: 100%;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    background: #176ccf;
    box-shadow: 0 14px 28px rgba(125, 115, 255, 0.12);
    font-size: 1rem;
}

.tt-analysis-card .btn:hover,
.tt-analysis-card .btn:focus {
    background: #1563bf;
    box-shadow: 0 16px 30px rgba(125, 115, 255, 0.16);
}

.tt-analysis-tools-section .tt-analysis-card .btn {
    background: #176ccf !important;
    color: #ffffff !important;
}

.tt-analysis-tools-section .tt-analysis-card .btn:hover,
.tt-analysis-tools-section .tt-analysis-card .btn:focus {
    background: #1563bf !important;
}

.tt-tool-modal .modal-dialog {
    max-width: 1480px;
}

.tt-tool-modal__content {
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
    border: 1px solid #dbe5f0 !important;
}

.tt-tool-modal__header {
    padding: 28px 28px 24px;
    border-bottom: 1px solid #dbe5f0;
}

.tt-tool-modal__eyebrow,
.tt-tool-panel__eyebrow {
    color: #0d6efd;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tt-tool-modal__title {
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.tt-tool-modal__desc {
    max-width: 920px;
    color: #64748b;
    font-size: 1.02rem;
    line-height: 1.55;
}

.tt-tool-modal__close {
    width: 56px;
    height: 56px;
    margin-left: auto;
    border: 1px solid #d7e2ef;
    border-radius: 18px;
    background: #f8fbff;
    color: #0066cc;
    font-size: 1.35rem;
}

.tt-tool-modal__tabs-wrap {
    padding: 18px 28px;
    border-bottom: 1px solid #dbe5f0;
}

.tt-tool-modal__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.tt-tool-tab-btn {
    min-height: 48px;
    padding: 10px 18px;
    border: 1px solid #d6e4f5;
    border-radius: 999px;
    background: #eff6ff;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 700;
}

.tt-tool-tab-btn.active {
    background: #ffffff;
    border-color: #bfdbfe;
    color: #0f172a;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.08);
}

.tt-tool-modal__body {
    padding: 28px;
}

.tt-tool-panel {
    height: 100%;
    min-height: 560px;
    padding: 26px 24px;
}

.tt-tool-panel--inputs {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #dbe5f0;
    border-radius: 28px 0 0 28px;
}

.tt-tool-panel--output {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbe5f0;
    border-left: 0;
    border-radius: 0 28px 28px 0;
}

.tt-tool-label {
    display: block;
    margin-bottom: 10px;
    color: #475569;
    font-size: 0.92rem;
    font-weight: 700;
}

.tt-tool-input {
    min-height: 62px;
    border: 1px solid #d7e2ef;
    border-radius: 16px;
    background: #ffffff;
    color: #0f172a;
    font-size: 0.98rem;
}

.tt-tool-input:focus {
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(13, 110, 253, 0.5);
    box-shadow: 0 0 0 4px rgba(48, 153, 255, 0.12);
}

.tt-tool-input option {
    color: #0f172a;
    background: #ffffff;
}

.tt-tool-reset {
    margin-top: 22px;
    min-height: 44px;
    padding: 8px 20px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #ffffff;
    color: #0d6efd;
    font-size: 0.95rem;
    font-weight: 700;
}

.tt-tool-panel__label {
    color: #0f172a;
    font-size: 1.02rem;
    font-weight: 800;
}

.tt-tool-panel__value {
    margin-bottom: 22px;
    color: #0d6efd;
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.tt-tool-meter span,
.tt-tool-meter strong {
    color: #475569;
    font-size: 0.95rem;
}

.tt-tool-meter strong {
    font-weight: 800;
}

.tt-tool-meter__track {
    width: 100%;
    height: 14px;
    border-radius: 999px;
    background: #edf2f7;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(13, 110, 253, 0.08);
}

.tt-tool-meter__fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #1f8fff 0%, #10ca79 100%);
    transition: width 0.3s ease;
}

.tt-tool-note {
    padding: 16px 18px;
    border: 1px solid #dbe5f0;
    border-radius: 18px;
    background: #f8fbff;
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.55;
}

.tt-tool-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 60px;
    margin-bottom: 14px;
    padding: 12px 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #dbe5f0;
}

.tt-tool-stat span {
    color: #64748b;
    font-size: 0.96rem;
}

.tt-tool-stat strong {
    color: #0f172a;
    font-size: 0.98rem;
    font-weight: 800;
    text-align: right;
}

.tt-lite-modal .modal-dialog {
    max-width: 1320px;
}

/* Utility classes for trading tools modals */
.tt-lite-modal__eyebrow {
    color: #0d6efd;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tt-lite-modal__title {
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.tt-lite-modal__desc {
    max-width: 920px;
    color: #64748b;
    font-size: 1.02rem;
    line-height: 1.55;
}

.tt-lite-modal__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.tt-lite-modal__panel {
    min-height: 400px;
    padding: 26px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #dbe5f0;
}

.tt-lite-modal__panel--input {
    border-radius: 28px 0 0 28px;
}

.tt-lite-modal__panel--output {
    border-left: 0;
    border-radius: 0 28px 28px 0;
}

.tt-lite-modal__result-label {
    color: #0f172a;
    font-size: 1.02rem;
    font-weight: 800;
}

.tt-lite-modal__result-value {
    color: #0d6efd;
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 22px;
}

.tt-lite-modal__insight {
    padding: 16px 18px;
    border: 1px solid #dbe5f0;
    background: #f8fbff;
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.55;
}

.tt-modal-close {
    width: 56px;
    height: 56px;
    border: 1px solid #d7e2ef;
    border-radius: 18px;
    background: #f8fbff;
    color: #0066cc;
    font-size: 1.35rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-lite-modal__content {
    max-height: 92vh;
    background: #ffffff;
    border: 1px solid #e0e7ff !important;
    box-shadow: 0 40px 90px rgba(15, 23, 42, 0.18), 0 20px 50px rgba(13, 110, 253, 0.08) !important;
    border-radius: 24px !important;
}

.tt-lite-modal__header,
.tt-lite-modal__tabs {
    flex-shrink: 0;
}

.tt-lite-modal__header {
    padding: 32px 36px;
    border-color: #e2e8f0 !important;
}

.tt-lite-modal__tabs {
    padding: 20px 32px 0;
    border-bottom: 1px solid #f0f2f5;
}

.tt-lite-modal__body {
    padding: 36px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.tt-lite-modal__eyebrow {
    color: #0d6efd;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tt-lite-modal__title {
    color: #0f172a;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px !important;
}

.tt-lite-modal__desc {
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.65;
}

.tt-lite-modal__tab-btn {
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0f172a;
    padding: 10px 20px;
    white-space: nowrap;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tt-lite-modal__tab-btn:hover {
    border-color: #0d6efd;
    background: #f0f5ff;
    color: #0d6efd;
}

.tt-lite-modal__tab-btn.active {
    border-color: #0d6efd;
    background: #0d6efd;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.3);
}

.tt-lite-modal__panel {
    padding: 2.5rem;
    border-radius: 1.75rem;
}

.tt-lite-modal__panel--input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.tt-lite-modal__panel--input:hover {
    border-color: #dbeafe;
    box-shadow: 0 8px 16px rgba(13, 110, 253, 0.06);
}

.tt-lite-modal__panel--output {
    background: linear-gradient(135deg, #f0f5ff 0%, #fafbff 100%);
    border: 1px solid #dbeafe;
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.08);
}

.tt-lite-modal__reset {
    padding: 10px 26px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tt-lite-modal__result-label {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.tt-lite-modal__result-value {
    color: #0d6efd;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(13, 110, 253, 0.12);
}

.tt-lite-modal__insight {
    background: #ffffff;
    border: 1px solid #e0e7ff;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.65;
    padding: 16px 20px;
}

.tt-modal-close {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    color: #475569;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.tt-modal-close:hover,
.tt-modal-close:focus {
    background: #f0f5ff;
    border-color: #0d6efd;
    color: #0d6efd;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.15);
    transform: translateY(-2px);
}

.tt-tool-meter {
    margin-bottom: 20px;
}

.tt-tool-meter__track {
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: #e2e8f0;
    overflow: hidden;
}

.tt-tool-meter__fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #0d6efd 0%, #2de8b0 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

@media (max-width: 991.98px) {
    .pc-search-shell {
        grid-template-columns: 1fr;
    }

    .tt-tool-panel {
        min-height: unset;
    }

    .tt-tool-panel--inputs {
        border-radius: 28px 28px 0 0;
    }

    .tt-tool-panel--output {
        border-left: 1px solid #dbe5f0;
        border-top: 0;
        border-radius: 0 0 28px 28px;
    }

    .tt-lite-modal__content {
        max-height: 94vh;
    }

    .tt-lite-modal__body {
        padding: 24px;
    }

    .tt-lite-modal__panel {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .pc-company-stats {
        grid-template-columns: 1fr;
    }

    .pc-company-head,
    .pc-company-identity,
    .pc-benefit-top,
    .pc-benefit-highlight {
        flex-direction: column;
        align-items: flex-start;
    }

    .pc-company-card-lite .pc-company-rating {
        margin-left: 0;
    }

    .tt-analysis-tools-section .sub-title {
        min-height: 48px;
        padding: 10px 20px;
    }

    .tt-analysis-tools-section .title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .tt-tool-modal__header,
    .tt-tool-modal__tabs-wrap,
    .tt-tool-modal__body {
        padding: 20px 18px;
    }

    .tt-tool-modal__close {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .tt-tool-modal__tabs {
        gap: 10px;
    }

    .tt-tool-tab-btn {
        width: 100%;
        justify-content: center;
    }

    .tt-analysis-card .btn {
        width: 100%;
        justify-content: center;
    }

    .tt-tool-panel {
        padding: 20px 18px;
    }

    .tt-tool-panel__value {
        font-size: 2.8rem;
    }

    .tt-lite-modal__header,
    .tt-lite-modal__body,
    .tt-lite-modal__tabs {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .tt-lite-modal__title {
        font-size: 1.5rem;
    }

    .tt-modal-close {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
}
.cert-step-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cert-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.12) !important;
}
 
