/* ============================================================
   SQUAREOPS-INSPIRED CAREERS & JOB DETAIL STYLES
   ============================================================ */

:root {
    --sq-primary: #00d084;
    --sq-primary-hover: #00b371;
    --sq-primary-dark: #0a2540;
    --sq-primary-deep: #06192e;
    --sq-accent: #00e699;
    --sq-bg-light: #f8faf9;
    --sq-text-dark: #0e2038;
    --sq-text-muted: #5e6d82;
    --sq-border-color: #e2e8f0;
    --sq-card-shadow: 0 10px 30px rgba(10, 37, 64, 0.06);
    --sq-card-hover-shadow: 0 18px 45px rgba(0, 208, 132, 0.15);
}

/* Base resets & utilities */
.sq-careers-page {
    background-color: var(--sq-bg-light);
    color: var(--sq-text-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.sq-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   MAIN CAREERS PAGE HERO
   ========================================== */
.sq-careers-hero {
    position: relative;
    background: linear-gradient(135deg, var(--sq-primary-dark) 0%, #0d3859 60%, #08241b 100%);
    color: #ffffff;
    padding: 120px 0 80px;
    overflow: hidden;
}

.sq-careers-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(0, 208, 132, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(0, 163, 255, 0.12) 0%, transparent 40%);
    pointer-events: none;
}

.sq-hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sq-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(0, 208, 132, 0.15);
    border: 1px solid rgba(0, 208, 132, 0.3);
    color: var(--sq-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.sq-careers-hero h1 {
    font-size: clamp(40px, 4.5vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 24px;
}

.sq-careers-hero h1 span {
    color: var(--sq-primary);
    background: linear-gradient(135deg, #00d084 0%, #6cd9bd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sq-careers-hero p {
    font-size: 19px;
    line-height: 1.65;
    color: #cbd5e1;
    max-width: 680px;
    margin-bottom: 36px;
}

.sq-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sq-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--sq-primary);
    color: var(--sq-primary-dark);
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 208, 132, 0.3);
}

.sq-btn-primary:hover {
    background: #00e693;
    transform: translateY(-2px);
    color: var(--sq-primary-dark);
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.45);
}

.sq-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.sq-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.sq-hero-stat-card {
    background: rgba(10, 37, 64, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.sq-stat-head {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sq-primary);
    margin-bottom: 12px;
}

.sq-stat-number {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 8px;
}

.sq-stat-desc {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 24px;
}

.sq-stat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sq-stat-tags span {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 12px;
    color: #e2e8f0;
    font-weight: 500;
}

/* ==========================================
   SEARCH & FILTER BAR
   ========================================== */
.sq-search-wrapper {
    position: relative;
    margin-top: -36px;
    z-index: 10;
    margin-bottom: 60px;
}

.sq-search-bar {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr auto;
    gap: 16px;
    background: #ffffff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(10, 37, 64, 0.1);
    border: 1px solid #e2e8f0;
}

.sq-field-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0 16px;
    height: 52px;
    transition: border-color 0.2s;
}

.sq-field-group:focus-within {
    border-color: var(--sq-primary);
    box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.15);
}

.sq-field-group i {
    color: #64748b;
    font-size: 18px;
}

.sq-field-group input,
.sq-field-group select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: var(--sq-text-dark);
    font-weight: 500;
}

.sq-reset-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 52px;
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.sq-reset-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* Section Header */
.sq-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.sq-section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--sq-primary-dark);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.sq-section-header p {
    color: var(--sq-text-muted);
    font-size: 15px;
    margin: 0;
}

.sq-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #e6f9f2;
    color: #008a57;
    font-weight: 700;
    font-size: 14px;
    border-radius: 30px;
}

/* ==========================================
   SQUAREOPS JOB LISTINGS GRID & CARDS
   ========================================== */
.sq-jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.sq-job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-left: 5px solid var(--sq-primary);
    box-shadow: var(--sq-card-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sq-job-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sq-card-hover-shadow);
    border-color: #cbd5e1;
    border-left-color: var(--sq-primary);
}

.sq-job-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sq-cat-pill {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sq-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #059669;
    font-weight: 600;
}

.sq-live-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.sq-job-card h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 14px;
}

.sq-job-card h3 a {
    color: var(--sq-primary-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.sq-job-card h3 a:hover {
    color: var(--sq-primary);
}

.sq-job-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.sq-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.sq-meta-tag i {
    color: var(--sq-primary);
    font-size: 13px;
}

.sq-job-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--sq-text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.sq-job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.sq-skill-badge {
    padding: 4px 10px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.sq-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.sq-job-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--sq-primary);
    color: var(--sq-primary-dark);
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sq-job-apply-btn:hover {
    background: var(--sq-primary-dark);
    color: #ffffff;
    transform: translateX(3px);
}

/* Empty state */
.sq-empty-state {
    display: none;
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    grid-column: 1 / -1;
}

.sq-empty-state i {
    font-size: 48px;
    color: #94a3b8;
    margin-bottom: 16px;
}

/* ==========================================
   BENEFITS & CULTURE SECTION
   ========================================== */
.sq-benefits-section {
    background: #ffffff;
    padding: 90px 0;
    border-top: 1px solid #e2e8f0;
}

.sq-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sq-benefit-card {
    background: #f7f7f4;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.sq-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 37, 64, 0.08);
    border-color: #cbd5e1;
}

.sq-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #e6f9f2;
    color: #008a57;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.sq-benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--sq-primary-dark);
    margin-bottom: 12px;
}

.sq-benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--sq-text-muted);
}

/* Spontaneous application banner */
.sq-general-app-banner {
    background: linear-gradient(135deg, var(--sq-primary-dark) 0%, #0d3859 100%);
    border-radius: 20px;
    padding: 48px;
    color: #ffffff;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.sq-general-app-banner h3 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.sq-general-app-banner p {
    color: #cbd5e1;
    font-size: 16px;
    margin: 0;
}


/* ============================================================
   SINGLE JOB DETAIL PAGE (SQUAREOPS STYLE)
   ============================================================ */
.sq-job-detail-hero {
    background: linear-gradient(135deg, var(--sq-primary-dark) 0%, #0d3859 70%, #082b20 100%);
    color: #ffffff;
    padding: 100px 0 60px;
    position: relative;
}

.sq-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.sq-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.sq-breadcrumb a:hover {
    color: var(--sq-primary);
}

.sq-job-detail-hero h1 {
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 24px;
}

.sq-detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 15px;
}

.sq-detail-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
}

.sq-detail-meta-item i {
    color: var(--sq-primary);
}

/* Content layout (Left: Description, Right: Sticky Application Sidebar) */
.sq-detail-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    margin: -40px auto 80px;
    position: relative;
    z-index: 5;
}

.sq-job-content-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 44px;
    box-shadow: 0 10px 40px rgba(10, 37, 64, 0.08);
    border: 1px solid #e2e8f0;
}

.sq-job-content-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--sq-primary-dark);
    margin: 36px 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.sq-job-content-card h2:first-child {
    margin-top: 0;
}

.sq-job-content-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 20px;
}

.sq-job-content-card ul, 
.sq-job-content-card ol {
    margin: 16px 0 28px;
    padding-left: 24px;
}

.sq-job-content-card li {
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 12px;
}

.sq-job-content-card li::marker {
    color: var(--sq-primary-hover);
}

.sq-skills-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.sq-skills-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--sq-primary-dark);
    margin-bottom: 16px;
}

.sq-job-detail-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

/* Right Sticky Sidebar */
.sq-sidebar-wrapper {
    position: sticky;
    top: 24px;
    height: fit-content;
}

.sq-application-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 30px;
    box-shadow: 0 15px 45px rgba(10, 37, 64, 0.12);
    border: 1px solid #e2e8f0;
    border-top: 5px solid var(--sq-primary);
}

.sq-application-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--sq-primary-dark);
    margin-bottom: 8px;
}

.sq-application-card p.sub {
    font-size: 14px;
    color: var(--sq-text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Form Controls */
.sq-form-group {
    margin-bottom: 20px;
}

.sq-form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.sq-form-label.required::after {
    content: " *";
    color: #ef4444;
}

.sq-form-input,
.sq-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: var(--sq-text-dark);
    background: #f8fafc;
    transition: all 0.2s ease;
    font-family: inherit;
}

.sq-form-input:focus,
.sq-form-textarea:focus {
    outline: none;
    border-color: var(--sq-primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.18);
}

.sq-form-textarea {
    min-height: 100px;
    resize: vertical;
}

/* Drag and Drop File Upload */
.sq-file-dropzone {
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.sq-file-dropzone:hover {
    border-color: var(--sq-primary);
    background: #e6f9f2;
}

.sq-file-dropzone i {
    font-size: 32px;
    color: var(--sq-primary);
    margin-bottom: 8px;
    display: block;
}

.sq-file-dropzone span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.sq-file-dropzone small {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.sq-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.sq-file-selected-name {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
    word-break: break-all;
}

.sq-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--sq-primary);
    color: var(--sq-primary-dark);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
}

.sq-submit-btn:hover {
    background: #00e693;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.45);
}

/* Alert Boxes */
.sq-alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
}

.sq-alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.sq-alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ==========================================
   SECTION 1: PROFESSIONAL CERTIFICATIONS
   ========================================== */
.sq-cert-section {
    padding: 90px 0;
    background: #f7f7f4;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.sq-cert-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--sq-primary-dark);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.sq-cert-header p {
    font-size: 16px;
    color: var(--sq-text-muted);
    margin-bottom: 48px;
}

.sq-cert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.sq-cert-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 18px;
    width: calc(20% - 16px);
    min-width: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.sq-cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 208, 132, 0.14);
    border-color: #00d084;
}

.sq-cert-badge-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sq-cert-badge-wrapper img,
.sq-cert-badge-wrapper svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sq-cert-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--sq-primary-dark);
    line-height: 1.35;
}

/* ==========================================
   SECTION 2: TRUSTED BY 500+ COMPANIES
   ========================================== */
.sq-trusted-section {
    padding: 44px 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
    overflow: hidden;
}

.sq-trusted-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #64748b;
    margin-bottom: 28px;
}

.sq-marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.sq-marquee-track {
    display: flex;
    gap: 54px;
    align-items: center;
    white-space: nowrap;
    animation: sqMarquee 28s linear infinite;
}

.sq-marquee-container:hover .sq-marquee-track {
    animation-play-state: paused;
}

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

.sq-logo-item {
    font-size: 22px;
    font-weight: 800;
    color: #475569;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.85;
    transition: all 0.2s ease;
}

.sq-logo-item i {
    font-size: 20px;
    color: var(--sq-primary);
}

.sq-logo-item:hover {
    opacity: 1;
    color: var(--sq-primary-dark);
}

/* ==========================================
   SECTION 3: WHAT OUR CLIENTS SAY (TESTIMONIALS)
   ========================================== */
.sq-testimonials-section {
    background: #091c2e;
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.sq-testi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 208, 132, 0.15);
    border: 1px solid rgba(0, 208, 132, 0.3);
    color: var(--sq-primary);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.sq-testi-header {
    text-align: center;
    margin-bottom: 54px;
}

.sq-testi-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.sq-testi-wrapper {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}

.sq-testi-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sq-testi-card {
    background: #ffffff;
    color: var(--sq-text-dark);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.sq-testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 208, 132, 0.15);
}

.sq-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.sq-testi-quote {
    font-size: 16px;
    line-height: 1.65;
    color: #334155;
    font-style: italic;
    margin-bottom: 28px;
}

.sq-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sq-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d084 0%, #0d3859 100%);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 208, 132, 0.3);
}

.sq-author-info strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--sq-primary-dark);
}

.sq-author-info span {
    font-size: 13px;
    color: #64748b;
}

.sq-testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.sq-testi-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sq-testi-nav-btn:hover {
    background: var(--sq-primary);
    color: var(--sq-primary-dark);
    border-color: var(--sq-primary);
}

.sq-testi-dots {
    display: flex;
    gap: 8px;
}

.sq-testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.sq-testi-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--sq-primary);
}

/* ==========================================
   SECTION 4: FREQUENTLY ASKED QUESTIONS (FAQ)
   ========================================== */
.sq-faq-section {
    padding: 100px 0;
    background: #f7f7f4;
    border-top: 1px solid #e2e8f0;
}

.sq-faq-header {
    text-align: center;
    margin-bottom: 54px;
}

.sq-faq-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--sq-primary-dark);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.sq-faq-header p {
    font-size: 17px;
    color: var(--sq-text-muted);
}

.sq-faq-accordion {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sq-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.25s ease;
}

.sq-faq-item.active {
    border-color: var(--sq-primary);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.08);
}

.sq-faq-question {
    padding: 22px 28px;
    font-size: 18px;
    font-weight: 700;
    color: var(--sq-primary-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.sq-faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    display: grid;
    place-items: center;
    color: var(--sq-primary-dark);
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.sq-faq-item.active .sq-faq-icon {
    transform: rotate(180deg);
    background: var(--sq-primary);
    color: var(--sq-primary-dark);
    border-color: var(--sq-primary);
}

.sq-faq-answer {
    padding: 0 28px 24px;
    font-size: 15px;
    line-height: 1.75;
    color: #475569;
    display: none;
}

.sq-faq-item.active .sq-faq-answer {
    display: block;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .sq-cert-card {
        width: calc(33.333% - 16px);
    }
    .sq-testi-slider {
        grid-template-columns: 1fr;
    }

    .sq-hero-grid {
        grid-template-columns: 1fr;
    }

    .sq-hero-stat-card {
        display: none;
    }

    .sq-search-bar {
        grid-template-columns: 1fr 1fr;
    }

    .sq-jobs-grid {
        grid-template-columns: 1fr;
    }

    .sq-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sq-detail-layout {
        grid-template-columns: 1fr;
    }

    .sq-sidebar-wrapper {
        position: static;
    }

    .sq-general-app-banner {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }
}

@media (max-width: 640px) {
    .sq-search-bar {
        grid-template-columns: 1fr;
    }

    .sq-benefits-grid {
        grid-template-columns: 1fr;
    }

    .sq-job-content-card {
        padding: 24px 18px;
    }

    .sq-application-card {
        padding: 24px 18px;
    }
}
